From 27bf3ef865f6b20d574b9958205d0d85ab7cfa40 Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 14 Jun 2024 10:46:01 -0400 Subject: [PATCH 01/23] chore(docs): rebuild table from all-tokens json --- packages/module/build.js | 26 +- .../module/build/css/tokens-charts-dark.scss | 4 +- packages/module/build/css/tokens-charts.scss | 4 +- packages/module/build/css/tokens-dark.scss | 52 +- packages/module/build/css/tokens-default.scss | 97 +- packages/module/build/css/tokens-palette.scss | 4 +- packages/module/config.all.dark.json | 20 + packages/module/config.all.default.json | 19 + .../content/all-tokens-dark.json | 57238 ++++++++++++++++ .../content/all-tokens-default.json | 53197 ++++++++++++++ .../patternfly-docs/content/tokensTable.js | 147 +- .../module/patternfly-docs/scssAsJson.json | 2 +- 12 files changed, 110668 insertions(+), 142 deletions(-) create mode 100644 packages/module/config.all.dark.json create mode 100644 packages/module/config.all.default.json create mode 100644 packages/module/patternfly-docs/content/all-tokens-dark.json create mode 100644 packages/module/patternfly-docs/content/all-tokens-default.json diff --git a/packages/module/build.js b/packages/module/build.js index 3f8bfb4..083d90b 100644 --- a/packages/module/build.js +++ b/packages/module/build.js @@ -2,7 +2,7 @@ const StyleDictionary = require('style-dictionary'); const build = (selector) => { - const { fileHeader, formattedVariables } = StyleDictionary.formatHelpers; + const { fileHeader, formattedVariables, sortByName, sortByReference } = StyleDictionary.formatHelpers; console.log('Build started...'); console.log('\n============================'); @@ -21,6 +21,22 @@ const build = (selector) => { } }); + StyleDictionary.registerFormat({ + name: 'json/flat', + formatter: function (dictionary) { + let tokens = {}; + dictionary.allTokens.map((token) => { + // assign each token object to token.name + tokens[token.name] = token; + // attach references to build token chain + if (dictionary.usesReference(token.original.value)) { + token.references = dictionary.getReferences(token.original.value); + } + }); + return JSON.stringify(tokens, null, 2); + } + }); + // Register custom transforms StyleDictionary.registerTransform({ name: 'patternfly/global/px', @@ -38,9 +54,7 @@ const build = (selector) => { StyleDictionary.registerTransform({ name: 'patternfly/global/ms', type: 'value', - matcher: (token) => - token.attributes.type === 'duration' || - token.attributes.type === 'delay', + matcher: (token) => token.attributes.type === 'duration' || token.attributes.type === 'delay', transformer: (token) => `${token.value}ms` }); @@ -74,6 +88,8 @@ const build = (selector) => { const paletteExtendedSD = StyleDictionary.extend(__dirname + '/config.palette-colors.json'); const chartsExtendedSD = StyleDictionary.extend(__dirname + '/config.charts.json'); const chartsDarkExtendedSD = StyleDictionary.extend(__dirname + '/config.charts.dark.json'); + const allDefaultSD = StyleDictionary.extend(__dirname + '/config.all.default.json'); + const allDarkSD = StyleDictionary.extend(__dirname + '/config.all.dark.json'); // Build all defaultExtendedSD.buildAllPlatforms(); @@ -81,6 +97,8 @@ const build = (selector) => { paletteExtendedSD.buildAllPlatforms(); chartsExtendedSD.buildAllPlatforms(); chartsDarkExtendedSD.buildAllPlatforms(); + allDefaultSD.buildAllPlatforms(); + allDarkSD.buildAllPlatforms(); console.log('\n============================'); console.log('\nBuild completed.'); diff --git a/packages/module/build/css/tokens-charts-dark.scss b/packages/module/build/css/tokens-charts-dark.scss index 6dd6770..c902993 100644 --- a/packages/module/build/css/tokens-charts-dark.scss +++ b/packages/module/build/css/tokens-charts-dark.scss @@ -1,8 +1,8 @@ // Do not edit directly -// Generated on Wed, 29 May 2024 15:57:12 GMT +// Generated on Thu, 13 Jun 2024 20:36:47 GMT -@mixin pf-v6-tokens { +:root { --pf-t--chart--global--stroke-line-join: round; --pf-t--chart--global--layout--width: 450; --pf-t--chart--global--layout--height: 300; diff --git a/packages/module/build/css/tokens-charts.scss b/packages/module/build/css/tokens-charts.scss index e3aed79..cfc9406 100644 --- a/packages/module/build/css/tokens-charts.scss +++ b/packages/module/build/css/tokens-charts.scss @@ -1,8 +1,8 @@ // Do not edit directly -// Generated on Wed, 29 May 2024 15:57:12 GMT +// Generated on Thu, 13 Jun 2024 20:36:47 GMT -@mixin pf-v6-tokens { +:root { --pf-t--chart--global--stroke-line-join: round; --pf-t--chart--global--layout--width: 450; --pf-t--chart--global--layout--height: 300; diff --git a/packages/module/build/css/tokens-dark.scss b/packages/module/build/css/tokens-dark.scss index 768cb01..f1a6b30 100644 --- a/packages/module/build/css/tokens-dark.scss +++ b/packages/module/build/css/tokens-dark.scss @@ -1,8 +1,8 @@ // Do not edit directly -// Generated on Wed, 29 May 2024 15:57:12 GMT +// Generated on Thu, 13 Jun 2024 20:36:47 GMT -@mixin pf-v6-tokens { +:root { --pf-t--global--background--color--action--plain--default: rgba(0, 0, 0, 0.0000); --pf-t--global--dark--box-shadow--color--100: rgba(0, 0, 0, 0.5000); --pf-t--global--dark--background--color--600: rgba(199, 199, 199, 0.1500); @@ -109,15 +109,15 @@ --pf-t--global--border--color--nonstatus--blue--clicked: var(--pf-t--global--dark--color--nonstatus--blue--200); --pf-t--global--border--color--nonstatus--blue--hover: var(--pf-t--global--dark--color--nonstatus--blue--200); --pf-t--global--border--color--nonstatus--blue--default: var(--pf-t--global--dark--color--nonstatus--blue--100); - --pf-t--global--border--color--nonstatus--cyan--clicked: var(--pf-t--global--dark--color--nonstatus--cyan--200); - --pf-t--global--border--color--nonstatus--cyan--hover: var(--pf-t--global--dark--color--nonstatus--cyan--200); - --pf-t--global--border--color--nonstatus--cyan--default: var(--pf-t--global--dark--color--nonstatus--cyan--100); + --pf-t--global--border--color--nonstatus--teal--clicked: var(--pf-t--global--dark--color--nonstatus--cyan--200); + --pf-t--global--border--color--nonstatus--teal--hover: var(--pf-t--global--dark--color--nonstatus--cyan--200); + --pf-t--global--border--color--nonstatus--teal--default: var(--pf-t--global--dark--color--nonstatus--cyan--100); --pf-t--global--border--color--nonstatus--green--clicked: var(--pf-t--global--dark--color--nonstatus--green--200); --pf-t--global--border--color--nonstatus--green--hover: var(--pf-t--global--dark--color--nonstatus--green--200); --pf-t--global--border--color--nonstatus--green--default: var(--pf-t--global--dark--color--nonstatus--green--100); - --pf-t--global--border--color--nonstatus--gold--clicked: var(--pf-t--global--dark--color--nonstatus--gold--200); - --pf-t--global--border--color--nonstatus--gold--hover: var(--pf-t--global--dark--color--nonstatus--gold--200); - --pf-t--global--border--color--nonstatus--gold--default: var(--pf-t--global--dark--color--nonstatus--gold--100); + --pf-t--global--border--color--nonstatus--yellow--clicked: var(--pf-t--global--dark--color--nonstatus--gold--200); + --pf-t--global--border--color--nonstatus--yellow--hover: var(--pf-t--global--dark--color--nonstatus--gold--200); + --pf-t--global--border--color--nonstatus--yellow--default: var(--pf-t--global--dark--color--nonstatus--gold--100); --pf-t--global--border--color--nonstatus--orange--clicked: var(--pf-t--global--dark--color--nonstatus--orange--200); --pf-t--global--border--color--nonstatus--orange--hover: var(--pf-t--global--dark--color--nonstatus--orange--200); --pf-t--global--border--color--nonstatus--orange--default: var(--pf-t--global--dark--color--nonstatus--orange--100); @@ -155,15 +155,15 @@ --pf-t--global--color--nonstatus--blue--clicked: var(--pf-t--global--dark--color--nonstatus--blue--200); --pf-t--global--color--nonstatus--blue--hover: var(--pf-t--global--dark--color--nonstatus--blue--200); --pf-t--global--color--nonstatus--blue--default: var(--pf-t--global--dark--color--nonstatus--blue--100); - --pf-t--global--color--nonstatus--cyan--clicked: var(--pf-t--global--dark--color--nonstatus--cyan--200); - --pf-t--global--color--nonstatus--cyan--hover: var(--pf-t--global--dark--color--nonstatus--cyan--200); - --pf-t--global--color--nonstatus--cyan--default: var(--pf-t--global--dark--color--nonstatus--cyan--100); + --pf-t--global--color--nonstatus--teal--clicked: var(--pf-t--global--dark--color--nonstatus--cyan--200); + --pf-t--global--color--nonstatus--teal--hover: var(--pf-t--global--dark--color--nonstatus--cyan--200); + --pf-t--global--color--nonstatus--teal--default: var(--pf-t--global--dark--color--nonstatus--cyan--100); --pf-t--global--color--nonstatus--green--clicked: var(--pf-t--global--dark--color--nonstatus--green--200); --pf-t--global--color--nonstatus--green--hover: var(--pf-t--global--dark--color--nonstatus--green--200); --pf-t--global--color--nonstatus--green--default: var(--pf-t--global--dark--color--nonstatus--green--100); - --pf-t--global--color--nonstatus--gold--clicked: var(--pf-t--global--dark--color--nonstatus--gold--200); - --pf-t--global--color--nonstatus--gold--hover: var(--pf-t--global--dark--color--nonstatus--gold--200); - --pf-t--global--color--nonstatus--gold--default: var(--pf-t--global--dark--color--nonstatus--gold--100); + --pf-t--global--color--nonstatus--yellow--clicked: var(--pf-t--global--dark--color--nonstatus--gold--200); + --pf-t--global--color--nonstatus--yellow--hover: var(--pf-t--global--dark--color--nonstatus--gold--200); + --pf-t--global--color--nonstatus--yellow--default: var(--pf-t--global--dark--color--nonstatus--gold--100); --pf-t--global--color--nonstatus--orangered--clicked: var(--pf-t--global--dark--color--nonstatus--orangered--200); --pf-t--global--color--nonstatus--orangered--hover: var(--pf-t--global--dark--color--nonstatus--orangered--200); --pf-t--global--color--nonstatus--orangered--default: var(--pf-t--global--dark--color--nonstatus--orangered--100); @@ -219,15 +219,15 @@ --pf-t--global--text--color--nonstatus--on-blue--clicked: var(--pf-t--global--text--color--inverse); --pf-t--global--text--color--nonstatus--on-blue--hover: var(--pf-t--global--text--color--inverse); --pf-t--global--text--color--nonstatus--on-blue--default: var(--pf-t--global--text--color--inverse); - --pf-t--global--text--color--nonstatus--on-cyan--clicked: var(--pf-t--global--text--color--inverse); - --pf-t--global--text--color--nonstatus--on-cyan--hover: var(--pf-t--global--text--color--inverse); - --pf-t--global--text--color--nonstatus--on-cyan--default: var(--pf-t--global--text--color--inverse); + --pf-t--global--text--color--nonstatus--on-teal--clicked: var(--pf-t--global--text--color--inverse); + --pf-t--global--text--color--nonstatus--on-teal--hover: var(--pf-t--global--text--color--inverse); + --pf-t--global--text--color--nonstatus--on-teal--default: var(--pf-t--global--text--color--inverse); --pf-t--global--text--color--nonstatus--on-green--clicked: var(--pf-t--global--text--color--inverse); --pf-t--global--text--color--nonstatus--on-green--hover: var(--pf-t--global--text--color--inverse); --pf-t--global--text--color--nonstatus--on-green--default: var(--pf-t--global--text--color--inverse); - --pf-t--global--text--color--nonstatus--on-gold--clicked: var(--pf-t--global--text--color--inverse); - --pf-t--global--text--color--nonstatus--on-gold--hover: var(--pf-t--global--text--color--inverse); - --pf-t--global--text--color--nonstatus--on-gold--default: var(--pf-t--global--text--color--inverse); + --pf-t--global--text--color--nonstatus--on-yellow--clicked: var(--pf-t--global--text--color--inverse); + --pf-t--global--text--color--nonstatus--on-yellow--hover: var(--pf-t--global--text--color--inverse); + --pf-t--global--text--color--nonstatus--on-yellow--default: var(--pf-t--global--text--color--inverse); --pf-t--global--text--color--nonstatus--on-orange--clicked: var(--pf-t--global--text--color--inverse); --pf-t--global--text--color--nonstatus--on-orange--hover: var(--pf-t--global--text--color--inverse); --pf-t--global--text--color--nonstatus--on-orange--default: var(--pf-t--global--text--color--inverse); @@ -302,15 +302,15 @@ --pf-t--global--icon--color--nonstatus--on-blue--clicked: var(--pf-t--global--icon--color--inverse); --pf-t--global--icon--color--nonstatus--on-blue--hover: var(--pf-t--global--icon--color--inverse); --pf-t--global--icon--color--nonstatus--on-blue--default: var(--pf-t--global--icon--color--inverse); - --pf-t--global--icon--color--nonstatus--on-cyan--clicked: var(--pf-t--global--icon--color--inverse); - --pf-t--global--icon--color--nonstatus--on-cyan--hover: var(--pf-t--global--icon--color--inverse); - --pf-t--global--icon--color--nonstatus--on-cyan--default: var(--pf-t--global--icon--color--inverse); + --pf-t--global--icon--color--nonstatus--on-teal--clicked: var(--pf-t--global--icon--color--inverse); + --pf-t--global--icon--color--nonstatus--on-teal--hover: var(--pf-t--global--icon--color--inverse); + --pf-t--global--icon--color--nonstatus--on-teal--default: var(--pf-t--global--icon--color--inverse); --pf-t--global--icon--color--nonstatus--on-green--clicked: var(--pf-t--global--icon--color--inverse); --pf-t--global--icon--color--nonstatus--on-green--hover: var(--pf-t--global--icon--color--inverse); --pf-t--global--icon--color--nonstatus--on-green--default: var(--pf-t--global--icon--color--inverse); - --pf-t--global--icon--color--nonstatus--on-gold--clicked: var(--pf-t--global--icon--color--inverse); - --pf-t--global--icon--color--nonstatus--on-gold--hover: var(--pf-t--global--icon--color--inverse); - --pf-t--global--icon--color--nonstatus--on-gold--default: var(--pf-t--global--icon--color--inverse); + --pf-t--global--icon--color--nonstatus--on-yellow--clicked: var(--pf-t--global--icon--color--inverse); + --pf-t--global--icon--color--nonstatus--on-yellow--hover: var(--pf-t--global--icon--color--inverse); + --pf-t--global--icon--color--nonstatus--on-yellow--default: var(--pf-t--global--icon--color--inverse); --pf-t--global--icon--color--nonstatus--on-orange--clicked: var(--pf-t--global--icon--color--inverse); --pf-t--global--icon--color--nonstatus--on-orange--hover: var(--pf-t--global--icon--color--inverse); --pf-t--global--icon--color--nonstatus--on-orange--default: var(--pf-t--global--icon--color--inverse); diff --git a/packages/module/build/css/tokens-default.scss b/packages/module/build/css/tokens-default.scss index d7b75fc..045a12f 100644 --- a/packages/module/build/css/tokens-default.scss +++ b/packages/module/build/css/tokens-default.scss @@ -1,8 +1,8 @@ // Do not edit directly -// Generated on Wed, 29 May 2024 15:57:12 GMT +// Generated on Thu, 13 Jun 2024 20:36:47 GMT -@mixin pf-v6-tokens { +:root { --pf-t--global--timing-function--300: cubic-bezier(0, 0, .2, 1); --pf-t--global--timing-function--200: cubic-bezier(.4, 0, .2, 1); --pf-t--global--timing-function--100: cubic-bezier(.4, 0, .7, .2); @@ -63,6 +63,19 @@ --pf-t--global--font--size--300: 16px; --pf-t--global--font--size--200: 14px; --pf-t--global--font--size--100: 12px; + --pf-t--global--font--line-height--figma-only--800: 46.79999923706055; + --pf-t--global--font--line-height--figma-only--700: 36.400001525878906; + --pf-t--global--font--line-height--figma-only--600: 28.600000381469727; + --pf-t--global--font--line-height--figma-only--500: 26; + --pf-t--global--font--line-height--figma-only--400: 23.399999618530273; + --pf-t--global--font--line-height--figma-only--300: 24; + --pf-t--global--font--line-height--figma-only--200: 21; + --pf-t--global--font--line-height--figma-only--100: 18; + --pf-t--global--font--line-height--200: 1.5; + --pf-t--global--font--line-height--100: 1.2999999523162842; + --pf-t--global--font--family--300: Red Hat Mono VF; + --pf-t--global--font--family--200: Red Hat Display VF; + --pf-t--global--font--family--100: Red Hat Text VF; --pf-t--global--border--radius--500: 999px; --pf-t--global--border--radius--400: 24px; --pf-t--global--border--radius--300: 16px; @@ -233,6 +246,22 @@ --pf-t--global--font--size--md: var(--pf-t--global--font--size--300); --pf-t--global--font--size--sm: var(--pf-t--global--font--size--200); --pf-t--global--font--size--xs: var(--pf-t--global--font--size--100); + --pf-t--global--font--line-height--heading: var(--pf-t--global--font--line-height--200); + --pf-t--global--font--line-height--body: var(--pf-t--global--font--line-height--100); + --pf-t--global--font--line-height--figma-only--heading--2xl: var(--pf-t--global--font--line-height--figma-only--800); + --pf-t--global--font--line-height--figma-only--heading--xl: var(--pf-t--global--font--line-height--figma-only--700); + --pf-t--global--font--line-height--figma-only--heading--lg: var(--pf-t--global--font--line-height--figma-only--600); + --pf-t--global--font--line-height--figma-only--heading--md: var(--pf-t--global--font--line-height--figma-only--500); + --pf-t--global--font--line-height--figma-only--heading--sm: var(--pf-t--global--font--line-height--figma-only--400); + --pf-t--global--font--line-height--figma-only--heading--xs: var(--pf-t--global--font--line-height--figma-only--300); + --pf-t--global--font--line-height--figma-only--body--large: var(--pf-t--global--font--line-height--figma-only--300); + --pf-t--global--font--line-height--figma-only--body--default: var(--pf-t--global--font--line-height--figma-only--200); + --pf-t--global--font--line-height--figma-only--body--small: var(--pf-t--global--font--line-height--figma-only--100); + --pf-t--global--font--weight--heading: {global.font.weight.heading.100}; + --pf-t--global--font--weight--body: {global.font.weight.body.100}; + --pf-t--global--font--family--mono: var(--pf-t--global--font--family--300); + --pf-t--global--font--family--heading: var(--pf-t--global--font--family--200); + --pf-t--global--font--family--body: var(--pf-t--global--font--family--100); --pf-t--global--border--color--300: var(--pf-t--color--gray--50); --pf-t--global--border--color--200: var(--pf-t--color--gray--40); --pf-t--global--border--color--100: var(--pf-t--color--gray--30); @@ -270,6 +299,8 @@ --pf-t--global--icon--size--sm: var(--pf-t--global--icon--size--100); --pf-t--global--spacer--button--vertical--compact: var(--pf-t--global--spacer--100); --pf-t--global--spacer--button--horizontal--compact: var(--pf-t--global--spacer--300); + --pf-t--global--spacer--control--horizontal--compact: var(--pf-t--global--spacer--200); + --pf-t--global--spacer--control--vertical--compact: var(--pf-t--global--spacer--100); --pf-t--global--spacer--4xl: var(--pf-t--global--spacer--800); --pf-t--global--spacer--3xl: var(--pf-t--global--spacer--700); --pf-t--global--spacer--2xl: var(--pf-t--global--spacer--600); @@ -303,6 +334,12 @@ --pf-t--global--text--color--link--visited: var(--pf-t--global--text--color--link--300); --pf-t--global--text--color--link--hover: var(--pf-t--global--text--color--link--200); --pf-t--global--text--color--link--default: var(--pf-t--global--text--color--link--100); + --pf-t--global--color--nonstatus--teal--clicked: var(--pf-t--global--color--nonstatus--cyan--200); + --pf-t--global--color--nonstatus--teal--hover: var(--pf-t--global--color--nonstatus--cyan--200); + --pf-t--global--color--nonstatus--teal--default: var(--pf-t--global--color--nonstatus--cyan--100); + --pf-t--global--color--nonstatus--yellow--clicked: var(--pf-t--global--color--nonstatus--gold--200); + --pf-t--global--color--nonstatus--yellow--hover: var(--pf-t--global--color--nonstatus--gold--200); + --pf-t--global--color--nonstatus--yellow--default: var(--pf-t--global--color--nonstatus--gold--100); --pf-t--global--color--nonstatus--gray--clicked: var(--pf-t--global--color--nonstatus--gray--200); --pf-t--global--color--nonstatus--gray--hover: var(--pf-t--global--color--nonstatus--gray--200); --pf-t--global--color--nonstatus--gray--default: var(--pf-t--global--color--nonstatus--gray--100); @@ -312,15 +349,9 @@ --pf-t--global--color--nonstatus--blue--clicked: var(--pf-t--global--color--nonstatus--blue--200); --pf-t--global--color--nonstatus--blue--hover: var(--pf-t--global--color--nonstatus--blue--200); --pf-t--global--color--nonstatus--blue--default: var(--pf-t--global--color--nonstatus--blue--100); - --pf-t--global--color--nonstatus--cyan--clicked: var(--pf-t--global--color--nonstatus--cyan--200); - --pf-t--global--color--nonstatus--cyan--hover: var(--pf-t--global--color--nonstatus--cyan--200); - --pf-t--global--color--nonstatus--cyan--default: var(--pf-t--global--color--nonstatus--cyan--100); --pf-t--global--color--nonstatus--green--clicked: var(--pf-t--global--color--nonstatus--green--200); --pf-t--global--color--nonstatus--green--hover: var(--pf-t--global--color--nonstatus--green--200); --pf-t--global--color--nonstatus--green--default: var(--pf-t--global--color--nonstatus--green--100); - --pf-t--global--color--nonstatus--gold--clicked: var(--pf-t--global--color--nonstatus--gold--200); - --pf-t--global--color--nonstatus--gold--hover: var(--pf-t--global--color--nonstatus--gold--200); - --pf-t--global--color--nonstatus--gold--default: var(--pf-t--global--color--nonstatus--gold--100); --pf-t--global--color--nonstatus--orange--clicked: var(--pf-t--global--color--nonstatus--orange--200); --pf-t--global--color--nonstatus--orange--hover: var(--pf-t--global--color--nonstatus--orange--200); --pf-t--global--color--nonstatus--orange--default: var(--pf-t--global--color--nonstatus--orange--100); @@ -384,15 +415,15 @@ --pf-t--global--border--color--nonstatus--blue--clicked: var(--pf-t--global--color--nonstatus--blue--300); --pf-t--global--border--color--nonstatus--blue--hover: var(--pf-t--global--color--nonstatus--blue--300); --pf-t--global--border--color--nonstatus--blue--default: var(--pf-t--global--color--nonstatus--blue--200); - --pf-t--global--border--color--nonstatus--cyan--clicked: var(--pf-t--global--color--nonstatus--cyan--300); - --pf-t--global--border--color--nonstatus--cyan--hover: var(--pf-t--global--color--nonstatus--cyan--300); - --pf-t--global--border--color--nonstatus--cyan--default: var(--pf-t--global--color--nonstatus--cyan--200); + --pf-t--global--border--color--nonstatus--teal--clicked: var(--pf-t--global--color--nonstatus--cyan--300); + --pf-t--global--border--color--nonstatus--teal--hover: var(--pf-t--global--color--nonstatus--cyan--300); + --pf-t--global--border--color--nonstatus--teal--default: var(--pf-t--global--color--nonstatus--cyan--200); --pf-t--global--border--color--nonstatus--green--clicked: var(--pf-t--global--color--nonstatus--green--300); --pf-t--global--border--color--nonstatus--green--hover: var(--pf-t--global--color--nonstatus--green--300); --pf-t--global--border--color--nonstatus--green--default: var(--pf-t--global--color--nonstatus--green--200); - --pf-t--global--border--color--nonstatus--gold--clicked: var(--pf-t--global--color--nonstatus--gold--300); - --pf-t--global--border--color--nonstatus--gold--hover: var(--pf-t--global--color--nonstatus--gold--300); - --pf-t--global--border--color--nonstatus--gold--default: var(--pf-t--global--color--nonstatus--gold--200); + --pf-t--global--border--color--nonstatus--yellow--clicked: var(--pf-t--global--color--nonstatus--gold--300); + --pf-t--global--border--color--nonstatus--yellow--hover: var(--pf-t--global--color--nonstatus--gold--300); + --pf-t--global--border--color--nonstatus--yellow--default: var(--pf-t--global--color--nonstatus--gold--200); --pf-t--global--border--color--nonstatus--orange--clicked: var(--pf-t--global--color--nonstatus--orange--300); --pf-t--global--border--color--nonstatus--orange--hover: var(--pf-t--global--color--nonstatus--orange--300); --pf-t--global--border--color--nonstatus--orange--default: var(--pf-t--global--color--nonstatus--orange--200); @@ -432,6 +463,10 @@ --pf-t--global--icon--size--font--md: var(--pf-t--global--font--size--md); --pf-t--global--icon--size--font--sm: var(--pf-t--global--font--size--sm); --pf-t--global--icon--size--font--xs: var(--pf-t--global--font--size--xs); + --pf-t--global--spacer--action--horizontal--plain: var(--pf-t--global--spacer--sm); + --pf-t--global--spacer--action--horizontal--default: var(--pf-t--global--spacer--lg); + --pf-t--global--spacer--action--vertical--plain: var(--pf-t--global--spacer--sm); + --pf-t--global--spacer--action--vertical--default: var(--pf-t--global--spacer--sm); --pf-t--global--spacer--gap--action-to-action--plain: var(--pf-t--global--spacer--xs); --pf-t--global--spacer--gap--action-to-action--default: var(--pf-t--global--spacer--md); --pf-t--global--spacer--gap--group-to-group--vertical: var(--pf-t--global--spacer--lg); @@ -444,10 +479,6 @@ --pf-t--global--spacer--control--horizontal--default: var(--pf-t--global--spacer--md); --pf-t--global--spacer--control--vertical--plain: var(--pf-t--global--spacer--sm); --pf-t--global--spacer--control--vertical--default: var(--pf-t--global--spacer--sm); - --pf-t--global--spacer--action--horizontal--plain: var(--pf-t--global--spacer--sm); - --pf-t--global--spacer--action--horizontal--default: var(--pf-t--global--spacer--lg); - --pf-t--global--spacer--action--vertical--plain: var(--pf-t--global--spacer--sm); - --pf-t--global--spacer--action--vertical--default: var(--pf-t--global--spacer--sm); --pf-t--global--text--color--nonstatus--on-gray--clicked: var(--pf-t--global--text--color--regular); --pf-t--global--text--color--nonstatus--on-gray--hover: var(--pf-t--global--text--color--regular); --pf-t--global--text--color--nonstatus--on-gray--default: var(--pf-t--global--text--color--regular); @@ -457,15 +488,15 @@ --pf-t--global--text--color--nonstatus--on-blue--clicked: var(--pf-t--global--text--color--regular); --pf-t--global--text--color--nonstatus--on-blue--hover: var(--pf-t--global--text--color--regular); --pf-t--global--text--color--nonstatus--on-blue--default: var(--pf-t--global--text--color--regular); - --pf-t--global--text--color--nonstatus--on-cyan--clicked: var(--pf-t--global--text--color--regular); - --pf-t--global--text--color--nonstatus--on-cyan--hover: var(--pf-t--global--text--color--regular); - --pf-t--global--text--color--nonstatus--on-cyan--default: var(--pf-t--global--text--color--regular); + --pf-t--global--text--color--nonstatus--on-teal--clicked: var(--pf-t--global--text--color--regular); + --pf-t--global--text--color--nonstatus--on-teal--hover: var(--pf-t--global--text--color--regular); + --pf-t--global--text--color--nonstatus--on-teal--default: var(--pf-t--global--text--color--regular); --pf-t--global--text--color--nonstatus--on-green--clicked: var(--pf-t--global--text--color--regular); --pf-t--global--text--color--nonstatus--on-green--hover: var(--pf-t--global--text--color--regular); --pf-t--global--text--color--nonstatus--on-green--default: var(--pf-t--global--text--color--regular); - --pf-t--global--text--color--nonstatus--on-gold--clicked: var(--pf-t--global--text--color--regular); - --pf-t--global--text--color--nonstatus--on-gold--hover: var(--pf-t--global--text--color--regular); - --pf-t--global--text--color--nonstatus--on-gold--default: var(--pf-t--global--text--color--regular); + --pf-t--global--text--color--nonstatus--on-yellow--clicked: var(--pf-t--global--text--color--regular); + --pf-t--global--text--color--nonstatus--on-yellow--hover: var(--pf-t--global--text--color--regular); + --pf-t--global--text--color--nonstatus--on-yellow--default: var(--pf-t--global--text--color--regular); --pf-t--global--text--color--nonstatus--on-orange--clicked: var(--pf-t--global--text--color--regular); --pf-t--global--text--color--nonstatus--on-orange--hover: var(--pf-t--global--text--color--regular); --pf-t--global--text--color--nonstatus--on-orange--default: var(--pf-t--global--text--color--regular); @@ -548,15 +579,15 @@ --pf-t--global--icon--color--nonstatus--on-blue--clicked: var(--pf-t--global--icon--color--regular); --pf-t--global--icon--color--nonstatus--on-blue--hover: var(--pf-t--global--icon--color--regular); --pf-t--global--icon--color--nonstatus--on-blue--default: var(--pf-t--global--icon--color--regular); - --pf-t--global--icon--color--nonstatus--on-cyan--clicked: var(--pf-t--global--icon--color--regular); - --pf-t--global--icon--color--nonstatus--on-cyan--hover: var(--pf-t--global--icon--color--regular); - --pf-t--global--icon--color--nonstatus--on-cyan--default: var(--pf-t--global--icon--color--regular); + --pf-t--global--icon--color--nonstatus--on-teal--clicked: var(--pf-t--global--icon--color--regular); + --pf-t--global--icon--color--nonstatus--on-teal--hover: var(--pf-t--global--icon--color--regular); + --pf-t--global--icon--color--nonstatus--on-teal--default: var(--pf-t--global--icon--color--regular); --pf-t--global--icon--color--nonstatus--on-green--clicked: var(--pf-t--global--icon--color--regular); --pf-t--global--icon--color--nonstatus--on-green--hover: var(--pf-t--global--icon--color--regular); --pf-t--global--icon--color--nonstatus--on-green--default: var(--pf-t--global--icon--color--regular); - --pf-t--global--icon--color--nonstatus--on-gold--clicked: var(--pf-t--global--icon--color--regular); - --pf-t--global--icon--color--nonstatus--on-gold--hover: var(--pf-t--global--icon--color--regular); - --pf-t--global--icon--color--nonstatus--on-gold--default: var(--pf-t--global--icon--color--regular); + --pf-t--global--icon--color--nonstatus--on-yellow--clicked: var(--pf-t--global--icon--color--regular); + --pf-t--global--icon--color--nonstatus--on-yellow--hover: var(--pf-t--global--icon--color--regular); + --pf-t--global--icon--color--nonstatus--on-yellow--default: var(--pf-t--global--icon--color--regular); --pf-t--global--icon--color--nonstatus--on-orange--clicked: var(--pf-t--global--icon--color--regular); --pf-t--global--icon--color--nonstatus--on-orange--hover: var(--pf-t--global--icon--color--regular); --pf-t--global--icon--color--nonstatus--on-orange--default: var(--pf-t--global--icon--color--regular); @@ -608,14 +639,14 @@ --pf-t--global--icon--color--brand--clicked: var(--pf-t--global--color--brand--clicked); --pf-t--global--icon--color--brand--hover: var(--pf-t--global--color--brand--hover); --pf-t--global--icon--color--brand--default: var(--pf-t--global--color--brand--default); - --pf-t--global--icon--size--font--body--lg: var(--pf-t--global--font--size--body--lg); - --pf-t--global--icon--size--font--body--default: var(--pf-t--global--font--size--body--default); - --pf-t--global--icon--size--font--body--sm: var(--pf-t--global--font--size--body--sm); --pf-t--global--icon--size--font--heading--h6: var(--pf-t--global--font--size--heading--h6); --pf-t--global--icon--size--font--heading--h5: var(--pf-t--global--font--size--heading--h5); --pf-t--global--icon--size--font--heading--h4: var(--pf-t--global--font--size--heading--h4); --pf-t--global--icon--size--font--heading--h3: var(--pf-t--global--font--size--heading--h3); --pf-t--global--icon--size--font--heading--h2: var(--pf-t--global--font--size--heading--h2); --pf-t--global--icon--size--font--heading--h1: var(--pf-t--global--font--size--heading--h1); + --pf-t--global--icon--size--font--body--lg: var(--pf-t--global--font--size--body--lg); + --pf-t--global--icon--size--font--body--default: var(--pf-t--global--font--size--body--default); + --pf-t--global--icon--size--font--body--sm: var(--pf-t--global--font--size--body--sm); --pf-t--global--color--status--read--on-secondary: var(--pf-t--global--background--color--control--default); } diff --git a/packages/module/build/css/tokens-palette.scss b/packages/module/build/css/tokens-palette.scss index 38c55a1..a8fba5b 100644 --- a/packages/module/build/css/tokens-palette.scss +++ b/packages/module/build/css/tokens-palette.scss @@ -1,8 +1,8 @@ // Do not edit directly -// Generated on Wed, 29 May 2024 15:57:12 GMT +// Generated on Thu, 13 Jun 2024 20:36:47 GMT -@mixin pf-v6-tokens { +:root { --pf-t--color--red--70: #5f0000; --pf-t--color--red--60: #a60000; --pf-t--color--red--50: #ee0000; diff --git a/packages/module/config.all.dark.json b/packages/module/config.all.dark.json new file mode 100644 index 0000000..da3d70e --- /dev/null +++ b/packages/module/config.all.dark.json @@ -0,0 +1,20 @@ +{ + "include": ["tokens/default/*.json"], + "source": ["tokens/dark/*.json"], + "platforms": { + "json/dark": { + "transformGroup": "patternfly/css", + "buildPath": "patternfly-docs/content/", + "prefix": "pf-t", + "files": [ + { + "destination": "all-tokens-dark.json", + "format": "json/flat", + "options": { + "outputReferences": false + } + } + ] + } + } +} diff --git a/packages/module/config.all.default.json b/packages/module/config.all.default.json new file mode 100644 index 0000000..35ae9d3 --- /dev/null +++ b/packages/module/config.all.default.json @@ -0,0 +1,19 @@ +{ + "source": ["tokens/default/*.json"], + "platforms": { + "json/default": { + "transformGroup": "patternfly/css", + "buildPath": "patternfly-docs/content/", + "prefix": "pf-t", + "files": [ + { + "destination": "all-tokens-default.json", + "format": "json/flat", + "options": { + "outputReferences": false + } + } + ] + } + } +} diff --git a/packages/module/patternfly-docs/content/all-tokens-dark.json b/packages/module/patternfly-docs/content/all-tokens-dark.json new file mode 100644 index 0000000..96535eb --- /dev/null +++ b/packages/module/patternfly-docs/content/all-tokens-dark.json @@ -0,0 +1,57238 @@ +{ + "pf-t--global--spacer--100": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + }, + "pf-t--global--spacer--200": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + }, + "pf-t--global--spacer--300": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + }, + "pf-t--global--spacer--400": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + }, + "pf-t--global--spacer--500": { + "type": "number", + "value": "32px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + }, + "pf-t--global--spacer--600": { + "type": "number", + "value": "48px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + }, + "pf-t--global--spacer--700": { + "type": "number", + "value": "64px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 64 + }, + "name": "pf-t--global--spacer--700", + "attributes": { + "category": "global", + "type": "spacer", + "item": "700" + }, + "path": [ + "global", + "spacer", + "700" + ] + }, + "pf-t--global--spacer--800": { + "type": "number", + "value": "80px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 80 + }, + "name": "pf-t--global--spacer--800", + "attributes": { + "category": "global", + "type": "spacer", + "item": "800" + }, + "path": [ + "global", + "spacer", + "800" + ] + }, + "pf-t--global--spacer--xs": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + }, + "pf-t--global--spacer--sm": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + }, + "pf-t--global--spacer--md": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + }, + "pf-t--global--spacer--lg": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + }, + "pf-t--global--spacer--xl": { + "type": "number", + "value": "32px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.500}" + }, + "name": "pf-t--global--spacer--xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xl" + }, + "path": [ + "global", + "spacer", + "xl" + ], + "references": [ + { + "type": "number", + "value": "32px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + } + ] + }, + "pf-t--global--spacer--2xl": { + "type": "number", + "value": "48px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.600}" + }, + "name": "pf-t--global--spacer--2xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "2xl" + }, + "path": [ + "global", + "spacer", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "48px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + } + ] + }, + "pf-t--global--spacer--3xl": { + "type": "number", + "value": "64px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.700}" + }, + "name": "pf-t--global--spacer--3xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "3xl" + }, + "path": [ + "global", + "spacer", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "64px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 64 + }, + "name": "pf-t--global--spacer--700", + "attributes": { + "category": "global", + "type": "spacer", + "item": "700" + }, + "path": [ + "global", + "spacer", + "700" + ] + } + ] + }, + "pf-t--global--spacer--4xl": { + "type": "number", + "value": "80px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.800}" + }, + "name": "pf-t--global--spacer--4xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "4xl" + }, + "path": [ + "global", + "spacer", + "4xl" + ], + "references": [ + { + "type": "number", + "value": "80px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 80 + }, + "name": "pf-t--global--spacer--800", + "attributes": { + "category": "global", + "type": "spacer", + "item": "800" + }, + "path": [ + "global", + "spacer", + "800" + ] + } + ] + }, + "pf-t--global--spacer--control--vertical--default": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--vertical--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "default" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "default" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--vertical--compact": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--control--vertical--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "compact" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + }, + "pf-t--global--spacer--control--vertical--plain": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--vertical--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "plain" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--horizontal--default": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--control--horizontal--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "default" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "default" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--horizontal--compact": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--control--horizontal--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "compact" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + }, + "pf-t--global--spacer--control--horizontal--plain": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--horizontal--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "plain" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--text-to-element--default": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--gap--text-to-element--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "text-to-element", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "text-to-element", + "default" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--control-to-control--default": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--gap--control-to-control--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "control-to-control", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "control-to-control", + "default" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--group--vertical": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--gap--group--vertical", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group", + "state": "vertical" + }, + "path": [ + "global", + "spacer", + "gap", + "group", + "vertical" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--group--horizontal": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--gap--group--horizontal", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group", + "state": "horizontal" + }, + "path": [ + "global", + "spacer", + "gap", + "group", + "horizontal" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--group-to-group--horizontal": { + "type": "number", + "value": "48px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.2xl}" + }, + "name": "pf-t--global--spacer--gap--group-to-group--horizontal", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group-to-group", + "state": "horizontal" + }, + "path": [ + "global", + "spacer", + "gap", + "group-to-group", + "horizontal" + ], + "references": [ + { + "type": "number", + "value": "48px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.600}" + }, + "name": "pf-t--global--spacer--2xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "2xl" + }, + "path": [ + "global", + "spacer", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "48px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--group-to-group--vertical": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--gap--group-to-group--vertical", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group-to-group", + "state": "vertical" + }, + "path": [ + "global", + "spacer", + "gap", + "group-to-group", + "vertical" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--action-to-action--default": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--gap--action-to-action--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "action-to-action", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "action-to-action", + "default" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--action-to-action--plain": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--gap--action-to-action--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "action-to-action", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "gap", + "action-to-action", + "plain" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--vertical--default": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--action--vertical--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "vertical", + "state": "default" + }, + "path": [ + "global", + "spacer", + "action", + "vertical", + "default" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--vertical--plain": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--action--vertical--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "vertical", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "action", + "vertical", + "plain" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--horizontal--default": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--action--horizontal--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "default" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "default" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--horizontal--plain": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--action--horizontal--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "plain" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--button--horizontal--compact": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--button--horizontal--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "button", + "subitem": "horizontal", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "button", + "horizontal", + "compact" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + }, + "pf-t--global--spacer--button--vertical--compact": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--button--vertical--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "button", + "subitem": "vertical", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "button", + "vertical", + "compact" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + }, + "pf-t--global--icon--size--100": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--icon--size--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "size", + "100" + ] + }, + "pf-t--global--icon--size--200": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--icon--size--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "size", + "200" + ] + }, + "pf-t--global--icon--size--250": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--icon--size--250", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "250" + }, + "path": [ + "global", + "icon", + "size", + "250" + ] + }, + "pf-t--global--icon--size--300": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--icon--size--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "size", + "300" + ] + }, + "pf-t--global--icon--size--400": { + "type": "number", + "value": "56px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 56 + }, + "name": "pf-t--global--icon--size--400", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "icon", + "size", + "400" + ] + }, + "pf-t--global--icon--size--500": { + "type": "number", + "value": "96px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 96 + }, + "name": "pf-t--global--icon--size--500", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "icon", + "size", + "500" + ] + }, + "pf-t--global--icon--size--sm": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.icon.size.100}" + }, + "name": "pf-t--global--icon--size--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "icon", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--icon--size--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "size", + "100" + ] + } + ] + }, + "pf-t--global--icon--size--md": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.icon.size.200}" + }, + "name": "pf-t--global--icon--size--md", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "icon", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--icon--size--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "size", + "200" + ] + } + ] + }, + "pf-t--global--icon--size--lg": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.icon.size.250}" + }, + "name": "pf-t--global--icon--size--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "icon", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--icon--size--250", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "250" + }, + "path": [ + "global", + "icon", + "size", + "250" + ] + } + ] + }, + "pf-t--global--icon--size--xl": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.icon.size.300}" + }, + "name": "pf-t--global--icon--size--xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "icon", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--icon--size--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "size", + "300" + ] + } + ] + }, + "pf-t--global--icon--size--2xl": { + "type": "number", + "value": "56px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.icon.size.400}" + }, + "name": "pf-t--global--icon--size--2xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "icon", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "56px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 56 + }, + "name": "pf-t--global--icon--size--400", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "icon", + "size", + "400" + ] + } + ] + }, + "pf-t--global--icon--size--3xl": { + "type": "number", + "value": "96px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.icon.size.500}" + }, + "name": "pf-t--global--icon--size--3xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "icon", + "size", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "96px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 96 + }, + "name": "pf-t--global--icon--size--500", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "icon", + "size", + "500" + ] + } + ] + }, + "pf-t--global--icon--size--font--body--sm": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.body.sm}" + }, + "name": "pf-t--global--icon--size--font--body--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "sm" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--font--size--body--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "sm" + }, + "path": [ + "global", + "font", + "size", + "body", + "sm" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--body--default": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.body.default}" + }, + "name": "pf-t--global--icon--size--font--body--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "default" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--font--size--body--default", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "default" + }, + "path": [ + "global", + "font", + "size", + "body", + "default" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--body--lg": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.body.lg}" + }, + "name": "pf-t--global--icon--size--font--body--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "lg" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--body--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "lg" + }, + "path": [ + "global", + "font", + "size", + "body", + "lg" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h1": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.heading.h1}" + }, + "name": "pf-t--global--icon--size--font--heading--h1", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h1" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--font--size--heading--h1", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h1" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h1" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h2": { + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.heading.h2}" + }, + "name": "pf-t--global--icon--size--font--heading--h2", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h2" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--font--size--heading--h2", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h2" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h2" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h3": { + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.heading.h3}" + }, + "name": "pf-t--global--icon--size--font--heading--h3", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h3" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--font--size--heading--h3", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h3" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h3" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h4": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.heading.h4}" + }, + "name": "pf-t--global--icon--size--font--heading--h4", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h4" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h4", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h4" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h4" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h5": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.heading.h5}" + }, + "name": "pf-t--global--icon--size--font--heading--h5", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h5" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h5", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h5" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h5" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h6": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.heading.h6}" + }, + "name": "pf-t--global--icon--size--font--heading--h6", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h6" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h6", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h6" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h6" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--xs": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--icon--size--font--xs", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "xs" + }, + "path": [ + "global", + "icon", + "size", + "font", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--sm": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--icon--size--font--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "sm" + }, + "path": [ + "global", + "icon", + "size", + "font", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--md": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--icon--size--font--md", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "md" + }, + "path": [ + "global", + "icon", + "size", + "font", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--lg": { + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--icon--size--font--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "lg" + }, + "path": [ + "global", + "icon", + "size", + "font", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--xl": { + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--icon--size--font--xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--2xl": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--icon--size--font--2xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "2xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--3xl": { + "type": "number", + "value": "28px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.3xl}" + }, + "name": "pf-t--global--icon--size--font--3xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "3xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "28px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.700}" + }, + "name": "pf-t--global--font--size--3xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "font", + "size", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "28px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--4xl": { + "type": "number", + "value": "36px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.4xl}" + }, + "name": "pf-t--global--icon--size--font--4xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "4xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "4xl" + ], + "references": [ + { + "type": "number", + "value": "36px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.800}" + }, + "name": "pf-t--global--font--size--4xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "4xl" + }, + "path": [ + "global", + "font", + "size", + "4xl" + ], + "references": [ + { + "type": "number", + "value": "36px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--100": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + }, + "pf-t--global--icon--color--200": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--icon--color--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--global--icon--color--300": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--global--icon--color--brand--default": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--icon--color--brand--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--brand--hover": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.300}" + }, + "name": "pf-t--global--icon--color--brand--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--brand--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--brand--clicked": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.300}" + }, + "name": "pf-t--global--icon--color--brand--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--brand--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--on-brand--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--on-brand--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--on-brand--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--favorite--default": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.favorite.default}" + }, + "name": "pf-t--global--icon--color--favorite--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.favorite.100}" + }, + "name": "pf-t--global--color--favorite--default", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "default" + }, + "path": [ + "global", + "color", + "favorite", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--favorite--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--favorite--hover": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.favorite.hover}" + }, + "name": "pf-t--global--icon--color--favorite--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "favorite", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--favorite--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--favorite--clicked": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.favorite.clicked}" + }, + "name": "pf-t--global--icon--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "favorite", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--favorite--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--success--default": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--icon--color--status--success--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--dark--color--status--success--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--success--hover": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--icon--color--status--success--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--success--clicked": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--icon--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-success--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-success--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-success--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--warning--default": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.default}" + }, + "name": "pf-t--global--icon--color--status--warning--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.warning.100}" + }, + "name": "pf-t--global--color--status--warning--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--status--warning--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--warning--hover": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.hover}" + }, + "name": "pf-t--global--icon--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--warning--clicked": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.clicked}" + }, + "name": "pf-t--global--icon--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-warning--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-warning--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-warning--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-warning--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-warning--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-warning--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--danger--default": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--icon--color--status--danger--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--status--danger--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--danger--hover": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--icon--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--danger--clicked": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--icon--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-danger--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-danger--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-danger--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--info--default": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--icon--color--status--info--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--status--info--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--info--hover": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--icon--color--status--info--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--info--clicked": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--icon--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-info--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-info--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-info--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--custom--default": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--icon--color--status--custom--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--dark--color--status--custom--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--custom--hover": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--icon--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--custom--clicked": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--icon--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-custom--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-custom--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-custom--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-default--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-default--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-default--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-attention--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-attention--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-attention--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--regular": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--icon--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--subtle": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.200}" + }, + "name": "pf-t--global--icon--color--subtle", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "icon", + "color", + "subtle" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--icon--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--inverse": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--disabled": { + "description": "for use without disabled background color", + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "for use without disabled background color", + "type": "color", + "value": "{global.dark.color.disabled.200}" + }, + "name": "pf-t--global--icon--color--disabled", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "icon", + "color", + "disabled" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--dark--color--disabled--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--on-disabled": { + "description": "pair with disabled background color", + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "pair with disabled background color", + "type": "color", + "value": "{global.dark.color.disabled.300}" + }, + "name": "pf-t--global--icon--color--on-disabled", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-disabled" + }, + "path": [ + "global", + "icon", + "color", + "on-disabled" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--color--disabled--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--undefined--default": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.severity.undefined.100}" + }, + "name": "pf-t--global--icon--color--severity--undefined--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "undefined" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "undefined", + "default" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--color--severity--undefined--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "undefined" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "undefined", + "100" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--none--default": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.severity.none.100}" + }, + "name": "pf-t--global--icon--color--severity--none--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "none" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "none", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--severity--none--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "none" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "none", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--minor--default": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.severity.minor.100}" + }, + "name": "pf-t--global--icon--color--severity--minor--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "minor" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "minor", + "default" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--color--severity--minor--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "minor" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "minor", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--moderate--default": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.severity.moderate.100}" + }, + "name": "pf-t--global--icon--color--severity--moderate--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "moderate" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "moderate", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--severity--moderate--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "moderate" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "moderate", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--important--default": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.severity.important.100}" + }, + "name": "pf-t--global--icon--color--severity--important--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "important" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "important", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--global--dark--color--severity--important--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "important" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "important", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--critical--default": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.severity.critical.100}" + }, + "name": "pf-t--global--icon--color--severity--critical--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "critical" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "critical", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--severity--critical--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "critical" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "critical", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-red--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-red--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-red--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orangered--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orangered--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orangered--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orange--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orange--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orange--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-yellow--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-yellow--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-yellow--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-green--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-green--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-green--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-teal--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-teal--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-teal--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-blue--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-blue--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-blue--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-purple--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-purple--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-purple--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-gray--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-gray--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-gray--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--width--100": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + }, + "pf-t--global--border--width--200": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + }, + "pf-t--global--border--width--300": { + "type": "number", + "value": "3px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 3 + }, + "name": "pf-t--global--border--width--300", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "300" + }, + "path": [ + "global", + "border", + "width", + "300" + ] + }, + "pf-t--global--border--width--regular": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--regular", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "regular" + }, + "path": [ + "global", + "border", + "width", + "regular" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--divider--default": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "divider", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--divider--hover": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "divider", + "hover" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--divider--clicked": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "divider", + "clicked" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--strong": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--strong", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "strong" + }, + "path": [ + "global", + "border", + "width", + "strong" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--extra-strong": { + "type": "number", + "value": "3px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.300}" + }, + "name": "pf-t--global--border--width--extra-strong", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "extra-strong" + }, + "path": [ + "global", + "border", + "width", + "extra-strong" + ], + "references": [ + { + "type": "number", + "value": "3px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 3 + }, + "name": "pf-t--global--border--width--300", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "300" + }, + "path": [ + "global", + "border", + "width", + "300" + ] + } + ] + }, + "pf-t--global--border--width--box--default": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "box", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--box--hover": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "box", + "hover" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--box--clicked": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--box--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "box", + "clicked" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--box--status--default": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--box--status--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "status" + }, + "path": [ + "global", + "border", + "width", + "box", + "status", + "default" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--box--status--read": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--status--read", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "status" + }, + "path": [ + "global", + "border", + "width", + "box", + "status", + "read" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--button--default": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--button--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "button", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "button", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--button--hover": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--button--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "button", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "button", + "hover" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--button--clicked": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--button--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "button", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "button", + "clicked" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--control--default": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--control--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "control", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--control--hover": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--control--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "control", + "hover" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--control--clicked": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--control--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "control", + "clicked" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--radius--0": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--border--radius--0", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "0" + }, + "path": [ + "global", + "border", + "radius", + "0" + ] + }, + "pf-t--global--border--radius--100": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--border--radius--100", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "100" + }, + "path": [ + "global", + "border", + "radius", + "100" + ] + }, + "pf-t--global--border--radius--200": { + "type": "number", + "value": "6px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 6 + }, + "name": "pf-t--global--border--radius--200", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "200" + }, + "path": [ + "global", + "border", + "radius", + "200" + ] + }, + "pf-t--global--border--radius--300": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--border--radius--300", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "300" + }, + "path": [ + "global", + "border", + "radius", + "300" + ] + }, + "pf-t--global--border--radius--400": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--border--radius--400", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "400" + }, + "path": [ + "global", + "border", + "radius", + "400" + ] + }, + "pf-t--global--border--radius--500": { + "type": "number", + "value": "999px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 999 + }, + "name": "pf-t--global--border--radius--500", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "500" + }, + "path": [ + "global", + "border", + "radius", + "500" + ] + }, + "pf-t--global--border--radius--sharp": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.radius.0}" + }, + "name": "pf-t--global--border--radius--sharp", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "sharp" + }, + "path": [ + "global", + "border", + "radius", + "sharp" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--border--radius--0", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "0" + }, + "path": [ + "global", + "border", + "radius", + "0" + ] + } + ] + }, + "pf-t--global--border--radius--tiny": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.radius.100}" + }, + "name": "pf-t--global--border--radius--tiny", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "tiny" + }, + "path": [ + "global", + "border", + "radius", + "tiny" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--border--radius--100", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "100" + }, + "path": [ + "global", + "border", + "radius", + "100" + ] + } + ] + }, + "pf-t--global--border--radius--small": { + "type": "number", + "value": "6px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.radius.200}" + }, + "name": "pf-t--global--border--radius--small", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "small" + }, + "path": [ + "global", + "border", + "radius", + "small" + ], + "references": [ + { + "type": "number", + "value": "6px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 6 + }, + "name": "pf-t--global--border--radius--200", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "200" + }, + "path": [ + "global", + "border", + "radius", + "200" + ] + } + ] + }, + "pf-t--global--border--radius--medium": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.radius.300}" + }, + "name": "pf-t--global--border--radius--medium", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "medium" + }, + "path": [ + "global", + "border", + "radius", + "medium" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--border--radius--300", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "300" + }, + "path": [ + "global", + "border", + "radius", + "300" + ] + } + ] + }, + "pf-t--global--border--radius--large": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.radius.400}" + }, + "name": "pf-t--global--border--radius--large", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "large" + }, + "path": [ + "global", + "border", + "radius", + "large" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--border--radius--400", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "400" + }, + "path": [ + "global", + "border", + "radius", + "400" + ] + } + ] + }, + "pf-t--global--border--radius--pill": { + "type": "number", + "value": "999px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.border.radius.500}" + }, + "name": "pf-t--global--border--radius--pill", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "pill" + }, + "path": [ + "global", + "border", + "radius", + "pill" + ], + "references": [ + { + "type": "number", + "value": "999px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 999 + }, + "name": "pf-t--global--border--radius--500", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "500" + }, + "path": [ + "global", + "border", + "radius", + "500" + ] + } + ] + }, + "pf-t--global--border--color--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--border--color--100", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "border", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--border--color--200": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--border--color--200", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "border", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--border--color--300": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--border--color--300", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "border", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--global--border--color--brand--default": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--border--color--brand--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "border", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.100}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--brand--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--brand--hover": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--border--color--brand--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "border", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--brand--clicked": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--border--color--brand--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "border", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--success--default": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--border--color--status--success--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--dark--color--status--success--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--success--hover": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--border--color--status--success--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--success--clicked": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--border--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--warning--default": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.default}" + }, + "name": "pf-t--global--border--color--status--warning--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.warning.100}" + }, + "name": "pf-t--global--color--status--warning--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--status--warning--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--warning--hover": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.hover}" + }, + "name": "pf-t--global--border--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--warning--clicked": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.clicked}" + }, + "name": "pf-t--global--border--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--danger--default": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--border--color--status--danger--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--status--danger--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--danger--hover": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--border--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--danger--clicked": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--border--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--info--default": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--border--color--status--info--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--status--info--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--info--hover": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--border--color--status--info--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--info--clicked": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--border--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--custom--default": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--border--color--status--custom--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--dark--color--status--custom--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--custom--hover": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--border--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--custom--clicked": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--border--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--default": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.border.color.200}" + }, + "name": "pf-t--global--border--color--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "default" + }, + "path": [ + "global", + "border", + "color", + "default" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--border--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "border", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "border", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--hover": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.100}" + }, + "name": "pf-t--global--border--color--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "hover" + }, + "path": [ + "global", + "border", + "color", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--brand--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--clicked": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--border--color--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "clicked" + }, + "path": [ + "global", + "border", + "color", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--disabled": { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.disabled.200}" + }, + "name": "pf-t--global--border--color--disabled", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "border", + "color", + "disabled" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--dark--color--disabled--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--alt": { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.background.color.primary.default}" + }, + "name": "pf-t--global--border--color--alt", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "alt" + }, + "path": [ + "global", + "border", + "color", + "alt" + ], + "references": [ + { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--on-secondary": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.border.color.200}" + }, + "name": "pf-t--global--border--color--on-secondary", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "on-secondary" + }, + "path": [ + "global", + "border", + "color", + "on-secondary" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--border--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "border", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "border", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--red--default": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.red.100}" + }, + "name": "pf-t--global--border--color--nonstatus--red--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--red--hover": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.red.200}" + }, + "name": "pf-t--global--border--color--nonstatus--red--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--red--clicked": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.red.200}" + }, + "name": "pf-t--global--border--color--nonstatus--red--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orangered--default": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.orangered.100}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orangered--hover": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orangered--clicked": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orange--default": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.orange.100}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orange--hover": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orange--clicked": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--yellow--default": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.gold.100}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--gold--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gold" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gold", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--yellow--hover": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.gold.200}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gold--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gold" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gold", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--yellow--clicked": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.gold.200}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gold--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gold" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gold", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--green--default": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.green.100}" + }, + "name": "pf-t--global--border--color--nonstatus--green--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "default" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--green--hover": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.green.200}" + }, + "name": "pf-t--global--border--color--nonstatus--green--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--green--clicked": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.green.200}" + }, + "name": "pf-t--global--border--color--nonstatus--green--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--teal--default": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.cyan.100}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "default" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--cyan--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "cyan" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "cyan", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--teal--hover": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.cyan.200}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--cyan--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "cyan" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "cyan", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--teal--clicked": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.cyan.200}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--cyan--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "cyan" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "cyan", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--blue--default": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.blue.100}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--blue--hover": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--blue--clicked": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--purple--default": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.purple.100}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--purple--hover": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--purple--clicked": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--gray--default": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.gray.100}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "default" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--gray--hover": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--gray--clicked": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--font--family--100": { + "type": "string", + "value": "Red Hat Text VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Text VF" + }, + "name": "pf-t--global--font--family--100", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "100" + }, + "path": [ + "global", + "font", + "family", + "100" + ] + }, + "pf-t--global--font--family--200": { + "type": "string", + "value": "Red Hat Display VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Display VF" + }, + "name": "pf-t--global--font--family--200", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "200" + }, + "path": [ + "global", + "font", + "family", + "200" + ] + }, + "pf-t--global--font--family--300": { + "type": "string", + "value": "Red Hat Mono VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Mono VF" + }, + "name": "pf-t--global--font--family--300", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "300" + }, + "path": [ + "global", + "font", + "family", + "300" + ] + }, + "pf-t--global--font--family--body": { + "type": "number", + "value": "Red Hat Text VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.family.100}" + }, + "name": "pf-t--global--font--family--body", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "body" + }, + "path": [ + "global", + "font", + "family", + "body" + ], + "references": [ + { + "type": "string", + "value": "Red Hat Text VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Text VF" + }, + "name": "pf-t--global--font--family--100", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "100" + }, + "path": [ + "global", + "font", + "family", + "100" + ] + } + ] + }, + "pf-t--global--font--family--heading": { + "type": "number", + "value": "Red Hat Display VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.family.200}" + }, + "name": "pf-t--global--font--family--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "family", + "heading" + ], + "references": [ + { + "type": "string", + "value": "Red Hat Display VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Display VF" + }, + "name": "pf-t--global--font--family--200", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "200" + }, + "path": [ + "global", + "font", + "family", + "200" + ] + } + ] + }, + "pf-t--global--font--family--mono": { + "type": "number", + "value": "Red Hat Mono VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.family.300}" + }, + "name": "pf-t--global--font--family--mono", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "mono" + }, + "path": [ + "global", + "font", + "family", + "mono" + ], + "references": [ + { + "type": "string", + "value": "Red Hat Mono VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Mono VF" + }, + "name": "pf-t--global--font--family--300", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "300" + }, + "path": [ + "global", + "font", + "family", + "300" + ] + } + ] + }, + "pf-t--global--font--weight--body": { + "100": { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": false + }, + "200": { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": false + }, + "type": "number", + "value": 400, + "bold": { + "type": "number", + "value": 500, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false + }, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "100": { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": false + }, + "200": { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": false + }, + "type": "number", + "value": "{global.font.weight.body.100}", + "bold": { + "type": "number", + "value": "{global.font.weight.body.200}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false + } + }, + "name": "pf-t--global--font--weight--body", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "body" + }, + "path": [ + "global", + "font", + "weight", + "body" + ], + "references": [ + { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": false + } + ] + }, + "pf-t--global--font--weight--heading": { + "100": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": false + }, + "200": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": false + }, + "type": "number", + "value": 700, + "bold": { + "type": "number", + "value": 700, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false + }, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "100": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": false + }, + "200": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": false + }, + "type": "number", + "value": "{global.font.weight.heading.100}", + "bold": { + "type": "number", + "value": "{global.font.weight.heading.200}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false + } + }, + "name": "pf-t--global--font--weight--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "weight", + "heading" + ], + "references": [ + { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": false + } + ] + }, + "pf-t--global--font--line-height--100": { + "type": "number", + "value": 1.2999999523162842, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1.2999999523162842 + }, + "name": "pf-t--global--font--line-height--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "100" + }, + "path": [ + "global", + "font", + "line-height", + "100" + ] + }, + "pf-t--global--font--line-height--200": { + "type": "number", + "value": 1.5, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1.5 + }, + "name": "pf-t--global--font--line-height--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "200" + }, + "path": [ + "global", + "font", + "line-height", + "200" + ] + }, + "pf-t--global--font--line-height--figma-only--100": { + "type": "number", + "value": 18, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--line-height--figma-only--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "100" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "100" + ] + }, + "pf-t--global--font--line-height--figma-only--200": { + "type": "number", + "value": 21, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 21 + }, + "name": "pf-t--global--font--line-height--figma-only--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "200" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "200" + ] + }, + "pf-t--global--font--line-height--figma-only--300": { + "type": "number", + "value": 24, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--font--line-height--figma-only--300", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "300" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "300" + ] + }, + "pf-t--global--font--line-height--figma-only--400": { + "type": "number", + "value": 23.399999618530273, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 23.399999618530273 + }, + "name": "pf-t--global--font--line-height--figma-only--400", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "400" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "400" + ] + }, + "pf-t--global--font--line-height--figma-only--500": { + "type": "number", + "value": 26, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 26 + }, + "name": "pf-t--global--font--line-height--figma-only--500", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "500" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "500" + ] + }, + "pf-t--global--font--line-height--figma-only--600": { + "type": "number", + "value": 28.600000381469727, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 28.600000381469727 + }, + "name": "pf-t--global--font--line-height--figma-only--600", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "600" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "600" + ] + }, + "pf-t--global--font--line-height--figma-only--700": { + "type": "number", + "value": 36.400001525878906, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 36.400001525878906 + }, + "name": "pf-t--global--font--line-height--figma-only--700", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "700" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "700" + ] + }, + "pf-t--global--font--line-height--figma-only--800": { + "type": "number", + "value": 46.79999923706055, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 46.79999923706055 + }, + "name": "pf-t--global--font--line-height--figma-only--800", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "800" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "800" + ] + }, + "pf-t--global--font--line-height--figma-only--body--small": { + "type": "number", + "value": 18, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.100}" + }, + "name": "pf-t--global--font--line-height--figma-only--body--small", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "body" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "body", + "small" + ], + "references": [ + { + "type": "number", + "value": 18, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--line-height--figma-only--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "100" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "100" + ] + } + ] + }, + "pf-t--global--font--line-height--figma-only--body--default": { + "type": "number", + "value": 21, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.200}" + }, + "name": "pf-t--global--font--line-height--figma-only--body--default", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "body" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "body", + "default" + ], + "references": [ + { + "type": "number", + "value": 21, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 21 + }, + "name": "pf-t--global--font--line-height--figma-only--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "200" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "200" + ] + } + ] + }, + "pf-t--global--font--line-height--figma-only--body--large": { + "type": "number", + "value": 24, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.300}" + }, + "name": "pf-t--global--font--line-height--figma-only--body--large", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "body" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "body", + "large" + ], + "references": [ + { + "type": "number", + "value": 24, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--font--line-height--figma-only--300", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "300" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "300" + ] + } + ] + }, + "pf-t--global--font--line-height--figma-only--heading--xs": { + "type": "number", + "value": 24, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.300}" + }, + "name": "pf-t--global--font--line-height--figma-only--heading--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "heading", + "xs" + ], + "references": [ + { + "type": "number", + "value": 24, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--font--line-height--figma-only--300", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "300" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "300" + ] + } + ] + }, + "pf-t--global--font--line-height--figma-only--heading--sm": { + "type": "number", + "value": 23.399999618530273, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.400}" + }, + "name": "pf-t--global--font--line-height--figma-only--heading--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "heading", + "sm" + ], + "references": [ + { + "type": "number", + "value": 23.399999618530273, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 23.399999618530273 + }, + "name": "pf-t--global--font--line-height--figma-only--400", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "400" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "400" + ] + } + ] + }, + "pf-t--global--font--line-height--figma-only--heading--md": { + "type": "number", + "value": 26, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.500}" + }, + "name": "pf-t--global--font--line-height--figma-only--heading--md", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "heading", + "md" + ], + "references": [ + { + "type": "number", + "value": 26, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 26 + }, + "name": "pf-t--global--font--line-height--figma-only--500", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "500" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "500" + ] + } + ] + }, + "pf-t--global--font--line-height--figma-only--heading--lg": { + "type": "number", + "value": 28.600000381469727, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.600}" + }, + "name": "pf-t--global--font--line-height--figma-only--heading--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "heading", + "lg" + ], + "references": [ + { + "type": "number", + "value": 28.600000381469727, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 28.600000381469727 + }, + "name": "pf-t--global--font--line-height--figma-only--600", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "600" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "600" + ] + } + ] + }, + "pf-t--global--font--line-height--figma-only--heading--xl": { + "type": "number", + "value": 36.400001525878906, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.700}" + }, + "name": "pf-t--global--font--line-height--figma-only--heading--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "heading", + "xl" + ], + "references": [ + { + "type": "number", + "value": 36.400001525878906, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 36.400001525878906 + }, + "name": "pf-t--global--font--line-height--figma-only--700", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "700" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "700" + ] + } + ] + }, + "pf-t--global--font--line-height--figma-only--heading--2xl": { + "type": "number", + "value": 46.79999923706055, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.800}" + }, + "name": "pf-t--global--font--line-height--figma-only--heading--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "heading", + "2xl" + ], + "references": [ + { + "type": "number", + "value": 46.79999923706055, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 46.79999923706055 + }, + "name": "pf-t--global--font--line-height--figma-only--800", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "800" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "800" + ] + } + ] + }, + "pf-t--global--font--line-height--body": { + "type": "number", + "value": 1.2999999523162842, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.line-height.100}" + }, + "name": "pf-t--global--font--line-height--body", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "body" + }, + "path": [ + "global", + "font", + "line-height", + "body" + ], + "references": [ + { + "type": "number", + "value": 1.2999999523162842, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1.2999999523162842 + }, + "name": "pf-t--global--font--line-height--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "100" + }, + "path": [ + "global", + "font", + "line-height", + "100" + ] + } + ] + }, + "pf-t--global--font--line-height--heading": { + "type": "number", + "value": 1.5, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.line-height.200}" + }, + "name": "pf-t--global--font--line-height--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "heading" + ], + "references": [ + { + "type": "number", + "value": 1.5, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1.5 + }, + "name": "pf-t--global--font--line-height--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "200" + }, + "path": [ + "global", + "font", + "line-height", + "200" + ] + } + ] + }, + "pf-t--global--font--size--100": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + }, + "pf-t--global--font--size--200": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + }, + "pf-t--global--font--size--300": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + }, + "pf-t--global--font--size--400": { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + }, + "pf-t--global--font--size--500": { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + }, + "pf-t--global--font--size--600": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + }, + "pf-t--global--font--size--700": { + "type": "number", + "value": "28px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + }, + "pf-t--global--font--size--800": { + "type": "number", + "value": "36px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + }, + "pf-t--global--font--size--body--sm": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--font--size--body--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "sm" + }, + "path": [ + "global", + "font", + "size", + "body", + "sm" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--body--default": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--font--size--body--default", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "default" + }, + "path": [ + "global", + "font", + "size", + "body", + "default" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--body--lg": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--body--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "lg" + }, + "path": [ + "global", + "font", + "size", + "body", + "lg" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h1": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--font--size--heading--h1", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h1" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h1" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h2": { + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--font--size--heading--h2", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h2" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h2" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h3": { + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--font--size--heading--h3", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h3" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h3" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h4": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h4", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h4" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h4" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h5": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h5", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h5" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h5" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h6": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h6", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h6" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h6" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--xs": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + }, + "pf-t--global--font--size--sm": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + }, + "pf-t--global--font--size--md": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + }, + "pf-t--global--font--size--lg": { + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + }, + "pf-t--global--font--size--xl": { + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + }, + "pf-t--global--font--size--2xl": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + }, + "pf-t--global--font--size--3xl": { + "type": "number", + "value": "28px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.700}" + }, + "name": "pf-t--global--font--size--3xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "font", + "size", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "28px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + } + ] + }, + "pf-t--global--font--size--4xl": { + "type": "number", + "value": "36px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.800}" + }, + "name": "pf-t--global--font--size--4xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "4xl" + }, + "path": [ + "global", + "font", + "size", + "4xl" + ], + "references": [ + { + "type": "number", + "value": "36px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + } + ] + }, + "pf-t--global--z-index--100": { + "type": "number", + "value": 100, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--z-index--100", + "attributes": { + "category": "global", + "type": "z-index", + "item": "100" + }, + "path": [ + "global", + "z-index", + "100" + ] + }, + "pf-t--global--z-index--200": { + "type": "number", + "value": 200, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--z-index--200", + "attributes": { + "category": "global", + "type": "z-index", + "item": "200" + }, + "path": [ + "global", + "z-index", + "200" + ] + }, + "pf-t--global--z-index--300": { + "type": "number", + "value": 300, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--z-index--300", + "attributes": { + "category": "global", + "type": "z-index", + "item": "300" + }, + "path": [ + "global", + "z-index", + "300" + ] + }, + "pf-t--global--z-index--400": { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--z-index--400", + "attributes": { + "category": "global", + "type": "z-index", + "item": "400" + }, + "path": [ + "global", + "z-index", + "400" + ] + }, + "pf-t--global--z-index--500": { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--z-index--500", + "attributes": { + "category": "global", + "type": "z-index", + "item": "500" + }, + "path": [ + "global", + "z-index", + "500" + ] + }, + "pf-t--global--z-index--600": { + "type": "number", + "value": 600, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--z-index--600", + "attributes": { + "category": "global", + "type": "z-index", + "item": "600" + }, + "path": [ + "global", + "z-index", + "600" + ] + }, + "pf-t--global--z-index--xs": { + "type": "number", + "value": 100, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.z-index.100}" + }, + "name": "pf-t--global--z-index--xs", + "attributes": { + "category": "global", + "type": "z-index", + "item": "xs" + }, + "path": [ + "global", + "z-index", + "xs" + ], + "references": [ + { + "type": "number", + "value": 100, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--z-index--100", + "attributes": { + "category": "global", + "type": "z-index", + "item": "100" + }, + "path": [ + "global", + "z-index", + "100" + ] + } + ] + }, + "pf-t--global--z-index--sm": { + "type": "number", + "value": 200, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.z-index.200}" + }, + "name": "pf-t--global--z-index--sm", + "attributes": { + "category": "global", + "type": "z-index", + "item": "sm" + }, + "path": [ + "global", + "z-index", + "sm" + ], + "references": [ + { + "type": "number", + "value": 200, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--z-index--200", + "attributes": { + "category": "global", + "type": "z-index", + "item": "200" + }, + "path": [ + "global", + "z-index", + "200" + ] + } + ] + }, + "pf-t--global--z-index--md": { + "type": "number", + "value": 300, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.z-index.300}" + }, + "name": "pf-t--global--z-index--md", + "attributes": { + "category": "global", + "type": "z-index", + "item": "md" + }, + "path": [ + "global", + "z-index", + "md" + ], + "references": [ + { + "type": "number", + "value": 300, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--z-index--300", + "attributes": { + "category": "global", + "type": "z-index", + "item": "300" + }, + "path": [ + "global", + "z-index", + "300" + ] + } + ] + }, + "pf-t--global--z-index--lg": { + "type": "number", + "value": 400, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.z-index.400}" + }, + "name": "pf-t--global--z-index--lg", + "attributes": { + "category": "global", + "type": "z-index", + "item": "lg" + }, + "path": [ + "global", + "z-index", + "lg" + ], + "references": [ + { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--z-index--400", + "attributes": { + "category": "global", + "type": "z-index", + "item": "400" + }, + "path": [ + "global", + "z-index", + "400" + ] + } + ] + }, + "pf-t--global--z-index--xl": { + "type": "number", + "value": 500, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.z-index.500}" + }, + "name": "pf-t--global--z-index--xl", + "attributes": { + "category": "global", + "type": "z-index", + "item": "xl" + }, + "path": [ + "global", + "z-index", + "xl" + ], + "references": [ + { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--z-index--500", + "attributes": { + "category": "global", + "type": "z-index", + "item": "500" + }, + "path": [ + "global", + "z-index", + "500" + ] + } + ] + }, + "pf-t--global--z-index--2xl": { + "type": "number", + "value": 600, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.z-index.600}" + }, + "name": "pf-t--global--z-index--2xl", + "attributes": { + "category": "global", + "type": "z-index", + "item": "2xl" + }, + "path": [ + "global", + "z-index", + "2xl" + ], + "references": [ + { + "type": "number", + "value": 600, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--z-index--600", + "attributes": { + "category": "global", + "type": "z-index", + "item": "600" + }, + "path": [ + "global", + "z-index", + "600" + ] + } + ] + }, + "pf-t--global--box-shadow--X--100": { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--X--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "X", + "100" + ] + }, + "pf-t--global--box-shadow--X--200": { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--X--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "X", + "200" + ] + }, + "pf-t--global--box-shadow--X--300": { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--X--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "X", + "300" + ] + }, + "pf-t--global--box-shadow--X--400": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + }, + "pf-t--global--box-shadow--X--500": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--X--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "X", + "500" + ] + }, + "pf-t--global--box-shadow--X--600": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--X--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "X", + "600" + ] + }, + "pf-t--global--box-shadow--X--700": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--X--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "X", + "700" + ] + }, + "pf-t--global--box-shadow--X--sm--default": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "default" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--top": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "top" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--bottom": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--left": { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.X.300}" + }, + "name": "pf-t--global--box-shadow--X--sm--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "left" + ], + "references": [ + { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--X--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "X", + "300" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--right": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.X.500}" + }, + "name": "pf-t--global--box-shadow--X--sm--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "right" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--X--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "X", + "500" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--default": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "default" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--top": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "top" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--bottom": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--left": { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.X.200}" + }, + "name": "pf-t--global--box-shadow--X--md--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "left" + ], + "references": [ + { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--X--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "X", + "200" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--right": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.X.600}" + }, + "name": "pf-t--global--box-shadow--X--md--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "right" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--X--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "X", + "600" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--default": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "default" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--top": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "top" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--bottom": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--left": { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.X.100}" + }, + "name": "pf-t--global--box-shadow--X--lg--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "left" + ], + "references": [ + { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--X--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "X", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--right": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.X.700}" + }, + "name": "pf-t--global--box-shadow--X--lg--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "right" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--X--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "X", + "700" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--100": { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--Y--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "Y", + "100" + ] + }, + "pf-t--global--box-shadow--Y--200": { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--Y--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "Y", + "200" + ] + }, + "pf-t--global--box-shadow--Y--300": { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--Y--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "Y", + "300" + ] + }, + "pf-t--global--box-shadow--Y--400": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + }, + "pf-t--global--box-shadow--Y--500": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + }, + "pf-t--global--box-shadow--Y--600": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + }, + "pf-t--global--box-shadow--Y--700": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + }, + "pf-t--global--box-shadow--Y--sm--default": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.500}" + }, + "name": "pf-t--global--box-shadow--Y--sm--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--top": { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.300}" + }, + "name": "pf-t--global--box-shadow--Y--sm--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "top" + ], + "references": [ + { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--Y--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "Y", + "300" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--bottom": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.500}" + }, + "name": "pf-t--global--box-shadow--Y--sm--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--left": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--sm--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "left" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--right": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--sm--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "right" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--default": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.600}" + }, + "name": "pf-t--global--box-shadow--Y--md--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "default" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--top": { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.200}" + }, + "name": "pf-t--global--box-shadow--Y--md--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "top" + ], + "references": [ + { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--Y--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "Y", + "200" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--bottom": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.600}" + }, + "name": "pf-t--global--box-shadow--Y--md--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--left": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--md--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "left" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--right": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--md--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "right" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--default": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.700}" + }, + "name": "pf-t--global--box-shadow--Y--lg--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "default" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--top": { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.100}" + }, + "name": "pf-t--global--box-shadow--Y--lg--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "top" + ], + "references": [ + { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--Y--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "Y", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--bottom": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.700}" + }, + "name": "pf-t--global--box-shadow--Y--lg--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--left": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--lg--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "left" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--right": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--lg--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "right" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--blur--100": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--box-shadow--blur--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "blur", + "100" + ] + }, + "pf-t--global--box-shadow--blur--200": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--blur--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "blur", + "200" + ] + }, + "pf-t--global--box-shadow--blur--300": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--box-shadow--blur--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "blur", + "300" + ] + }, + "pf-t--global--box-shadow--blur--sm": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.blur.100}" + }, + "name": "pf-t--global--box-shadow--blur--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "blur", + "sm" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--box-shadow--blur--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "blur", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--blur--md": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.blur.200}" + }, + "name": "pf-t--global--box-shadow--blur--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "blur", + "md" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--blur--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "blur", + "200" + ] + } + ] + }, + "pf-t--global--box-shadow--blur--lg": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.blur.300}" + }, + "name": "pf-t--global--box-shadow--blur--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "blur", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--box-shadow--blur--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "blur", + "300" + ] + } + ] + }, + "pf-t--global--box-shadow--spread--100": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + }, + "pf-t--global--box-shadow--spread--sm": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "spread", + "sm" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--spread--md": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "spread", + "md" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--spread--lg": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "spread", + "lg" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--color--100": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)" + }, + "name": "pf-t--global--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "color", + "100" + ] + }, + "pf-t--global--box-shadow--color--200": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)" + }, + "name": "pf-t--global--box-shadow--color--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "color", + "200" + ] + }, + "pf-t--global--box-shadow--color--sm": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.box-shadow.color.100}" + }, + "name": "pf-t--global--box-shadow--color--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "color", + "sm" + ], + "references": [ + { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)" + }, + "name": "pf-t--global--dark--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "box-shadow", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "box-shadow", + "color", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--color--md": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.box-shadow.color.100}" + }, + "name": "pf-t--global--box-shadow--color--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "color", + "md" + ], + "references": [ + { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)" + }, + "name": "pf-t--global--dark--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "box-shadow", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "box-shadow", + "color", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--color--lg": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.box-shadow.color.100}" + }, + "name": "pf-t--global--box-shadow--color--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "color", + "lg" + ], + "references": [ + { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)" + }, + "name": "pf-t--global--dark--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "box-shadow", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "box-shadow", + "color", + "100" + ] + } + ] + }, + "pf-t--global--breakpoint--100": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + }, + "pf-t--global--breakpoint--200": { + "type": "number", + "value": "576px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 576 + }, + "name": "pf-t--global--breakpoint--200", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "200" + }, + "path": [ + "global", + "breakpoint", + "200" + ] + }, + "pf-t--global--breakpoint--250": { + "type": "number", + "value": "640px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 640 + }, + "name": "pf-t--global--breakpoint--250", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "250" + }, + "path": [ + "global", + "breakpoint", + "250" + ] + }, + "pf-t--global--breakpoint--300": { + "type": "number", + "value": "768px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + }, + "pf-t--global--breakpoint--350": { + "type": "number", + "value": "960px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 960 + }, + "name": "pf-t--global--breakpoint--350", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "350" + }, + "path": [ + "global", + "breakpoint", + "350" + ] + }, + "pf-t--global--breakpoint--400": { + "type": "number", + "value": "992px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 992 + }, + "name": "pf-t--global--breakpoint--400", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "400" + }, + "path": [ + "global", + "breakpoint", + "400" + ] + }, + "pf-t--global--breakpoint--500": { + "type": "number", + "value": "1200px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1200 + }, + "name": "pf-t--global--breakpoint--500", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "500" + }, + "path": [ + "global", + "breakpoint", + "500" + ] + }, + "pf-t--global--breakpoint--550": { + "type": "number", + "value": "1280px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1280 + }, + "name": "pf-t--global--breakpoint--550", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "550" + }, + "path": [ + "global", + "breakpoint", + "550" + ] + }, + "pf-t--global--breakpoint--600": { + "type": "number", + "value": "1450px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1450 + }, + "name": "pf-t--global--breakpoint--600", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "600" + }, + "path": [ + "global", + "breakpoint", + "600" + ] + }, + "pf-t--global--breakpoint--xs": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.breakpoint.100}" + }, + "name": "pf-t--global--breakpoint--xs", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "xs" + }, + "path": [ + "global", + "breakpoint", + "xs" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + } + ] + }, + "pf-t--global--breakpoint--sm": { + "type": "number", + "value": "576px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.breakpoint.200}" + }, + "name": "pf-t--global--breakpoint--sm", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "sm" + }, + "path": [ + "global", + "breakpoint", + "sm" + ], + "references": [ + { + "type": "number", + "value": "576px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 576 + }, + "name": "pf-t--global--breakpoint--200", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "200" + }, + "path": [ + "global", + "breakpoint", + "200" + ] + } + ] + }, + "pf-t--global--breakpoint--md": { + "type": "number", + "value": "768px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.breakpoint.300}" + }, + "name": "pf-t--global--breakpoint--md", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "md" + }, + "path": [ + "global", + "breakpoint", + "md" + ], + "references": [ + { + "type": "number", + "value": "768px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + } + ] + }, + "pf-t--global--breakpoint--lg": { + "type": "number", + "value": "992px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.breakpoint.400}" + }, + "name": "pf-t--global--breakpoint--lg", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "lg" + }, + "path": [ + "global", + "breakpoint", + "lg" + ], + "references": [ + { + "type": "number", + "value": "992px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 992 + }, + "name": "pf-t--global--breakpoint--400", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "400" + }, + "path": [ + "global", + "breakpoint", + "400" + ] + } + ] + }, + "pf-t--global--breakpoint--xl": { + "type": "number", + "value": "1200px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.breakpoint.500}" + }, + "name": "pf-t--global--breakpoint--xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "xl" + }, + "path": [ + "global", + "breakpoint", + "xl" + ], + "references": [ + { + "type": "number", + "value": "1200px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1200 + }, + "name": "pf-t--global--breakpoint--500", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "500" + }, + "path": [ + "global", + "breakpoint", + "500" + ] + } + ] + }, + "pf-t--global--breakpoint--2xl": { + "type": "number", + "value": "1450px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.breakpoint.600}" + }, + "name": "pf-t--global--breakpoint--2xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "2xl" + }, + "path": [ + "global", + "breakpoint", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "1450px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1450 + }, + "name": "pf-t--global--breakpoint--600", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "600" + }, + "path": [ + "global", + "breakpoint", + "600" + ] + } + ] + }, + "pf-t--global--breakpoint--height--sm": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.breakpoint.100}" + }, + "name": "pf-t--global--breakpoint--height--sm", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "sm" + }, + "path": [ + "global", + "breakpoint", + "height", + "sm" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + } + ] + }, + "pf-t--global--breakpoint--height--md": { + "type": "number", + "value": "640px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.breakpoint.250}" + }, + "name": "pf-t--global--breakpoint--height--md", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "md" + }, + "path": [ + "global", + "breakpoint", + "height", + "md" + ], + "references": [ + { + "type": "number", + "value": "640px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 640 + }, + "name": "pf-t--global--breakpoint--250", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "250" + }, + "path": [ + "global", + "breakpoint", + "250" + ] + } + ] + }, + "pf-t--global--breakpoint--height--lg": { + "type": "number", + "value": "768px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.breakpoint.300}" + }, + "name": "pf-t--global--breakpoint--height--lg", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "lg" + }, + "path": [ + "global", + "breakpoint", + "height", + "lg" + ], + "references": [ + { + "type": "number", + "value": "768px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + } + ] + }, + "pf-t--global--breakpoint--height--xl": { + "type": "number", + "value": "960px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.breakpoint.350}" + }, + "name": "pf-t--global--breakpoint--height--xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "xl" + }, + "path": [ + "global", + "breakpoint", + "height", + "xl" + ], + "references": [ + { + "type": "number", + "value": "960px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 960 + }, + "name": "pf-t--global--breakpoint--350", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "350" + }, + "path": [ + "global", + "breakpoint", + "350" + ] + } + ] + }, + "pf-t--global--breakpoint--height--2xl": { + "type": "number", + "value": "1280px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.breakpoint.550}" + }, + "name": "pf-t--global--breakpoint--height--2xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "2xl" + }, + "path": [ + "global", + "breakpoint", + "height", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "1280px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1280 + }, + "name": "pf-t--global--breakpoint--550", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "550" + }, + "path": [ + "global", + "breakpoint", + "550" + ] + } + ] + }, + "pf-t--global--background--color--100": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--global--background--color--200": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--global--background--color--300": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--background--color--300", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--global--background--color--400": { + "type": "color", + "value": "#292929", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--background--color--400", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "background", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + }, + "pf-t--global--background--color--500": { + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)" + }, + "name": "pf-t--global--background--color--500", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "500" + }, + "path": [ + "global", + "background", + "color", + "500" + ] + }, + "pf-t--global--background--color--600": { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)" + }, + "name": "pf-t--global--background--color--600", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "600" + }, + "path": [ + "global", + "background", + "color", + "600" + ] + }, + "pf-t--global--background--color--highlight--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--background--color--highlight--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "100" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--background--color--highlight--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--background--color--highlight--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "200" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--background--color--highlight--default": { + "description": "Use as the background color for highlighted elements", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the background color for highlighted elements", + "type": "color", + "value": "{global.dark.background.color.highlight.100}" + }, + "name": "pf-t--global--background--color--highlight--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--background--color--highlight--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "highlight" + }, + "path": [ + "global", + "dark", + "background", + "color", + "highlight", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--highlight--clicked": { + "description": "Use as the active state for for highlighted elements", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the active state for for highlighted elements", + "type": "color", + "value": "{global.dark.background.color.highlight.200}" + }, + "name": "pf-t--global--background--color--highlight--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--background--color--highlight--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "highlight" + }, + "path": [ + "global", + "dark", + "background", + "color", + "highlight", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--primary--default": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--primary--hover": { + "description": "Use as the hover state for primary backgrounds", + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for primary backgrounds", + "type": "color", + "value": "{global.dark.background.color.300}" + }, + "name": "pf-t--global--background--color--primary--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "primary", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--primary--clicked": { + "description": "Use as the selected state for primary backgrounds", + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the selected state for primary backgrounds", + "type": "color", + "value": "{global.dark.background.color.300}" + }, + "name": "pf-t--global--background--color--primary--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "primary", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--secondary--default": { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "type": "color", + "value": "{global.dark.background.color.100}" + }, + "name": "pf-t--global--background--color--secondary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--dark--background--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--secondary--hover": { + "description": "Use as the hover state for secondary backgrounds", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for secondary backgrounds", + "type": "color", + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--secondary--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--secondary--clicked": { + "description": "Use as the selected state for secondary backgrounds", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the selected state for secondary backgrounds", + "type": "color", + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--secondary--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--floating--default": { + "description": "Use as background color for components that show over top of other content such as toast alerts, menus, modals, overlay drawers, etc.", + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as background color for components that show over top of other content such as toast alerts, menus, modals, overlay drawers, etc.", + "type": "color", + "value": "{global.dark.background.color.300}" + }, + "name": "pf-t--global--background--color--floating--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "floating", + "default" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--floating--hover": { + "description": "Use as the hover state for floating backgrounds", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for floating backgrounds", + "type": "color", + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--floating--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "floating", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--floating--clicked": { + "description": "Use as the selected state for floating backgrounds", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the selected state for floating backgrounds", + "type": "color", + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--floating--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "floating", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--action--plain--default": { + "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", + "type": "color", + "value": "rgba(0, 0, 0, 0.0000)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", + "type": "color", + "value": "rgba(0, 0, 0, 0.0000)" + }, + "name": "pf-t--global--background--color--action--plain--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "default" + ] + }, + "pf-t--global--background--color--action--plain--hover": { + "description": "Use as the hover state for components that use the plain action default background.", + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for components that use the plain action default background.", + "type": "color", + "value": "{global.dark.background.color.600}" + }, + "name": "pf-t--global--background--color--action--plain--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "hover" + ], + "references": [ + { + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)" + }, + "name": "pf-t--global--dark--background--color--600", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "600" + }, + "path": [ + "global", + "dark", + "background", + "color", + "600" + ] + } + ] + }, + "pf-t--global--background--color--action--plain--clicked": { + "description": "Use as the active/pressed state for components that use the plain action default background.", + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the active/pressed state for components that use the plain action default background.", + "type": "color", + "value": "{global.dark.background.color.600}" + }, + "name": "pf-t--global--background--color--action--plain--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)" + }, + "name": "pf-t--global--dark--background--color--600", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "600" + }, + "path": [ + "global", + "dark", + "background", + "color", + "600" + ] + } + ] + }, + "pf-t--global--background--color--action--plain--alt--hover": { + "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", + "type": "color", + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--action--plain--alt--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "alt", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--action--plain--alt--clicked": { + "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", + "type": "color", + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--action--plain--alt--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "alt", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--control--default": { + "description": "Use as the default background for control elements like form inputs and menu toggles.", + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background for control elements like form inputs and menu toggles.", + "type": "color", + "value": "{global.dark.background.color.300}" + }, + "name": "pf-t--global--background--color--control--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "control", + "default" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--inverse--default": { + "description": "Use as the background color components with inversed backgrounds like tooltips.", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the background color components with inversed backgrounds like tooltips.", + "type": "color", + "value": "{global.dark.background.color.400}" + }, + "name": "pf-t--global--background--color--inverse--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "inverse", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "inverse", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--background--color--400", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "400" + }, + "path": [ + "global", + "dark", + "background", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--disabled--default": { + "description": "Use as the background color for disabled components.", + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the background color for disabled components.", + "type": "color", + "value": "{global.dark.color.disabled.100}" + }, + "name": "pf-t--global--background--color--disabled--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "disabled", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "disabled", + "default" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--color--disabled--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "100" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--backdrop--default": { + "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", + "type": "color", + "value": "rgba(21, 21, 21, 0.8000)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", + "type": "color", + "value": "{global.dark.background.color.500}" + }, + "name": "pf-t--global--background--color--backdrop--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "backdrop", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "backdrop", + "default" + ], + "references": [ + { + "type": "color", + "value": "rgba(21, 21, 21, 0.8000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(21, 21, 21, 0.8000)" + }, + "name": "pf-t--global--dark--background--color--500", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "500" + }, + "path": [ + "global", + "dark", + "background", + "color", + "500" + ] + } + ] + }, + "pf-t--global--color--brand--100": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--brand--100", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "100" + }, + "path": [ + "global", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + }, + "pf-t--global--color--brand--200": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + }, + "pf-t--global--color--brand--300": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + }, + "pf-t--global--color--brand--default": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.100}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--brand--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--brand--hover": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--brand--clicked": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--disabled--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--disabled--100", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "100" + }, + "path": [ + "global", + "color", + "disabled", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--color--disabled--200": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--disabled--200", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "200" + }, + "path": [ + "global", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--color--disabled--300": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--color--disabled--300", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "300" + }, + "path": [ + "global", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + }, + "pf-t--global--color--favorite--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--favorite--100", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "100" + }, + "path": [ + "global", + "color", + "favorite", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--color--favorite--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--favorite--default": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.favorite.100}" + }, + "name": "pf-t--global--color--favorite--default", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "default" + }, + "path": [ + "global", + "color", + "favorite", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--favorite--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--favorite--hover": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "favorite", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--favorite--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--favorite--clicked": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "favorite", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--favorite--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--success--100": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + }, + "pf-t--global--color--status--success--200": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + }, + "pf-t--global--color--status--success--default": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--dark--color--status--success--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--success--hover": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--success--clicked": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--warning--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--status--warning--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--color--status--warning--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--status--warning--300": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + }, + "pf-t--global--color--status--warning--default": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.warning.100}" + }, + "name": "pf-t--global--color--status--warning--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--status--warning--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--warning--hover": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--warning--clicked": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--danger--100": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + }, + "pf-t--global--color--status--danger--200": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + }, + "pf-t--global--color--status--danger--300": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "danger", + "300" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + }, + "pf-t--global--color--status--danger--default": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--status--danger--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--danger--hover": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--danger--clicked": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--info--100": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + }, + "pf-t--global--color--status--info--200": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + }, + "pf-t--global--color--status--info--default": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--status--info--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--info--hover": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--info--clicked": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--custom--100": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + }, + "pf-t--global--color--status--custom--200": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + }, + "pf-t--global--color--status--custom--default": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--dark--color--status--custom--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--custom--hover": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--custom--clicked": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--default--default": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--color--status--unread--default--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "unread", + "default", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.100}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--brand--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--default--hover": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--color--status--unread--default--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "unread", + "default", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--default--clicked": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--color--status--unread--default--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "unread", + "default", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--attention--default": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--color--status--unread--attention--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--status--danger--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--attention--clicked": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--color--status--unread--attention--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--attention--hover": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--color--status--unread--attention--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--read--on-secondary": { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.background.color.control.default}" + }, + "name": "pf-t--global--color--status--read--on-secondary", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "read", + "state": "on-secondary" + }, + "path": [ + "global", + "color", + "status", + "read", + "on-secondary" + ], + "references": [ + { + "description": "Use as the default background for control elements like form inputs and menu toggles.", + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background for control elements like form inputs and menu toggles.", + "type": "color", + "value": "{global.dark.background.color.300}" + }, + "name": "pf-t--global--background--color--control--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "control", + "default" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--read--on-primary": { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.background.color.secondary.default}" + }, + "name": "pf-t--global--color--status--read--on-primary", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "read", + "state": "on-primary" + }, + "path": [ + "global", + "color", + "status", + "read", + "on-primary" + ], + "references": [ + { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "type": "color", + "value": "{global.dark.background.color.100}" + }, + "name": "pf-t--global--background--color--secondary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--dark--background--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--severity--undefined--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--severity--undefined--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "undefined", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "undefined", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--color--severity--none--100": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--severity--none--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "none", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "none", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + }, + "pf-t--global--color--severity--minor--100": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--color--severity--minor--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "minor", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "minor", + "100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--global--color--severity--moderate--100": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--severity--moderate--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "moderate", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "moderate", + "100" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--severity--important--100": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--global--color--severity--important--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "important", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "important", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + }, + "pf-t--global--color--severity--critical--100": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--severity--critical--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "critical", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "critical", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--100": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red.20}" + }, + "name": "pf-t--global--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--200": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red.30}" + }, + "name": "pf-t--global--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--300": { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red.40}" + }, + "name": "pf-t--global--color--nonstatus--red--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--default": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.red.100}" + }, + "name": "pf-t--global--color--nonstatus--red--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--hover": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.red.200}" + }, + "name": "pf-t--global--color--nonstatus--red--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--clicked": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.red.200}" + }, + "name": "pf-t--global--color--nonstatus--red--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--100": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--200": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--300": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orangered--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--default": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.orangered.100}" + }, + "name": "pf-t--global--color--nonstatus--orangered--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--hover": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--color--nonstatus--orangered--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--clicked": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--color--nonstatus--orangered--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--100": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--200": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--300": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orange--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--default": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.orange.100}" + }, + "name": "pf-t--global--color--nonstatus--orange--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--hover": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--color--nonstatus--orange--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--clicked": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--color--nonstatus--orange--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--gold--100": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--color--nonstatus--gold--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gold", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "gold", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gold--200": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--gold--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gold", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gold", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gold--300": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--nonstatus--gold--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gold", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gold", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--100": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--global--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--200": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--300": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--color--nonstatus--green--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--default": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.green.100}" + }, + "name": "pf-t--global--color--nonstatus--green--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "default" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--hover": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.green.200}" + }, + "name": "pf-t--global--color--nonstatus--green--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--clicked": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.green.200}" + }, + "name": "pf-t--global--color--nonstatus--green--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--cyan--100": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--color--nonstatus--cyan--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "cyan", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "cyan", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--cyan--200": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--cyan--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "cyan", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "cyan", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--cyan--300": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--color--nonstatus--cyan--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "cyan", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "cyan", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--100": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--200": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--300": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--nonstatus--blue--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--default": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.blue.100}" + }, + "name": "pf-t--global--color--nonstatus--blue--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--hover": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--color--nonstatus--blue--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--clicked": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--color--nonstatus--blue--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--100": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--200": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--300": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--global--color--nonstatus--purple--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--default": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.purple.100}" + }, + "name": "pf-t--global--color--nonstatus--purple--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--hover": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--color--nonstatus--purple--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--clicked": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--color--nonstatus--purple--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--100": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--200": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--300": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--nonstatus--gray--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "300" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--default": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.gray.100}" + }, + "name": "pf-t--global--color--nonstatus--gray--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "default" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--hover": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--color--nonstatus--gray--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--clicked": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--color--nonstatus--gray--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--default": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.gold.100}" + }, + "name": "pf-t--global--color--nonstatus--yellow--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--gold--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gold" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gold", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--hover": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.gold.200}" + }, + "name": "pf-t--global--color--nonstatus--yellow--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gold--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gold" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gold", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--clicked": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.gold.200}" + }, + "name": "pf-t--global--color--nonstatus--yellow--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gold--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gold" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gold", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--default": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.cyan.100}" + }, + "name": "pf-t--global--color--nonstatus--teal--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "default" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--cyan--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "cyan" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "cyan", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--hover": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.cyan.200}" + }, + "name": "pf-t--global--color--nonstatus--teal--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--cyan--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "cyan" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "cyan", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--clicked": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.nonstatus.cyan.200}" + }, + "name": "pf-t--global--color--nonstatus--teal--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--cyan--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "cyan" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "cyan", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--100": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + }, + "pf-t--global--text--color--200": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--text--color--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "text", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + }, + "pf-t--global--text--color--300": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--global--text--color--400": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--text--color--400", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "text", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + }, + "pf-t--global--text--color--link--100": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--text--color--link--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "100" + }, + "path": [ + "global", + "text", + "color", + "link", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + }, + "pf-t--global--text--color--link--200": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--text--color--link--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "200" + }, + "path": [ + "global", + "text", + "color", + "link", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + }, + "pf-t--global--text--color--link--300": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--text--color--link--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "300" + }, + "path": [ + "global", + "text", + "color", + "link", + "300" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + }, + "pf-t--global--text--color--link--default": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.link.100}" + }, + "name": "pf-t--global--text--color--link--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "link", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--text--color--link--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--link--hover": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.link.200}" + }, + "name": "pf-t--global--text--color--link--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "link", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--text--color--link--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--link--visited": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.link.300}" + }, + "name": "pf-t--global--text--color--link--visited", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "visited" + }, + "path": [ + "global", + "text", + "color", + "link", + "visited" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--text--color--link--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--regular": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--text--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--subtle": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.200}" + }, + "name": "pf-t--global--text--color--subtle", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "text", + "color", + "subtle" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--text--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "text", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--inverse": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-brand--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-brand--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-brand--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "clicked" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--placeholder": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.subtle}" + }, + "name": "pf-t--global--text--color--placeholder", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "placeholder" + }, + "path": [ + "global", + "text", + "color", + "placeholder" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.200}" + }, + "name": "pf-t--global--text--color--subtle", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "text", + "color", + "subtle" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--text--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "text", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--disabled": { + "description": "for use without disabled background color", + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "for use without disabled background color", + "type": "color", + "value": "{global.dark.color.disabled.200}" + }, + "name": "pf-t--global--text--color--disabled", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "text", + "color", + "disabled" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--dark--color--disabled--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-disabled": { + "description": "pair with disabled background color", + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "pair with disabled background color", + "type": "color", + "value": "{global.dark.color.disabled.300}" + }, + "name": "pf-t--global--text--color--on-disabled", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-disabled" + }, + "path": [ + "global", + "text", + "color", + "on-disabled" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--color--disabled--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--default": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--text--color--brand--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--hover": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.300}" + }, + "name": "pf-t--global--text--color--brand--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--brand--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--clicked": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.brand.300}" + }, + "name": "pf-t--global--text--color--brand--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "text", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--brand--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--required": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.400}" + }, + "name": "pf-t--global--text--color--required", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "required" + }, + "path": [ + "global", + "text", + "color", + "required" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--text--color--400", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "400" + }, + "path": [ + "global", + "dark", + "text", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-highlight": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--on-highlight", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-highlight" + }, + "path": [ + "global", + "text", + "color", + "on-highlight" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--success--default": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--text--color--status--success--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--dark--color--status--success--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--success--hover": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--text--color--status--success--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--success--clicked": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--text--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-success--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-success--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-success--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--warning--default": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.default}" + }, + "name": "pf-t--global--text--color--status--warning--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.warning.100}" + }, + "name": "pf-t--global--color--status--warning--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--status--warning--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--warning--hover": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.hover}" + }, + "name": "pf-t--global--text--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--warning--clicked": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.clicked}" + }, + "name": "pf-t--global--text--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-warning--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-warning--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-warning--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-warning--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-warning--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-warning--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--danger--default": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.danger.250}" + }, + "name": "pf-t--global--text--color--status--danger--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--color--status--danger--250", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "250" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--danger--hover": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.danger.300}" + }, + "name": "pf-t--global--text--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--status--danger--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "300" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--danger--clicked": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.danger.300}" + }, + "name": "pf-t--global--text--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--status--danger--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "300" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-danger--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-danger--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-danger--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--info--default": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--text--color--status--info--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--status--info--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--info--hover": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--text--color--status--info--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--info--clicked": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--text--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-info--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-info--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-info--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--custom--default": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--text--color--status--custom--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--dark--color--status--custom--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--custom--hover": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--text--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--custom--clicked": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--text--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-custom--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-custom--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-custom--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-default--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-default--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-default--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-attention--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-attention--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-attention--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-red--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-red--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-red--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orangered--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orangered--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orangered--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orange--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orange--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orange--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-yellow--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-yellow--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-yellow--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-green--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-green--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-green--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-teal--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-teal--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-teal--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-blue--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-blue--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-blue--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-purple--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-purple--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-purple--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-gray--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-gray--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-gray--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--duration--50": { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + }, + "pf-t--global--duration--100": { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + }, + "pf-t--global--duration--200": { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + }, + "pf-t--global--duration--300": { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + }, + "pf-t--global--duration--400": { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + }, + "pf-t--global--duration--500": { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + }, + "pf-t--global--duration--600": { + "type": "number", + "value": "600ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--duration--600", + "attributes": { + "category": "global", + "type": "duration", + "item": "600" + }, + "path": [ + "global", + "duration", + "600" + ] + }, + "pf-t--global--delay--100": { + "type": "number", + "value": "0ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--delay--100", + "attributes": { + "category": "global", + "type": "delay", + "item": "100" + }, + "path": [ + "global", + "delay", + "100" + ] + }, + "pf-t--global--delay--200": { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--delay--200", + "attributes": { + "category": "global", + "type": "delay", + "item": "200" + }, + "path": [ + "global", + "delay", + "200" + ] + }, + "pf-t--global--delay--300": { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--delay--300", + "attributes": { + "category": "global", + "type": "delay", + "item": "300" + }, + "path": [ + "global", + "delay", + "300" + ] + }, + "pf-t--global--delay--400": { + "type": "number", + "value": "7000ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 7000 + }, + "name": "pf-t--global--delay--400", + "attributes": { + "category": "global", + "type": "delay", + "item": "400" + }, + "path": [ + "global", + "delay", + "400" + ] + }, + "pf-t--global--timing-function--100": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)" + }, + "name": "pf-t--global--timing-function--100", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "100" + }, + "path": [ + "global", + "timing-function", + "100" + ] + }, + "pf-t--global--timing-function--200": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--200", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "200" + }, + "path": [ + "global", + "timing-function", + "200" + ] + }, + "pf-t--global--timing-function--300": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--300", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "300" + }, + "path": [ + "global", + "timing-function", + "300" + ] + }, + "pf-t--global--motion--duration--xs": { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.50}" + }, + "name": "pf-t--global--motion--duration--xs", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xs" + }, + "path": [ + "global", + "motion", + "duration", + "xs" + ], + "references": [ + { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + } + ] + }, + "pf-t--global--motion--duration--sm": { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + }, + "pf-t--global--motion--duration--md": { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + }, + "pf-t--global--motion--duration--lg": { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + }, + "pf-t--global--motion--duration--xl": { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + }, + "pf-t--global--motion--duration--2xl": { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + }, + "pf-t--global--motion--duration--3xl": { + "type": "number", + "value": "600ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.600}" + }, + "name": "pf-t--global--motion--duration--3xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "3xl" + }, + "path": [ + "global", + "motion", + "duration", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "600ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--duration--600", + "attributes": { + "category": "global", + "type": "duration", + "item": "600" + }, + "path": [ + "global", + "duration", + "600" + ] + } + ] + }, + "pf-t--global--motion--duration--fade--short": { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.motion.duration.sm}" + }, + "name": "pf-t--global--motion--duration--fade--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "short" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--fade--default": { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.motion.duration.md}" + }, + "name": "pf-t--global--motion--duration--fade--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "default" + ], + "references": [ + { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--fade--long": { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--fade--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "long" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-out--short": { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--slide-out--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "short" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-out--default": { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.motion.duration.xl}" + }, + "name": "pf-t--global--motion--duration--slide-out--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "default" + ], + "references": [ + { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-out--long": { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.motion.duration.2xl}" + }, + "name": "pf-t--global--motion--duration--slide-out--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "long" + ], + "references": [ + { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-in--short": { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--slide-in--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "short" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-in--default": { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.motion.duration.xl}" + }, + "name": "pf-t--global--motion--duration--slide-in--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "default" + ], + "references": [ + { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-in--long": { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.motion.duration.2xl}" + }, + "name": "pf-t--global--motion--duration--slide-in--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "long" + ], + "references": [ + { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--icon--short": { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.motion.duration.xs}" + }, + "name": "pf-t--global--motion--duration--icon--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "short" + ], + "references": [ + { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.50}" + }, + "name": "pf-t--global--motion--duration--xs", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xs" + }, + "path": [ + "global", + "motion", + "duration", + "xs" + ], + "references": [ + { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--icon--default": { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.motion.duration.sm}" + }, + "name": "pf-t--global--motion--duration--icon--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "default" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--icon--long": { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.motion.duration.md}" + }, + "name": "pf-t--global--motion--duration--icon--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "long" + ], + "references": [ + { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--motion--delay--none": { + "type": "number", + "value": "0ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.delay.100}" + }, + "name": "pf-t--global--motion--delay--none", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "none" + }, + "path": [ + "global", + "motion", + "delay", + "none" + ], + "references": [ + { + "type": "number", + "value": "0ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--delay--100", + "attributes": { + "category": "global", + "type": "delay", + "item": "100" + }, + "path": [ + "global", + "delay", + "100" + ] + } + ] + }, + "pf-t--global--motion--delay--short": { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.delay.200}" + }, + "name": "pf-t--global--motion--delay--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "short" + }, + "path": [ + "global", + "motion", + "delay", + "short" + ], + "references": [ + { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--delay--200", + "attributes": { + "category": "global", + "type": "delay", + "item": "200" + }, + "path": [ + "global", + "delay", + "200" + ] + } + ] + }, + "pf-t--global--motion--delay--default": { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.delay.300}" + }, + "name": "pf-t--global--motion--delay--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "default" + }, + "path": [ + "global", + "motion", + "delay", + "default" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--delay--300", + "attributes": { + "category": "global", + "type": "delay", + "item": "300" + }, + "path": [ + "global", + "delay", + "300" + ] + } + ] + }, + "pf-t--global--motion--delay--long": { + "type": "number", + "value": "7000ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.delay.400}" + }, + "name": "pf-t--global--motion--delay--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "long" + }, + "path": [ + "global", + "motion", + "delay", + "long" + ], + "references": [ + { + "type": "number", + "value": "7000ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 7000 + }, + "name": "pf-t--global--delay--400", + "attributes": { + "category": "global", + "type": "delay", + "item": "400" + }, + "path": [ + "global", + "delay", + "400" + ] + } + ] + }, + "pf-t--global--motion--timing-function--accelerate": { + "type": "number", + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.timing-function.100}" + }, + "name": "pf-t--global--motion--timing-function--accelerate", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "accelerate" + }, + "path": [ + "global", + "motion", + "timing-function", + "accelerate" + ], + "references": [ + { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)" + }, + "name": "pf-t--global--timing-function--100", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "100" + }, + "path": [ + "global", + "timing-function", + "100" + ] + } + ] + }, + "pf-t--global--motion--timing-function--default": { + "type": "number", + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.timing-function.200}" + }, + "name": "pf-t--global--motion--timing-function--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "default" + }, + "path": [ + "global", + "motion", + "timing-function", + "default" + ], + "references": [ + { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--200", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "200" + }, + "path": [ + "global", + "timing-function", + "200" + ] + } + ] + }, + "pf-t--global--motion--timing-function--decelerate": { + "type": "number", + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.timing-function.300}" + }, + "name": "pf-t--global--motion--timing-function--decelerate", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "decelerate" + }, + "path": [ + "global", + "motion", + "timing-function", + "decelerate" + ], + "references": [ + { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--300", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "300" + }, + "path": [ + "global", + "timing-function", + "300" + ] + } + ] + }, + "pf-t--global--dark--background--color--100": { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--dark--background--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + }, + "pf-t--global--dark--background--color--200": { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + }, + "pf-t--global--dark--background--color--300": { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + }, + "pf-t--global--dark--background--color--400": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--background--color--400", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "400" + }, + "path": [ + "global", + "dark", + "background", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--global--dark--background--color--500": { + "type": "color", + "value": "rgba(21, 21, 21, 0.8000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(21, 21, 21, 0.8000)" + }, + "name": "pf-t--global--dark--background--color--500", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "500" + }, + "path": [ + "global", + "dark", + "background", + "color", + "500" + ] + }, + "pf-t--global--dark--background--color--600": { + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)" + }, + "name": "pf-t--global--dark--background--color--600", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "600" + }, + "path": [ + "global", + "dark", + "background", + "color", + "600" + ] + }, + "pf-t--global--dark--background--color--highlight--100": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--background--color--highlight--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "highlight" + }, + "path": [ + "global", + "dark", + "background", + "color", + "highlight", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + }, + "pf-t--global--dark--background--color--highlight--200": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--background--color--highlight--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "highlight" + }, + "path": [ + "global", + "dark", + "background", + "color", + "highlight", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--brand--100": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--brand--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--brand--200": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--brand--300": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--brand--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--disabled--100": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--color--disabled--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "100" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--dark--color--disabled--200": { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--dark--color--disabled--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--global--dark--color--disabled--300": { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--color--disabled--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + }, + "pf-t--global--dark--color--favorite--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--favorite--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--favorite--200": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--favorite--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--severity--undefined--100": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--color--severity--undefined--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "undefined" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "undefined", + "100" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--dark--color--severity--none--100": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--severity--none--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "none" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "none", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--severity--minor--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--color--severity--minor--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "minor" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "minor", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--severity--moderate--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--severity--moderate--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "moderate" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "moderate", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--severity--important--100": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--global--dark--color--severity--important--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "important" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "important", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + }, + "pf-t--global--dark--color--severity--critical--100": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--severity--critical--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "critical" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "critical", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + }, + "pf-t--global--dark--color--status--success--100": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--dark--color--status--success--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + }, + "pf-t--global--dark--color--status--success--200": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--status--warning--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--status--warning--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--status--warning--200": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--status--danger--100": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--status--danger--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + }, + "pf-t--global--dark--color--status--danger--200": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + }, + "pf-t--global--dark--color--status--danger--250": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--color--status--danger--250", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "250" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--status--danger--300": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--status--danger--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "300" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--status--info--100": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--status--info--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--status--info--200": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--status--custom--100": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--dark--color--status--custom--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + }, + "pf-t--global--dark--color--status--custom--200": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--red--100": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--red--200": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--red--300": { + "type": "color", + "value": "#fce3e3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "300" + ], + "references": [ + { + "type": "color", + "value": "#fce3e3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fce3e3" + }, + "name": "pf-t--color--red--10", + "attributes": { + "category": "color", + "type": "red", + "item": "10" + }, + "path": [ + "color", + "red", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--orangered--100": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--orangered--200": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--orangered--300": { + "type": "color", + "value": "#ffe3d9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffe3d9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe3d9" + }, + "name": "pf-t--color--red-orange--10", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "10" + }, + "path": [ + "color", + "red-orange", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--orange--100": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--orange--200": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--orange--300": { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--gold--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--gold--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gold" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gold", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--gold--200": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gold--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gold" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gold", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--gold--300": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--gold--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gold" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gold", + "300" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--green--100": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--green--200": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--green--300": { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--cyan--100": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--cyan--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "cyan" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "cyan", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--cyan--200": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--cyan--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "cyan" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "cyan", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--cyan--300": { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--cyan--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "cyan" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "cyan", + "300" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--blue--100": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--blue--200": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--blue--300": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--purple--100": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--purple--200": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--purple--300": { + "type": "color", + "value": "#ece6ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ece6ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ece6ff" + }, + "name": "pf-t--color--purple--10", + "attributes": { + "category": "color", + "type": "purple", + "item": "10" + }, + "path": [ + "color", + "purple", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--gray--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--gray--200": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--gray--300": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--global--dark--border--color--100": { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--dark--border--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "border", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "border", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--global--dark--border--color--200": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--border--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "border", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "border", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--dark--text--color--100": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--text--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--global--dark--text--color--200": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--text--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "text", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--dark--text--color--300": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + }, + "pf-t--global--dark--text--color--400": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--text--color--400", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "400" + }, + "path": [ + "global", + "dark", + "text", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + }, + "pf-t--global--dark--text--color--link--100": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--text--color--link--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + }, + "pf-t--global--dark--text--color--link--200": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--text--color--link--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + }, + "pf-t--global--dark--text--color--link--300": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--text--color--link--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + }, + "pf-t--global--dark--icon--color--100": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--icon--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--global--dark--icon--color--200": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--icon--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--dark--icon--color--300": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + }, + "pf-t--global--dark--box-shadow--color--100": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)" + }, + "name": "pf-t--global--dark--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "box-shadow", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "box-shadow", + "color", + "100" + ] + }, + "pf-t--chart--color--blue--100": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + }, + "pf-t--chart--color--blue--200": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + }, + "pf-t--chart--color--blue--300": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + }, + "pf-t--chart--color--blue--400": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + }, + "pf-t--chart--color--blue--500": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + }, + "pf-t--chart--color--green--100": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + }, + "pf-t--chart--color--green--200": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + }, + "pf-t--chart--color--green--300": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + }, + "pf-t--chart--color--green--400": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + }, + "pf-t--chart--color--green--500": { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.10}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + }, + "pf-t--chart--color--teal--100": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + }, + "pf-t--chart--color--teal--200": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + }, + "pf-t--chart--color--teal--300": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + }, + "pf-t--chart--color--teal--400": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + }, + "pf-t--chart--color--teal--500": { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.10}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + }, + "pf-t--chart--color--purple--100": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + }, + "pf-t--chart--color--purple--200": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + }, + "pf-t--chart--color--purple--300": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + }, + "pf-t--chart--color--purple--400": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + }, + "pf-t--chart--color--purple--500": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + }, + "pf-t--chart--color--yellow--100": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + }, + "pf-t--chart--color--yellow--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--chart--color--yellow--300": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--chart--color--yellow--400": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + }, + "pf-t--chart--color--yellow--500": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.10}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + }, + "pf-t--chart--color--orange--100": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + }, + "pf-t--chart--color--orange--200": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + }, + "pf-t--chart--color--orange--300": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + }, + "pf-t--chart--color--orange--400": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + }, + "pf-t--chart--color--orange--500": { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.10}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + }, + "pf-t--chart--color--red-orange--100": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--chart--color--red-orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "red-orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + }, + "pf-t--chart--color--red-orange--200": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--chart--color--red-orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "red-orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + }, + "pf-t--chart--color--red-orange--300": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--chart--color--red-orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "red-orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + }, + "pf-t--chart--color--red-orange--400": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--chart--color--red-orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "red-orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + }, + "pf-t--chart--color--red-orange--500": { + "type": "color", + "value": "#ffe3d9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.10}" + }, + "name": "pf-t--chart--color--red-orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "red-orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ffe3d9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe3d9" + }, + "name": "pf-t--color--red-orange--10", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "10" + }, + "path": [ + "color", + "red-orange", + "10" + ] + } + ] + }, + "pf-t--chart--color--black--100": { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--chart--color--black--200": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--chart--color--black--300": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--chart--color--black--400": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--chart--color--black--500": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--chart--global--BorderWidth--xs": { + "type": "number", + "value": 1, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--chart--global--BorderWidth--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "xs" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "xs" + ] + }, + "pf-t--chart--global--BorderWidth--sm": { + "type": "number", + "value": 2, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--chart--global--BorderWidth--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "sm" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "sm" + ] + }, + "pf-t--chart--global--BorderWidth--lg": { + "type": "number", + "value": 8, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--chart--global--BorderWidth--lg", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "lg" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "lg" + ] + }, + "pf-t--chart--global--stroke--width--xs": { + "type": "number", + "value": 1, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--chart--global--stroke--width--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke", + "subitem": "width", + "state": "xs" + }, + "path": [ + "chart", + "global", + "stroke", + "width", + "xs" + ] + }, + "pf-t--chart--global--stroke--width--sm": { + "type": "number", + "value": 2, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--chart--global--stroke--width--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke", + "subitem": "width", + "state": "sm" + }, + "path": [ + "chart", + "global", + "stroke", + "width", + "sm" + ] + }, + "pf-t--chart--global--fill--color--100": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--chart--global--fill--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + }, + "pf-t--chart--global--fill--color--200": { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--global--fill--color--200", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "200" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--chart--global--fill--color--300": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--global--fill--color--300", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "300" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--chart--global--fill--color--400": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--global--fill--color--400", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "400" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--chart--global--fill--color--500": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--global--fill--color--500", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "500" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--chart--global--fill--color--700": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--global--fill--color--700", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "700" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "700" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--chart--global--fill--color--900": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--chart--global--fill--color--900", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "900" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "900" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--chart--global--fill--color--white": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--chart--global--fill--color--white", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "white" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "white" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--chart--global--warning--color--100": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--global--warning--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "warning", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "warning", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + }, + "pf-t--chart--global--warning--color--200": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--global--warning--color--200", + "attributes": { + "category": "chart", + "type": "global", + "item": "warning", + "subitem": "color", + "state": "200" + }, + "path": [ + "chart", + "global", + "warning", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--chart--global--success--color--100": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--global--success--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "success", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "success", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + }, + "pf-t--chart--global--danger--color--100": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--chart--global--danger--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "danger", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "danger", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + }, + "pf-t--chart--global--FontSize--xs": { + "type": "number", + "value": 12, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--chart--global--FontSize--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "xs" + }, + "path": [ + "chart", + "global", + "FontSize", + "xs" + ] + }, + "pf-t--chart--global--FontSize--sm": { + "type": "number", + "value": 14, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--chart--global--FontSize--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "sm" + }, + "path": [ + "chart", + "global", + "FontSize", + "sm" + ] + }, + "pf-t--chart--global--FontSize--lg": { + "type": "number", + "value": 18, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--chart--global--FontSize--lg", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "lg" + }, + "path": [ + "chart", + "global", + "FontSize", + "lg" + ] + }, + "pf-t--chart--global--FontSize--2xl": { + "type": "number", + "value": 22, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--chart--global--FontSize--2xl", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "2xl" + }, + "path": [ + "chart", + "global", + "FontSize", + "2xl" + ] + }, + "pf-t--chart--global--letter-spacing": { + "type": "string", + "value": "normal", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "string", + "value": "normal" + }, + "name": "pf-t--chart--global--letter-spacing", + "attributes": { + "category": "chart", + "type": "global", + "item": "letter-spacing" + }, + "path": [ + "chart", + "global", + "letter-spacing" + ] + }, + "pf-t--chart--global--stroke-line-cap": { + "type": "string", + "value": "round", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "string", + "value": "round" + }, + "name": "pf-t--chart--global--stroke-line-cap", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke-line-cap" + }, + "path": [ + "chart", + "global", + "stroke-line-cap" + ] + }, + "pf-t--chart--global--label--padding": { + "type": "number", + "value": 10, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 10 + }, + "name": "pf-t--chart--global--label--padding", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "padding" + }, + "path": [ + "chart", + "global", + "label", + "padding" + ] + }, + "pf-t--chart--global--label--margin": { + "type": "number", + "value": 8, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--chart--global--label--margin", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "margin" + }, + "path": [ + "chart", + "global", + "label", + "margin" + ] + }, + "pf-t--chart--global--label--stroke": { + "width": { + "type": "number", + "value": 0, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true + }, + "type": "string", + "value": "transparent", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "width": { + "type": "number", + "value": 0, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true + }, + "type": "string", + "value": "transparent" + }, + "name": "pf-t--chart--global--label--stroke", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "stroke" + }, + "path": [ + "chart", + "global", + "label", + "stroke" + ] + }, + "pf-t--chart--global--label--text-anchor": { + "type": "string", + "value": "middle", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "string", + "value": "middle" + }, + "name": "pf-t--chart--global--label--text-anchor", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "text-anchor" + }, + "path": [ + "chart", + "global", + "label", + "text-anchor" + ] + }, + "pf-t--chart--global--label--fill": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--chart--global--label--fill", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "fill" + }, + "path": [ + "chart", + "global", + "label", + "fill" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--chart--global--layout--padding": { + "type": "number", + "value": 50, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--chart--global--layout--padding", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "padding" + }, + "path": [ + "chart", + "global", + "layout", + "padding" + ] + }, + "pf-t--chart--global--layout--height": { + "type": "number", + "value": 300, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--chart--global--layout--height", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "height" + }, + "path": [ + "chart", + "global", + "layout", + "height" + ] + }, + "pf-t--chart--global--layout--width": { + "type": "number", + "value": 450, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 450 + }, + "name": "pf-t--chart--global--layout--width", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "width" + }, + "path": [ + "chart", + "global", + "layout", + "width" + ] + }, + "pf-t--chart--global--stroke-line-join": { + "type": "string", + "value": "round", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "string", + "value": "round" + }, + "name": "pf-t--chart--global--stroke-line-join", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke-line-join" + }, + "path": [ + "chart", + "global", + "stroke-line-join" + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--100": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--200": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--300": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--400": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--500": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--100": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--200": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--300": { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.10}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--400": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--500": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--200": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--300": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.10}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--400": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--500": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.300}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--200": { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.100}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--300": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.500}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--400": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.200}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--500": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.400}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--100": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--200": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--300": { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.10}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--400": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--500": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--100": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.300}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--200": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.100}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--300": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.500}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--400": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.200}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--500": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.400}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--100": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--200": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--300": { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.10}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--400": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--500": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "600" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "700" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "800" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "900" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1000" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1100" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1200" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300": { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1300" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.10}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1400" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500": { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1500" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.10}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1600" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700": { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1700" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.10}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1800" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1900" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.10}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2000" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2100" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2300" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2400" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2500" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "600" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "700" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "800" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "900" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1000" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1300" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1400" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1500" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1600" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.10}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1700" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1800" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1900" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000": { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2000" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.10}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100": { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2200" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400": { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2400" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.10}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2500" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600": { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2600" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.10}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2700" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2800" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2900" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3000" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3100" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3300" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3400" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3500" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--color--white": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + }, + "pf-t--color--gray--10": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + }, + "pf-t--color--gray--20": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + }, + "pf-t--color--gray--30": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + }, + "pf-t--color--gray--40": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + }, + "pf-t--color--gray--50": { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + }, + "pf-t--color--gray--60": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + }, + "pf-t--color--gray--70": { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + }, + "pf-t--color--gray--80": { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + }, + "pf-t--color--gray--90": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + }, + "pf-t--color--gray--95": { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + }, + "pf-t--color--black": { + "type": "color", + "value": "#000000", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#000000" + }, + "name": "pf-t--color--black", + "attributes": { + "category": "color", + "type": "black" + }, + "path": [ + "color", + "black" + ] + }, + "pf-t--color--blue--10": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + }, + "pf-t--color--blue--20": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + }, + "pf-t--color--blue--30": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + }, + "pf-t--color--blue--40": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + }, + "pf-t--color--blue--50": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + }, + "pf-t--color--blue--60": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + }, + "pf-t--color--blue--70": { + "type": "color", + "value": "#003366", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + }, + "pf-t--color--teal--10": { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + }, + "pf-t--color--teal--20": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + }, + "pf-t--color--teal--30": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + }, + "pf-t--color--teal--40": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + }, + "pf-t--color--teal--50": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + }, + "pf-t--color--teal--60": { + "type": "color", + "value": "#147878", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + }, + "pf-t--color--teal--70": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + }, + "pf-t--color--yellow--10": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + }, + "pf-t--color--yellow--20": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + }, + "pf-t--color--yellow--30": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + }, + "pf-t--color--yellow--40": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + }, + "pf-t--color--yellow--50": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + }, + "pf-t--color--yellow--60": { + "type": "color", + "value": "#96640f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + }, + "pf-t--color--yellow--70": { + "type": "color", + "value": "#73480b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#73480b" + }, + "name": "pf-t--color--yellow--70", + "attributes": { + "category": "color", + "type": "yellow", + "item": "70" + }, + "path": [ + "color", + "yellow", + "70" + ] + }, + "pf-t--color--green--10": { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + }, + "pf-t--color--green--20": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + }, + "pf-t--color--green--30": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + }, + "pf-t--color--green--40": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + }, + "pf-t--color--green--50": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + }, + "pf-t--color--green--60": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + }, + "pf-t--color--green--70": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + }, + "pf-t--color--orange--10": { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + }, + "pf-t--color--orange--20": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + }, + "pf-t--color--orange--30": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + }, + "pf-t--color--orange--40": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + }, + "pf-t--color--orange--50": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + }, + "pf-t--color--orange--60": { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + }, + "pf-t--color--orange--70": { + "type": "color", + "value": "#732e00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + }, + "pf-t--color--red-orange--10": { + "type": "color", + "value": "#ffe3d9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe3d9" + }, + "name": "pf-t--color--red-orange--10", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "10" + }, + "path": [ + "color", + "red-orange", + "10" + ] + }, + "pf-t--color--red-orange--20": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + }, + "pf-t--color--red-orange--30": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + }, + "pf-t--color--red-orange--40": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + }, + "pf-t--color--red-orange--50": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + }, + "pf-t--color--red-orange--60": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + }, + "pf-t--color--red-orange--70": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + }, + "pf-t--color--purple--10": { + "type": "color", + "value": "#ece6ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ece6ff" + }, + "name": "pf-t--color--purple--10", + "attributes": { + "category": "color", + "type": "purple", + "item": "10" + }, + "path": [ + "color", + "purple", + "10" + ] + }, + "pf-t--color--purple--20": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + }, + "pf-t--color--purple--30": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + }, + "pf-t--color--purple--40": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + }, + "pf-t--color--purple--50": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + }, + "pf-t--color--purple--60": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + }, + "pf-t--color--purple--70": { + "type": "color", + "value": "#21134d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#21134d" + }, + "name": "pf-t--color--purple--70", + "attributes": { + "category": "color", + "type": "purple", + "item": "70" + }, + "path": [ + "color", + "purple", + "70" + ] + }, + "pf-t--color--red--10": { + "type": "color", + "value": "#fce3e3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fce3e3" + }, + "name": "pf-t--color--red--10", + "attributes": { + "category": "color", + "type": "red", + "item": "10" + }, + "path": [ + "color", + "red", + "10" + ] + }, + "pf-t--color--red--20": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + }, + "pf-t--color--red--30": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + }, + "pf-t--color--red--40": { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + }, + "pf-t--color--red--50": { + "type": "color", + "value": "#ee0000", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ee0000" + }, + "name": "pf-t--color--red--50", + "attributes": { + "category": "color", + "type": "red", + "item": "50" + }, + "path": [ + "color", + "red", + "50" + ] + }, + "pf-t--color--red--60": { + "type": "color", + "value": "#a60000", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a60000" + }, + "name": "pf-t--color--red--60", + "attributes": { + "category": "color", + "type": "red", + "item": "60" + }, + "path": [ + "color", + "red", + "60" + ] + }, + "pf-t--color--red--70": { + "type": "color", + "value": "#5f0000", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5f0000" + }, + "name": "pf-t--color--red--70", + "attributes": { + "category": "color", + "type": "red", + "item": "70" + }, + "path": [ + "color", + "red", + "70" + ] + } +} \ No newline at end of file diff --git a/packages/module/patternfly-docs/content/all-tokens-default.json b/packages/module/patternfly-docs/content/all-tokens-default.json new file mode 100644 index 0000000..28ac4a7 --- /dev/null +++ b/packages/module/patternfly-docs/content/all-tokens-default.json @@ -0,0 +1,53197 @@ +{ + "pf-t--global--spacer--100": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + }, + "pf-t--global--spacer--200": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + }, + "pf-t--global--spacer--300": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + }, + "pf-t--global--spacer--400": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + }, + "pf-t--global--spacer--500": { + "type": "number", + "value": "32px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + }, + "pf-t--global--spacer--600": { + "type": "number", + "value": "48px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + }, + "pf-t--global--spacer--700": { + "type": "number", + "value": "64px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 64 + }, + "name": "pf-t--global--spacer--700", + "attributes": { + "category": "global", + "type": "spacer", + "item": "700" + }, + "path": [ + "global", + "spacer", + "700" + ] + }, + "pf-t--global--spacer--800": { + "type": "number", + "value": "80px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 80 + }, + "name": "pf-t--global--spacer--800", + "attributes": { + "category": "global", + "type": "spacer", + "item": "800" + }, + "path": [ + "global", + "spacer", + "800" + ] + }, + "pf-t--global--spacer--xs": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + }, + "pf-t--global--spacer--sm": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + }, + "pf-t--global--spacer--md": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + }, + "pf-t--global--spacer--lg": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + }, + "pf-t--global--spacer--xl": { + "type": "number", + "value": "32px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.500}" + }, + "name": "pf-t--global--spacer--xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xl" + }, + "path": [ + "global", + "spacer", + "xl" + ], + "references": [ + { + "type": "number", + "value": "32px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + } + ] + }, + "pf-t--global--spacer--2xl": { + "type": "number", + "value": "48px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.600}" + }, + "name": "pf-t--global--spacer--2xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "2xl" + }, + "path": [ + "global", + "spacer", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "48px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + } + ] + }, + "pf-t--global--spacer--3xl": { + "type": "number", + "value": "64px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.700}" + }, + "name": "pf-t--global--spacer--3xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "3xl" + }, + "path": [ + "global", + "spacer", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "64px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 64 + }, + "name": "pf-t--global--spacer--700", + "attributes": { + "category": "global", + "type": "spacer", + "item": "700" + }, + "path": [ + "global", + "spacer", + "700" + ] + } + ] + }, + "pf-t--global--spacer--4xl": { + "type": "number", + "value": "80px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.800}" + }, + "name": "pf-t--global--spacer--4xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "4xl" + }, + "path": [ + "global", + "spacer", + "4xl" + ], + "references": [ + { + "type": "number", + "value": "80px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 80 + }, + "name": "pf-t--global--spacer--800", + "attributes": { + "category": "global", + "type": "spacer", + "item": "800" + }, + "path": [ + "global", + "spacer", + "800" + ] + } + ] + }, + "pf-t--global--spacer--control--vertical--default": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--vertical--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "default" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "default" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--vertical--compact": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--control--vertical--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "compact" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + }, + "pf-t--global--spacer--control--vertical--plain": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--vertical--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "plain" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--horizontal--default": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--control--horizontal--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "default" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "default" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--horizontal--compact": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--control--horizontal--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "compact" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + }, + "pf-t--global--spacer--control--horizontal--plain": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--horizontal--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "plain" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--text-to-element--default": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--gap--text-to-element--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "text-to-element", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "text-to-element", + "default" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--control-to-control--default": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--gap--control-to-control--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "control-to-control", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "control-to-control", + "default" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--group--vertical": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--gap--group--vertical", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group", + "state": "vertical" + }, + "path": [ + "global", + "spacer", + "gap", + "group", + "vertical" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--group--horizontal": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--gap--group--horizontal", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group", + "state": "horizontal" + }, + "path": [ + "global", + "spacer", + "gap", + "group", + "horizontal" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--group-to-group--horizontal": { + "type": "number", + "value": "48px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.2xl}" + }, + "name": "pf-t--global--spacer--gap--group-to-group--horizontal", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group-to-group", + "state": "horizontal" + }, + "path": [ + "global", + "spacer", + "gap", + "group-to-group", + "horizontal" + ], + "references": [ + { + "type": "number", + "value": "48px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.600}" + }, + "name": "pf-t--global--spacer--2xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "2xl" + }, + "path": [ + "global", + "spacer", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "48px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--group-to-group--vertical": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--gap--group-to-group--vertical", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group-to-group", + "state": "vertical" + }, + "path": [ + "global", + "spacer", + "gap", + "group-to-group", + "vertical" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--action-to-action--default": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--gap--action-to-action--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "action-to-action", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "action-to-action", + "default" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--action-to-action--plain": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--gap--action-to-action--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "action-to-action", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "gap", + "action-to-action", + "plain" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--vertical--default": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--action--vertical--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "vertical", + "state": "default" + }, + "path": [ + "global", + "spacer", + "action", + "vertical", + "default" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--vertical--plain": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--action--vertical--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "vertical", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "action", + "vertical", + "plain" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--horizontal--default": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--action--horizontal--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "default" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "default" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--horizontal--plain": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--action--horizontal--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "plain" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--button--horizontal--compact": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--button--horizontal--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "button", + "subitem": "horizontal", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "button", + "horizontal", + "compact" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + }, + "pf-t--global--spacer--button--vertical--compact": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--button--vertical--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "button", + "subitem": "vertical", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "button", + "vertical", + "compact" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + }, + "pf-t--global--icon--size--100": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--icon--size--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "size", + "100" + ] + }, + "pf-t--global--icon--size--200": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--icon--size--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "size", + "200" + ] + }, + "pf-t--global--icon--size--250": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--icon--size--250", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "250" + }, + "path": [ + "global", + "icon", + "size", + "250" + ] + }, + "pf-t--global--icon--size--300": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--icon--size--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "size", + "300" + ] + }, + "pf-t--global--icon--size--400": { + "type": "number", + "value": "56px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 56 + }, + "name": "pf-t--global--icon--size--400", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "icon", + "size", + "400" + ] + }, + "pf-t--global--icon--size--500": { + "type": "number", + "value": "96px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 96 + }, + "name": "pf-t--global--icon--size--500", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "icon", + "size", + "500" + ] + }, + "pf-t--global--icon--size--sm": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.icon.size.100}" + }, + "name": "pf-t--global--icon--size--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "icon", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--icon--size--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "size", + "100" + ] + } + ] + }, + "pf-t--global--icon--size--md": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.icon.size.200}" + }, + "name": "pf-t--global--icon--size--md", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "icon", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--icon--size--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "size", + "200" + ] + } + ] + }, + "pf-t--global--icon--size--lg": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.icon.size.250}" + }, + "name": "pf-t--global--icon--size--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "icon", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--icon--size--250", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "250" + }, + "path": [ + "global", + "icon", + "size", + "250" + ] + } + ] + }, + "pf-t--global--icon--size--xl": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.icon.size.300}" + }, + "name": "pf-t--global--icon--size--xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "icon", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--icon--size--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "size", + "300" + ] + } + ] + }, + "pf-t--global--icon--size--2xl": { + "type": "number", + "value": "56px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.icon.size.400}" + }, + "name": "pf-t--global--icon--size--2xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "icon", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "56px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 56 + }, + "name": "pf-t--global--icon--size--400", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "icon", + "size", + "400" + ] + } + ] + }, + "pf-t--global--icon--size--3xl": { + "type": "number", + "value": "96px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.icon.size.500}" + }, + "name": "pf-t--global--icon--size--3xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "icon", + "size", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "96px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 96 + }, + "name": "pf-t--global--icon--size--500", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "icon", + "size", + "500" + ] + } + ] + }, + "pf-t--global--icon--size--font--body--sm": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.body.sm}" + }, + "name": "pf-t--global--icon--size--font--body--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "sm" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--font--size--body--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "sm" + }, + "path": [ + "global", + "font", + "size", + "body", + "sm" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--body--default": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.body.default}" + }, + "name": "pf-t--global--icon--size--font--body--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "default" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--font--size--body--default", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "default" + }, + "path": [ + "global", + "font", + "size", + "body", + "default" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--body--lg": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.body.lg}" + }, + "name": "pf-t--global--icon--size--font--body--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "lg" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--body--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "lg" + }, + "path": [ + "global", + "font", + "size", + "body", + "lg" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h1": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.heading.h1}" + }, + "name": "pf-t--global--icon--size--font--heading--h1", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h1" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--font--size--heading--h1", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h1" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h1" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h2": { + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.heading.h2}" + }, + "name": "pf-t--global--icon--size--font--heading--h2", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h2" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--font--size--heading--h2", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h2" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h2" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h3": { + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.heading.h3}" + }, + "name": "pf-t--global--icon--size--font--heading--h3", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h3" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--font--size--heading--h3", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h3" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h3" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h4": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.heading.h4}" + }, + "name": "pf-t--global--icon--size--font--heading--h4", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h4" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h4", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h4" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h4" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h5": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.heading.h5}" + }, + "name": "pf-t--global--icon--size--font--heading--h5", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h5" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h5", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h5" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h5" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h6": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.heading.h6}" + }, + "name": "pf-t--global--icon--size--font--heading--h6", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h6" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h6", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h6" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h6" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--xs": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--icon--size--font--xs", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "xs" + }, + "path": [ + "global", + "icon", + "size", + "font", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--sm": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--icon--size--font--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "sm" + }, + "path": [ + "global", + "icon", + "size", + "font", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--md": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--icon--size--font--md", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "md" + }, + "path": [ + "global", + "icon", + "size", + "font", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--lg": { + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--icon--size--font--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "lg" + }, + "path": [ + "global", + "icon", + "size", + "font", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--xl": { + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--icon--size--font--xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--2xl": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--icon--size--font--2xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "2xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--3xl": { + "type": "number", + "value": "28px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.3xl}" + }, + "name": "pf-t--global--icon--size--font--3xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "3xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "28px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.700}" + }, + "name": "pf-t--global--font--size--3xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "font", + "size", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "28px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--4xl": { + "type": "number", + "value": "36px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.4xl}" + }, + "name": "pf-t--global--icon--size--font--4xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "4xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "4xl" + ], + "references": [ + { + "type": "number", + "value": "36px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.800}" + }, + "name": "pf-t--global--font--size--4xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "4xl" + }, + "path": [ + "global", + "font", + "size", + "4xl" + ], + "references": [ + { + "type": "number", + "value": "36px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--100": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + }, + "pf-t--global--icon--color--200": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--icon--color--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--global--icon--color--300": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--global--icon--color--brand--default": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--icon--color--brand--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--brand--hover": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--icon--color--brand--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--brand--clicked": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--icon--color--brand--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--on-brand--default": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--on-brand--hover": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--on-brand--clicked": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--favorite--default": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.favorite.default}" + }, + "name": "pf-t--global--icon--color--favorite--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.favorite.100}" + }, + "name": "pf-t--global--color--favorite--default", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "default" + }, + "path": [ + "global", + "color", + "favorite", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--favorite--100", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "100" + }, + "path": [ + "global", + "color", + "favorite", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--favorite--hover": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.favorite.hover}" + }, + "name": "pf-t--global--icon--color--favorite--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "favorite", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--favorite--clicked": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.favorite.clicked}" + }, + "name": "pf-t--global--icon--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "favorite", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--success--default": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--icon--color--status--success--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--success--hover": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--icon--color--status--success--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--success--clicked": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--icon--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-success--default": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-success--hover": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-success--clicked": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--warning--default": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.200}" + }, + "name": "pf-t--global--icon--color--status--warning--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--warning--hover": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--icon--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--warning--clicked": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--icon--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-warning--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--status--on-warning--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-warning--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--status--on-warning--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-warning--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--status--on-warning--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--danger--default": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--icon--color--status--danger--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--danger--hover": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--icon--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--danger--clicked": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--icon--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-danger--default": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-danger--hover": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-danger--clicked": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--info--default": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--icon--color--status--info--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--info--hover": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--icon--color--status--info--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--info--clicked": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--icon--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-info--default": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-info--hover": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-info--clicked": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--custom--default": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--icon--color--status--custom--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--custom--hover": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--icon--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--custom--clicked": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--icon--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-custom--default": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-custom--hover": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-custom--clicked": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-default--default": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-default--hover": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-default--clicked": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-attention--default": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-attention--hover": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-attention--clicked": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--regular": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--subtle": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.200}" + }, + "name": "pf-t--global--icon--color--subtle", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "icon", + "color", + "subtle" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--icon--color--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--inverse": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--disabled": { + "description": "for use without disabled background color", + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "for use without disabled background color", + "type": "color", + "value": "{global.color.disabled.200}" + }, + "name": "pf-t--global--icon--color--disabled", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "icon", + "color", + "disabled" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--disabled--200", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "200" + }, + "path": [ + "global", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--on-disabled": { + "description": "pair with disabled background color", + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "pair with disabled background color", + "type": "color", + "value": "{global.color.disabled.300}" + }, + "name": "pf-t--global--icon--color--on-disabled", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-disabled" + }, + "path": [ + "global", + "icon", + "color", + "on-disabled" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--color--disabled--300", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "300" + }, + "path": [ + "global", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--undefined--default": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.severity.undefined.100}" + }, + "name": "pf-t--global--icon--color--severity--undefined--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "undefined" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "undefined", + "default" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--severity--undefined--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "undefined", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "undefined", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--none--default": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.severity.none.100}" + }, + "name": "pf-t--global--icon--color--severity--none--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "none" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "none", + "default" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--severity--none--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "none", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "none", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--minor--default": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.severity.minor.100}" + }, + "name": "pf-t--global--icon--color--severity--minor--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "minor" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "minor", + "default" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--color--severity--minor--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "minor", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "minor", + "100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--moderate--default": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.severity.moderate.100}" + }, + "name": "pf-t--global--icon--color--severity--moderate--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "moderate" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "moderate", + "default" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--severity--moderate--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "moderate", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "moderate", + "100" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--important--default": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.severity.important.100}" + }, + "name": "pf-t--global--icon--color--severity--important--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "important" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "important", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--global--color--severity--important--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "important", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "important", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--critical--default": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.severity.critical.100}" + }, + "name": "pf-t--global--icon--color--severity--critical--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "critical" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "critical", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--severity--critical--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "critical", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "critical", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-red--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-red--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-red--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orangered--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orangered--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orangered--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orange--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orange--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orange--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-yellow--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-yellow--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-yellow--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-green--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-green--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-green--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-teal--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-teal--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-teal--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-blue--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-blue--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-blue--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-purple--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-purple--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-purple--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-gray--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-gray--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-gray--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--width--100": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + }, + "pf-t--global--border--width--200": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + }, + "pf-t--global--border--width--300": { + "type": "number", + "value": "3px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 3 + }, + "name": "pf-t--global--border--width--300", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "300" + }, + "path": [ + "global", + "border", + "width", + "300" + ] + }, + "pf-t--global--border--width--regular": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--regular", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "regular" + }, + "path": [ + "global", + "border", + "width", + "regular" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--divider--default": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "divider", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--divider--hover": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "divider", + "hover" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--divider--clicked": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "divider", + "clicked" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--strong": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--strong", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "strong" + }, + "path": [ + "global", + "border", + "width", + "strong" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--extra-strong": { + "type": "number", + "value": "3px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.300}" + }, + "name": "pf-t--global--border--width--extra-strong", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "extra-strong" + }, + "path": [ + "global", + "border", + "width", + "extra-strong" + ], + "references": [ + { + "type": "number", + "value": "3px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 3 + }, + "name": "pf-t--global--border--width--300", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "300" + }, + "path": [ + "global", + "border", + "width", + "300" + ] + } + ] + }, + "pf-t--global--border--width--box--default": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "box", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--box--hover": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "box", + "hover" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--box--clicked": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--box--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "box", + "clicked" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--box--status--default": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--box--status--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "status" + }, + "path": [ + "global", + "border", + "width", + "box", + "status", + "default" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--box--status--read": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--status--read", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "status" + }, + "path": [ + "global", + "border", + "width", + "box", + "status", + "read" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--button--default": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--button--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "button", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "button", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--button--hover": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--button--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "button", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "button", + "hover" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--button--clicked": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--button--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "button", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "button", + "clicked" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--control--default": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--control--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "control", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--control--hover": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--control--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "control", + "hover" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--control--clicked": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--control--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "control", + "clicked" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--radius--0": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--border--radius--0", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "0" + }, + "path": [ + "global", + "border", + "radius", + "0" + ] + }, + "pf-t--global--border--radius--100": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--border--radius--100", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "100" + }, + "path": [ + "global", + "border", + "radius", + "100" + ] + }, + "pf-t--global--border--radius--200": { + "type": "number", + "value": "6px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 6 + }, + "name": "pf-t--global--border--radius--200", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "200" + }, + "path": [ + "global", + "border", + "radius", + "200" + ] + }, + "pf-t--global--border--radius--300": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--border--radius--300", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "300" + }, + "path": [ + "global", + "border", + "radius", + "300" + ] + }, + "pf-t--global--border--radius--400": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--border--radius--400", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "400" + }, + "path": [ + "global", + "border", + "radius", + "400" + ] + }, + "pf-t--global--border--radius--500": { + "type": "number", + "value": "999px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 999 + }, + "name": "pf-t--global--border--radius--500", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "500" + }, + "path": [ + "global", + "border", + "radius", + "500" + ] + }, + "pf-t--global--border--radius--sharp": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.radius.0}" + }, + "name": "pf-t--global--border--radius--sharp", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "sharp" + }, + "path": [ + "global", + "border", + "radius", + "sharp" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--border--radius--0", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "0" + }, + "path": [ + "global", + "border", + "radius", + "0" + ] + } + ] + }, + "pf-t--global--border--radius--tiny": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.radius.100}" + }, + "name": "pf-t--global--border--radius--tiny", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "tiny" + }, + "path": [ + "global", + "border", + "radius", + "tiny" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--border--radius--100", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "100" + }, + "path": [ + "global", + "border", + "radius", + "100" + ] + } + ] + }, + "pf-t--global--border--radius--small": { + "type": "number", + "value": "6px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.radius.200}" + }, + "name": "pf-t--global--border--radius--small", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "small" + }, + "path": [ + "global", + "border", + "radius", + "small" + ], + "references": [ + { + "type": "number", + "value": "6px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 6 + }, + "name": "pf-t--global--border--radius--200", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "200" + }, + "path": [ + "global", + "border", + "radius", + "200" + ] + } + ] + }, + "pf-t--global--border--radius--medium": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.radius.300}" + }, + "name": "pf-t--global--border--radius--medium", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "medium" + }, + "path": [ + "global", + "border", + "radius", + "medium" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--border--radius--300", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "300" + }, + "path": [ + "global", + "border", + "radius", + "300" + ] + } + ] + }, + "pf-t--global--border--radius--large": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.radius.400}" + }, + "name": "pf-t--global--border--radius--large", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "large" + }, + "path": [ + "global", + "border", + "radius", + "large" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--border--radius--400", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "400" + }, + "path": [ + "global", + "border", + "radius", + "400" + ] + } + ] + }, + "pf-t--global--border--radius--pill": { + "type": "number", + "value": "999px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.border.radius.500}" + }, + "name": "pf-t--global--border--radius--pill", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "pill" + }, + "path": [ + "global", + "border", + "radius", + "pill" + ], + "references": [ + { + "type": "number", + "value": "999px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 999 + }, + "name": "pf-t--global--border--radius--500", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "500" + }, + "path": [ + "global", + "border", + "radius", + "500" + ] + } + ] + }, + "pf-t--global--border--color--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--border--color--100", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "border", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--border--color--200": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--border--color--200", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "border", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--border--color--300": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--border--color--300", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "border", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--global--border--color--brand--default": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--border--color--brand--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "border", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--brand--hover": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--border--color--brand--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "border", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--brand--clicked": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--border--color--brand--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "border", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--success--default": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--border--color--status--success--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--success--hover": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--border--color--status--success--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--success--clicked": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--border--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--warning--default": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.200}" + }, + "name": "pf-t--global--border--color--status--warning--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--warning--hover": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--border--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--warning--clicked": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--border--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--danger--default": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--border--color--status--danger--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--danger--hover": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--border--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--danger--clicked": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--border--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--info--default": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--border--color--status--info--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--info--hover": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--border--color--status--info--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--info--clicked": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--border--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--custom--default": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--border--color--status--custom--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--custom--hover": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--border--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--custom--clicked": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--border--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--default": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.border.color.100}" + }, + "name": "pf-t--global--border--color--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "default" + }, + "path": [ + "global", + "border", + "color", + "default" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--border--color--100", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "border", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--hover": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.100}" + }, + "name": "pf-t--global--border--color--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "hover" + }, + "path": [ + "global", + "border", + "color", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--brand--100", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "100" + }, + "path": [ + "global", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--clicked": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--border--color--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "clicked" + }, + "path": [ + "global", + "border", + "color", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--disabled": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.disabled.200}" + }, + "name": "pf-t--global--border--color--disabled", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "border", + "color", + "disabled" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--disabled--200", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "200" + }, + "path": [ + "global", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--alt": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.background.color.primary.default}" + }, + "name": "pf-t--global--border--color--alt", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "alt" + }, + "path": [ + "global", + "border", + "color", + "alt" + ], + "references": [ + { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--on-secondary": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.border.color.300}" + }, + "name": "pf-t--global--border--color--on-secondary", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "on-secondary" + }, + "path": [ + "global", + "border", + "color", + "on-secondary" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--border--color--300", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "border", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--red--default": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.red.200}" + }, + "name": "pf-t--global--border--color--nonstatus--red--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.30}" + }, + "name": "pf-t--global--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--red--hover": { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.red.300}" + }, + "name": "pf-t--global--border--color--nonstatus--red--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.40}" + }, + "name": "pf-t--global--color--nonstatus--red--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--red--clicked": { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.red.300}" + }, + "name": "pf-t--global--border--color--nonstatus--red--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.40}" + }, + "name": "pf-t--global--color--nonstatus--red--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orangered--default": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orangered--hover": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.orangered.300}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orangered--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orangered--clicked": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.orangered.300}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orangered--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orange--default": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orange--hover": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.orange.300}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orange--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orange--clicked": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.orange.300}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orange--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--yellow--default": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.gold.200}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--gold--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gold", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gold", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--yellow--hover": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.gold.300}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--nonstatus--gold--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gold", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gold", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--yellow--clicked": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.gold.300}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--nonstatus--gold--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gold", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gold", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--green--default": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.green.200}" + }, + "name": "pf-t--global--border--color--nonstatus--green--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "default" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--green--hover": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.green.300}" + }, + "name": "pf-t--global--border--color--nonstatus--green--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--color--nonstatus--green--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--green--clicked": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.green.300}" + }, + "name": "pf-t--global--border--color--nonstatus--green--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--color--nonstatus--green--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--teal--default": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.cyan.200}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "default" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--cyan--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "cyan", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "cyan", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--teal--hover": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.cyan.300}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--color--nonstatus--cyan--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "cyan", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "cyan", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--teal--clicked": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.cyan.300}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--color--nonstatus--cyan--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "cyan", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "cyan", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--blue--default": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--blue--hover": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.blue.300}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--nonstatus--blue--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--blue--clicked": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.blue.300}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--nonstatus--blue--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--purple--default": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--purple--hover": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.purple.300}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--global--color--nonstatus--purple--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--purple--clicked": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.purple.300}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--global--color--nonstatus--purple--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--gray--default": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "default" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--gray--hover": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.gray.300}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--nonstatus--gray--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "300" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--gray--clicked": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.gray.300}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--nonstatus--gray--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "300" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--font--family--100": { + "type": "string", + "value": "Red Hat Text VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Text VF" + }, + "name": "pf-t--global--font--family--100", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "100" + }, + "path": [ + "global", + "font", + "family", + "100" + ] + }, + "pf-t--global--font--family--200": { + "type": "string", + "value": "Red Hat Display VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Display VF" + }, + "name": "pf-t--global--font--family--200", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "200" + }, + "path": [ + "global", + "font", + "family", + "200" + ] + }, + "pf-t--global--font--family--300": { + "type": "string", + "value": "Red Hat Mono VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Mono VF" + }, + "name": "pf-t--global--font--family--300", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "300" + }, + "path": [ + "global", + "font", + "family", + "300" + ] + }, + "pf-t--global--font--family--body": { + "type": "number", + "value": "Red Hat Text VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.family.100}" + }, + "name": "pf-t--global--font--family--body", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "body" + }, + "path": [ + "global", + "font", + "family", + "body" + ], + "references": [ + { + "type": "string", + "value": "Red Hat Text VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Text VF" + }, + "name": "pf-t--global--font--family--100", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "100" + }, + "path": [ + "global", + "font", + "family", + "100" + ] + } + ] + }, + "pf-t--global--font--family--heading": { + "type": "number", + "value": "Red Hat Display VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.family.200}" + }, + "name": "pf-t--global--font--family--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "family", + "heading" + ], + "references": [ + { + "type": "string", + "value": "Red Hat Display VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Display VF" + }, + "name": "pf-t--global--font--family--200", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "200" + }, + "path": [ + "global", + "font", + "family", + "200" + ] + } + ] + }, + "pf-t--global--font--family--mono": { + "type": "number", + "value": "Red Hat Mono VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.family.300}" + }, + "name": "pf-t--global--font--family--mono", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "mono" + }, + "path": [ + "global", + "font", + "family", + "mono" + ], + "references": [ + { + "type": "string", + "value": "Red Hat Mono VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Mono VF" + }, + "name": "pf-t--global--font--family--300", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "300" + }, + "path": [ + "global", + "font", + "family", + "300" + ] + } + ] + }, + "pf-t--global--font--weight--body": { + "100": { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": true + }, + "200": { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": true + }, + "type": "number", + "value": 400, + "bold": { + "type": "number", + "value": 500, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true + }, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "100": { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": true + }, + "200": { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": true + }, + "type": "number", + "value": "{global.font.weight.body.100}", + "bold": { + "type": "number", + "value": "{global.font.weight.body.200}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true + } + }, + "name": "pf-t--global--font--weight--body", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "body" + }, + "path": [ + "global", + "font", + "weight", + "body" + ], + "references": [ + { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": true + } + ] + }, + "pf-t--global--font--weight--heading": { + "100": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": true + }, + "200": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": true + }, + "type": "number", + "value": 700, + "bold": { + "type": "number", + "value": 700, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true + }, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "100": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": true + }, + "200": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": true + }, + "type": "number", + "value": "{global.font.weight.heading.100}", + "bold": { + "type": "number", + "value": "{global.font.weight.heading.200}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true + } + }, + "name": "pf-t--global--font--weight--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "weight", + "heading" + ], + "references": [ + { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": true + } + ] + }, + "pf-t--global--font--line-height--100": { + "type": "number", + "value": 1.2999999523162842, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1.2999999523162842 + }, + "name": "pf-t--global--font--line-height--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "100" + }, + "path": [ + "global", + "font", + "line-height", + "100" + ] + }, + "pf-t--global--font--line-height--200": { + "type": "number", + "value": 1.5, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1.5 + }, + "name": "pf-t--global--font--line-height--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "200" + }, + "path": [ + "global", + "font", + "line-height", + "200" + ] + }, + "pf-t--global--font--line-height--figma-only--100": { + "type": "number", + "value": 18, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--line-height--figma-only--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "100" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "100" + ] + }, + "pf-t--global--font--line-height--figma-only--200": { + "type": "number", + "value": 21, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 21 + }, + "name": "pf-t--global--font--line-height--figma-only--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "200" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "200" + ] + }, + "pf-t--global--font--line-height--figma-only--300": { + "type": "number", + "value": 24, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--font--line-height--figma-only--300", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "300" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "300" + ] + }, + "pf-t--global--font--line-height--figma-only--400": { + "type": "number", + "value": 23.399999618530273, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 23.399999618530273 + }, + "name": "pf-t--global--font--line-height--figma-only--400", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "400" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "400" + ] + }, + "pf-t--global--font--line-height--figma-only--500": { + "type": "number", + "value": 26, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 26 + }, + "name": "pf-t--global--font--line-height--figma-only--500", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "500" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "500" + ] + }, + "pf-t--global--font--line-height--figma-only--600": { + "type": "number", + "value": 28.600000381469727, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 28.600000381469727 + }, + "name": "pf-t--global--font--line-height--figma-only--600", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "600" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "600" + ] + }, + "pf-t--global--font--line-height--figma-only--700": { + "type": "number", + "value": 36.400001525878906, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 36.400001525878906 + }, + "name": "pf-t--global--font--line-height--figma-only--700", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "700" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "700" + ] + }, + "pf-t--global--font--line-height--figma-only--800": { + "type": "number", + "value": 46.79999923706055, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 46.79999923706055 + }, + "name": "pf-t--global--font--line-height--figma-only--800", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "800" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "800" + ] + }, + "pf-t--global--font--line-height--figma-only--body--small": { + "type": "number", + "value": 18, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.100}" + }, + "name": "pf-t--global--font--line-height--figma-only--body--small", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "body" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "body", + "small" + ], + "references": [ + { + "type": "number", + "value": 18, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--line-height--figma-only--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "100" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "100" + ] + } + ] + }, + "pf-t--global--font--line-height--figma-only--body--default": { + "type": "number", + "value": 21, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.200}" + }, + "name": "pf-t--global--font--line-height--figma-only--body--default", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "body" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "body", + "default" + ], + "references": [ + { + "type": "number", + "value": 21, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 21 + }, + "name": "pf-t--global--font--line-height--figma-only--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "200" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "200" + ] + } + ] + }, + "pf-t--global--font--line-height--figma-only--body--large": { + "type": "number", + "value": 24, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.300}" + }, + "name": "pf-t--global--font--line-height--figma-only--body--large", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "body" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "body", + "large" + ], + "references": [ + { + "type": "number", + "value": 24, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--font--line-height--figma-only--300", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "300" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "300" + ] + } + ] + }, + "pf-t--global--font--line-height--figma-only--heading--xs": { + "type": "number", + "value": 24, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.300}" + }, + "name": "pf-t--global--font--line-height--figma-only--heading--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "heading", + "xs" + ], + "references": [ + { + "type": "number", + "value": 24, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--font--line-height--figma-only--300", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "300" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "300" + ] + } + ] + }, + "pf-t--global--font--line-height--figma-only--heading--sm": { + "type": "number", + "value": 23.399999618530273, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.400}" + }, + "name": "pf-t--global--font--line-height--figma-only--heading--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "heading", + "sm" + ], + "references": [ + { + "type": "number", + "value": 23.399999618530273, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 23.399999618530273 + }, + "name": "pf-t--global--font--line-height--figma-only--400", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "400" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "400" + ] + } + ] + }, + "pf-t--global--font--line-height--figma-only--heading--md": { + "type": "number", + "value": 26, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.500}" + }, + "name": "pf-t--global--font--line-height--figma-only--heading--md", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "heading", + "md" + ], + "references": [ + { + "type": "number", + "value": 26, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 26 + }, + "name": "pf-t--global--font--line-height--figma-only--500", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "500" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "500" + ] + } + ] + }, + "pf-t--global--font--line-height--figma-only--heading--lg": { + "type": "number", + "value": 28.600000381469727, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.600}" + }, + "name": "pf-t--global--font--line-height--figma-only--heading--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "heading", + "lg" + ], + "references": [ + { + "type": "number", + "value": 28.600000381469727, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 28.600000381469727 + }, + "name": "pf-t--global--font--line-height--figma-only--600", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "600" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "600" + ] + } + ] + }, + "pf-t--global--font--line-height--figma-only--heading--xl": { + "type": "number", + "value": 36.400001525878906, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.700}" + }, + "name": "pf-t--global--font--line-height--figma-only--heading--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "heading", + "xl" + ], + "references": [ + { + "type": "number", + "value": 36.400001525878906, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 36.400001525878906 + }, + "name": "pf-t--global--font--line-height--figma-only--700", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "700" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "700" + ] + } + ] + }, + "pf-t--global--font--line-height--figma-only--heading--2xl": { + "type": "number", + "value": 46.79999923706055, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.line-height.figma-only.800}" + }, + "name": "pf-t--global--font--line-height--figma-only--heading--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "heading", + "2xl" + ], + "references": [ + { + "type": "number", + "value": 46.79999923706055, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 46.79999923706055 + }, + "name": "pf-t--global--font--line-height--figma-only--800", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "figma-only", + "state": "800" + }, + "path": [ + "global", + "font", + "line-height", + "figma-only", + "800" + ] + } + ] + }, + "pf-t--global--font--line-height--body": { + "type": "number", + "value": 1.2999999523162842, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.line-height.100}" + }, + "name": "pf-t--global--font--line-height--body", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "body" + }, + "path": [ + "global", + "font", + "line-height", + "body" + ], + "references": [ + { + "type": "number", + "value": 1.2999999523162842, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1.2999999523162842 + }, + "name": "pf-t--global--font--line-height--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "100" + }, + "path": [ + "global", + "font", + "line-height", + "100" + ] + } + ] + }, + "pf-t--global--font--line-height--heading": { + "type": "number", + "value": 1.5, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.line-height.200}" + }, + "name": "pf-t--global--font--line-height--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "heading" + ], + "references": [ + { + "type": "number", + "value": 1.5, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1.5 + }, + "name": "pf-t--global--font--line-height--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "200" + }, + "path": [ + "global", + "font", + "line-height", + "200" + ] + } + ] + }, + "pf-t--global--font--size--100": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + }, + "pf-t--global--font--size--200": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + }, + "pf-t--global--font--size--300": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + }, + "pf-t--global--font--size--400": { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + }, + "pf-t--global--font--size--500": { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + }, + "pf-t--global--font--size--600": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + }, + "pf-t--global--font--size--700": { + "type": "number", + "value": "28px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + }, + "pf-t--global--font--size--800": { + "type": "number", + "value": "36px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + }, + "pf-t--global--font--size--body--sm": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--font--size--body--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "sm" + }, + "path": [ + "global", + "font", + "size", + "body", + "sm" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--body--default": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--font--size--body--default", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "default" + }, + "path": [ + "global", + "font", + "size", + "body", + "default" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--body--lg": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--body--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "lg" + }, + "path": [ + "global", + "font", + "size", + "body", + "lg" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h1": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--font--size--heading--h1", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h1" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h1" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h2": { + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--font--size--heading--h2", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h2" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h2" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h3": { + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--font--size--heading--h3", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h3" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h3" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h4": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h4", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h4" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h4" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h5": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h5", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h5" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h5" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h6": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h6", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h6" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h6" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--xs": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + }, + "pf-t--global--font--size--sm": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + }, + "pf-t--global--font--size--md": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + }, + "pf-t--global--font--size--lg": { + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + }, + "pf-t--global--font--size--xl": { + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + }, + "pf-t--global--font--size--2xl": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + }, + "pf-t--global--font--size--3xl": { + "type": "number", + "value": "28px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.700}" + }, + "name": "pf-t--global--font--size--3xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "font", + "size", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "28px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + } + ] + }, + "pf-t--global--font--size--4xl": { + "type": "number", + "value": "36px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.800}" + }, + "name": "pf-t--global--font--size--4xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "4xl" + }, + "path": [ + "global", + "font", + "size", + "4xl" + ], + "references": [ + { + "type": "number", + "value": "36px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + } + ] + }, + "pf-t--global--z-index--100": { + "type": "number", + "value": 100, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--z-index--100", + "attributes": { + "category": "global", + "type": "z-index", + "item": "100" + }, + "path": [ + "global", + "z-index", + "100" + ] + }, + "pf-t--global--z-index--200": { + "type": "number", + "value": 200, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--z-index--200", + "attributes": { + "category": "global", + "type": "z-index", + "item": "200" + }, + "path": [ + "global", + "z-index", + "200" + ] + }, + "pf-t--global--z-index--300": { + "type": "number", + "value": 300, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--z-index--300", + "attributes": { + "category": "global", + "type": "z-index", + "item": "300" + }, + "path": [ + "global", + "z-index", + "300" + ] + }, + "pf-t--global--z-index--400": { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--z-index--400", + "attributes": { + "category": "global", + "type": "z-index", + "item": "400" + }, + "path": [ + "global", + "z-index", + "400" + ] + }, + "pf-t--global--z-index--500": { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--z-index--500", + "attributes": { + "category": "global", + "type": "z-index", + "item": "500" + }, + "path": [ + "global", + "z-index", + "500" + ] + }, + "pf-t--global--z-index--600": { + "type": "number", + "value": 600, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--z-index--600", + "attributes": { + "category": "global", + "type": "z-index", + "item": "600" + }, + "path": [ + "global", + "z-index", + "600" + ] + }, + "pf-t--global--z-index--xs": { + "type": "number", + "value": 100, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.z-index.100}" + }, + "name": "pf-t--global--z-index--xs", + "attributes": { + "category": "global", + "type": "z-index", + "item": "xs" + }, + "path": [ + "global", + "z-index", + "xs" + ], + "references": [ + { + "type": "number", + "value": 100, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--z-index--100", + "attributes": { + "category": "global", + "type": "z-index", + "item": "100" + }, + "path": [ + "global", + "z-index", + "100" + ] + } + ] + }, + "pf-t--global--z-index--sm": { + "type": "number", + "value": 200, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.z-index.200}" + }, + "name": "pf-t--global--z-index--sm", + "attributes": { + "category": "global", + "type": "z-index", + "item": "sm" + }, + "path": [ + "global", + "z-index", + "sm" + ], + "references": [ + { + "type": "number", + "value": 200, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--z-index--200", + "attributes": { + "category": "global", + "type": "z-index", + "item": "200" + }, + "path": [ + "global", + "z-index", + "200" + ] + } + ] + }, + "pf-t--global--z-index--md": { + "type": "number", + "value": 300, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.z-index.300}" + }, + "name": "pf-t--global--z-index--md", + "attributes": { + "category": "global", + "type": "z-index", + "item": "md" + }, + "path": [ + "global", + "z-index", + "md" + ], + "references": [ + { + "type": "number", + "value": 300, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--z-index--300", + "attributes": { + "category": "global", + "type": "z-index", + "item": "300" + }, + "path": [ + "global", + "z-index", + "300" + ] + } + ] + }, + "pf-t--global--z-index--lg": { + "type": "number", + "value": 400, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.z-index.400}" + }, + "name": "pf-t--global--z-index--lg", + "attributes": { + "category": "global", + "type": "z-index", + "item": "lg" + }, + "path": [ + "global", + "z-index", + "lg" + ], + "references": [ + { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--z-index--400", + "attributes": { + "category": "global", + "type": "z-index", + "item": "400" + }, + "path": [ + "global", + "z-index", + "400" + ] + } + ] + }, + "pf-t--global--z-index--xl": { + "type": "number", + "value": 500, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.z-index.500}" + }, + "name": "pf-t--global--z-index--xl", + "attributes": { + "category": "global", + "type": "z-index", + "item": "xl" + }, + "path": [ + "global", + "z-index", + "xl" + ], + "references": [ + { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--z-index--500", + "attributes": { + "category": "global", + "type": "z-index", + "item": "500" + }, + "path": [ + "global", + "z-index", + "500" + ] + } + ] + }, + "pf-t--global--z-index--2xl": { + "type": "number", + "value": 600, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.z-index.600}" + }, + "name": "pf-t--global--z-index--2xl", + "attributes": { + "category": "global", + "type": "z-index", + "item": "2xl" + }, + "path": [ + "global", + "z-index", + "2xl" + ], + "references": [ + { + "type": "number", + "value": 600, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--z-index--600", + "attributes": { + "category": "global", + "type": "z-index", + "item": "600" + }, + "path": [ + "global", + "z-index", + "600" + ] + } + ] + }, + "pf-t--global--box-shadow--X--100": { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--X--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "X", + "100" + ] + }, + "pf-t--global--box-shadow--X--200": { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--X--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "X", + "200" + ] + }, + "pf-t--global--box-shadow--X--300": { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--X--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "X", + "300" + ] + }, + "pf-t--global--box-shadow--X--400": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + }, + "pf-t--global--box-shadow--X--500": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--X--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "X", + "500" + ] + }, + "pf-t--global--box-shadow--X--600": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--X--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "X", + "600" + ] + }, + "pf-t--global--box-shadow--X--700": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--X--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "X", + "700" + ] + }, + "pf-t--global--box-shadow--X--sm--default": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "default" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--top": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "top" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--bottom": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--left": { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.X.300}" + }, + "name": "pf-t--global--box-shadow--X--sm--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "left" + ], + "references": [ + { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--X--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "X", + "300" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--right": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.X.500}" + }, + "name": "pf-t--global--box-shadow--X--sm--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "right" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--X--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "X", + "500" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--default": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "default" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--top": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "top" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--bottom": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--left": { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.X.200}" + }, + "name": "pf-t--global--box-shadow--X--md--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "left" + ], + "references": [ + { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--X--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "X", + "200" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--right": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.X.600}" + }, + "name": "pf-t--global--box-shadow--X--md--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "right" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--X--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "X", + "600" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--default": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "default" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--top": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "top" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--bottom": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--left": { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.X.100}" + }, + "name": "pf-t--global--box-shadow--X--lg--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "left" + ], + "references": [ + { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--X--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "X", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--right": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.X.700}" + }, + "name": "pf-t--global--box-shadow--X--lg--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "right" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--X--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "X", + "700" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--100": { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--Y--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "Y", + "100" + ] + }, + "pf-t--global--box-shadow--Y--200": { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--Y--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "Y", + "200" + ] + }, + "pf-t--global--box-shadow--Y--300": { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--Y--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "Y", + "300" + ] + }, + "pf-t--global--box-shadow--Y--400": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + }, + "pf-t--global--box-shadow--Y--500": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + }, + "pf-t--global--box-shadow--Y--600": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + }, + "pf-t--global--box-shadow--Y--700": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + }, + "pf-t--global--box-shadow--Y--sm--default": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.500}" + }, + "name": "pf-t--global--box-shadow--Y--sm--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--top": { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.300}" + }, + "name": "pf-t--global--box-shadow--Y--sm--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "top" + ], + "references": [ + { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--Y--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "Y", + "300" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--bottom": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.500}" + }, + "name": "pf-t--global--box-shadow--Y--sm--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--left": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--sm--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "left" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--right": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--sm--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "right" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--default": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.600}" + }, + "name": "pf-t--global--box-shadow--Y--md--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "default" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--top": { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.200}" + }, + "name": "pf-t--global--box-shadow--Y--md--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "top" + ], + "references": [ + { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--Y--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "Y", + "200" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--bottom": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.600}" + }, + "name": "pf-t--global--box-shadow--Y--md--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--left": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--md--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "left" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--right": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--md--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "right" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--default": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.700}" + }, + "name": "pf-t--global--box-shadow--Y--lg--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "default" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--top": { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.100}" + }, + "name": "pf-t--global--box-shadow--Y--lg--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "top" + ], + "references": [ + { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--Y--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "Y", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--bottom": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.700}" + }, + "name": "pf-t--global--box-shadow--Y--lg--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--left": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--lg--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "left" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--right": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--lg--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "right" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--blur--100": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--box-shadow--blur--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "blur", + "100" + ] + }, + "pf-t--global--box-shadow--blur--200": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--blur--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "blur", + "200" + ] + }, + "pf-t--global--box-shadow--blur--300": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--box-shadow--blur--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "blur", + "300" + ] + }, + "pf-t--global--box-shadow--blur--sm": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.blur.100}" + }, + "name": "pf-t--global--box-shadow--blur--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "blur", + "sm" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--box-shadow--blur--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "blur", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--blur--md": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.blur.200}" + }, + "name": "pf-t--global--box-shadow--blur--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "blur", + "md" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--blur--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "blur", + "200" + ] + } + ] + }, + "pf-t--global--box-shadow--blur--lg": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.blur.300}" + }, + "name": "pf-t--global--box-shadow--blur--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "blur", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--box-shadow--blur--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "blur", + "300" + ] + } + ] + }, + "pf-t--global--box-shadow--spread--100": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + }, + "pf-t--global--box-shadow--spread--sm": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "spread", + "sm" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--spread--md": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "spread", + "md" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--spread--lg": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "spread", + "lg" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--color--100": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)" + }, + "name": "pf-t--global--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "color", + "100" + ] + }, + "pf-t--global--box-shadow--color--200": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)" + }, + "name": "pf-t--global--box-shadow--color--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "color", + "200" + ] + }, + "pf-t--global--box-shadow--color--sm": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.box-shadow.color.100}" + }, + "name": "pf-t--global--box-shadow--color--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "color", + "sm" + ], + "references": [ + { + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)" + }, + "name": "pf-t--global--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "color", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--color--md": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.box-shadow.color.200}" + }, + "name": "pf-t--global--box-shadow--color--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "color", + "md" + ], + "references": [ + { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)" + }, + "name": "pf-t--global--box-shadow--color--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "color", + "200" + ] + } + ] + }, + "pf-t--global--box-shadow--color--lg": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.box-shadow.color.200}" + }, + "name": "pf-t--global--box-shadow--color--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "color", + "lg" + ], + "references": [ + { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)" + }, + "name": "pf-t--global--box-shadow--color--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "color", + "200" + ] + } + ] + }, + "pf-t--global--breakpoint--100": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + }, + "pf-t--global--breakpoint--200": { + "type": "number", + "value": "576px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 576 + }, + "name": "pf-t--global--breakpoint--200", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "200" + }, + "path": [ + "global", + "breakpoint", + "200" + ] + }, + "pf-t--global--breakpoint--250": { + "type": "number", + "value": "640px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 640 + }, + "name": "pf-t--global--breakpoint--250", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "250" + }, + "path": [ + "global", + "breakpoint", + "250" + ] + }, + "pf-t--global--breakpoint--300": { + "type": "number", + "value": "768px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + }, + "pf-t--global--breakpoint--350": { + "type": "number", + "value": "960px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 960 + }, + "name": "pf-t--global--breakpoint--350", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "350" + }, + "path": [ + "global", + "breakpoint", + "350" + ] + }, + "pf-t--global--breakpoint--400": { + "type": "number", + "value": "992px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 992 + }, + "name": "pf-t--global--breakpoint--400", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "400" + }, + "path": [ + "global", + "breakpoint", + "400" + ] + }, + "pf-t--global--breakpoint--500": { + "type": "number", + "value": "1200px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1200 + }, + "name": "pf-t--global--breakpoint--500", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "500" + }, + "path": [ + "global", + "breakpoint", + "500" + ] + }, + "pf-t--global--breakpoint--550": { + "type": "number", + "value": "1280px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1280 + }, + "name": "pf-t--global--breakpoint--550", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "550" + }, + "path": [ + "global", + "breakpoint", + "550" + ] + }, + "pf-t--global--breakpoint--600": { + "type": "number", + "value": "1450px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1450 + }, + "name": "pf-t--global--breakpoint--600", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "600" + }, + "path": [ + "global", + "breakpoint", + "600" + ] + }, + "pf-t--global--breakpoint--xs": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.breakpoint.100}" + }, + "name": "pf-t--global--breakpoint--xs", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "xs" + }, + "path": [ + "global", + "breakpoint", + "xs" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + } + ] + }, + "pf-t--global--breakpoint--sm": { + "type": "number", + "value": "576px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.breakpoint.200}" + }, + "name": "pf-t--global--breakpoint--sm", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "sm" + }, + "path": [ + "global", + "breakpoint", + "sm" + ], + "references": [ + { + "type": "number", + "value": "576px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 576 + }, + "name": "pf-t--global--breakpoint--200", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "200" + }, + "path": [ + "global", + "breakpoint", + "200" + ] + } + ] + }, + "pf-t--global--breakpoint--md": { + "type": "number", + "value": "768px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.breakpoint.300}" + }, + "name": "pf-t--global--breakpoint--md", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "md" + }, + "path": [ + "global", + "breakpoint", + "md" + ], + "references": [ + { + "type": "number", + "value": "768px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + } + ] + }, + "pf-t--global--breakpoint--lg": { + "type": "number", + "value": "992px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.breakpoint.400}" + }, + "name": "pf-t--global--breakpoint--lg", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "lg" + }, + "path": [ + "global", + "breakpoint", + "lg" + ], + "references": [ + { + "type": "number", + "value": "992px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 992 + }, + "name": "pf-t--global--breakpoint--400", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "400" + }, + "path": [ + "global", + "breakpoint", + "400" + ] + } + ] + }, + "pf-t--global--breakpoint--xl": { + "type": "number", + "value": "1200px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.breakpoint.500}" + }, + "name": "pf-t--global--breakpoint--xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "xl" + }, + "path": [ + "global", + "breakpoint", + "xl" + ], + "references": [ + { + "type": "number", + "value": "1200px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1200 + }, + "name": "pf-t--global--breakpoint--500", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "500" + }, + "path": [ + "global", + "breakpoint", + "500" + ] + } + ] + }, + "pf-t--global--breakpoint--2xl": { + "type": "number", + "value": "1450px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.breakpoint.600}" + }, + "name": "pf-t--global--breakpoint--2xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "2xl" + }, + "path": [ + "global", + "breakpoint", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "1450px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1450 + }, + "name": "pf-t--global--breakpoint--600", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "600" + }, + "path": [ + "global", + "breakpoint", + "600" + ] + } + ] + }, + "pf-t--global--breakpoint--height--sm": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.breakpoint.100}" + }, + "name": "pf-t--global--breakpoint--height--sm", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "sm" + }, + "path": [ + "global", + "breakpoint", + "height", + "sm" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + } + ] + }, + "pf-t--global--breakpoint--height--md": { + "type": "number", + "value": "640px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.breakpoint.250}" + }, + "name": "pf-t--global--breakpoint--height--md", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "md" + }, + "path": [ + "global", + "breakpoint", + "height", + "md" + ], + "references": [ + { + "type": "number", + "value": "640px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 640 + }, + "name": "pf-t--global--breakpoint--250", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "250" + }, + "path": [ + "global", + "breakpoint", + "250" + ] + } + ] + }, + "pf-t--global--breakpoint--height--lg": { + "type": "number", + "value": "768px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.breakpoint.300}" + }, + "name": "pf-t--global--breakpoint--height--lg", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "lg" + }, + "path": [ + "global", + "breakpoint", + "height", + "lg" + ], + "references": [ + { + "type": "number", + "value": "768px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + } + ] + }, + "pf-t--global--breakpoint--height--xl": { + "type": "number", + "value": "960px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.breakpoint.350}" + }, + "name": "pf-t--global--breakpoint--height--xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "xl" + }, + "path": [ + "global", + "breakpoint", + "height", + "xl" + ], + "references": [ + { + "type": "number", + "value": "960px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 960 + }, + "name": "pf-t--global--breakpoint--350", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "350" + }, + "path": [ + "global", + "breakpoint", + "350" + ] + } + ] + }, + "pf-t--global--breakpoint--height--2xl": { + "type": "number", + "value": "1280px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.breakpoint.550}" + }, + "name": "pf-t--global--breakpoint--height--2xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "2xl" + }, + "path": [ + "global", + "breakpoint", + "height", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "1280px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1280 + }, + "name": "pf-t--global--breakpoint--550", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "550" + }, + "path": [ + "global", + "breakpoint", + "550" + ] + } + ] + }, + "pf-t--global--background--color--100": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--global--background--color--200": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--global--background--color--300": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--background--color--300", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--global--background--color--400": { + "type": "color", + "value": "#292929", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--background--color--400", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "background", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + }, + "pf-t--global--background--color--500": { + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)" + }, + "name": "pf-t--global--background--color--500", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "500" + }, + "path": [ + "global", + "background", + "color", + "500" + ] + }, + "pf-t--global--background--color--600": { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)" + }, + "name": "pf-t--global--background--color--600", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "600" + }, + "path": [ + "global", + "background", + "color", + "600" + ] + }, + "pf-t--global--background--color--highlight--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--background--color--highlight--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "100" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--background--color--highlight--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--background--color--highlight--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "200" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--background--color--highlight--default": { + "description": "Use as the background color for highlighted elements", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the background color for highlighted elements", + "type": "color", + "value": "{global.background.color.highlight.100}" + }, + "name": "pf-t--global--background--color--highlight--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--background--color--highlight--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "100" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--highlight--clicked": { + "description": "Use as the active state for for highlighted elements", + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the active state for for highlighted elements", + "type": "color", + "value": "{global.background.color.highlight.200}" + }, + "name": "pf-t--global--background--color--highlight--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--background--color--highlight--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "200" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--primary--default": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--primary--hover": { + "description": "Use as the hover state for primary backgrounds", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for primary backgrounds", + "type": "color", + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--primary--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "primary", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--primary--clicked": { + "description": "Use as the selected state for primary backgrounds", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the selected state for primary backgrounds", + "type": "color", + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--primary--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "primary", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--secondary--default": { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "type": "color", + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--secondary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--secondary--hover": { + "description": "Use as the hover state for secondary backgrounds", + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for secondary backgrounds", + "type": "color", + "value": "{global.background.color.300}" + }, + "name": "pf-t--global--background--color--secondary--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--background--color--300", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--secondary--clicked": { + "description": "Use as the selected state for secondary backgrounds", + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the selected state for secondary backgrounds", + "type": "color", + "value": "{global.background.color.300}" + }, + "name": "pf-t--global--background--color--secondary--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--background--color--300", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--floating--default": { + "description": "Use as background color for components that show over top of other content such as toast alerts, menus, modals, overlay drawers, etc.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as background color for components that show over top of other content such as toast alerts, menus, modals, overlay drawers, etc.", + "type": "color", + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--floating--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "floating", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--floating--hover": { + "description": "Use as the hover state for floating backgrounds", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for floating backgrounds", + "type": "color", + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--floating--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "floating", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--floating--clicked": { + "description": "Use as the selected state for floating backgrounds", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the selected state for floating backgrounds", + "type": "color", + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--floating--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "floating", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--action--plain--default": { + "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", + "type": "color", + "value": "rgba(255, 255, 255, 0.0000)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", + "type": "color", + "value": "rgba(255, 255, 255, 0.0000)" + }, + "name": "pf-t--global--background--color--action--plain--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "default" + ] + }, + "pf-t--global--background--color--action--plain--hover": { + "description": "Use as the hover state for components that use the plain action default background.", + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for components that use the plain action default background.", + "type": "color", + "value": "{global.background.color.600}" + }, + "name": "pf-t--global--background--color--action--plain--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "hover" + ], + "references": [ + { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)" + }, + "name": "pf-t--global--background--color--600", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "600" + }, + "path": [ + "global", + "background", + "color", + "600" + ] + } + ] + }, + "pf-t--global--background--color--action--plain--clicked": { + "description": "Use as the active/pressed state for components that use the plain action default background.", + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the active/pressed state for components that use the plain action default background.", + "type": "color", + "value": "{global.background.color.600}" + }, + "name": "pf-t--global--background--color--action--plain--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)" + }, + "name": "pf-t--global--background--color--600", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "600" + }, + "path": [ + "global", + "background", + "color", + "600" + ] + } + ] + }, + "pf-t--global--background--color--action--plain--alt--hover": { + "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", + "type": "color", + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--action--plain--alt--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "alt", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--action--plain--alt--clicked": { + "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", + "type": "color", + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--action--plain--alt--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "alt", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--control--default": { + "description": "Use as the default background for control elements like form inputs and menu toggles.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background for control elements like form inputs and menu toggles.", + "type": "color", + "value": "{global.background.color.primary.default}" + }, + "name": "pf-t--global--background--color--control--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "control", + "default" + ], + "references": [ + { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--background--color--inverse--default": { + "description": "Use as the background color components with inversed backgrounds like tooltips.", + "type": "color", + "value": "#292929", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the background color components with inversed backgrounds like tooltips.", + "type": "color", + "value": "{global.background.color.400}" + }, + "name": "pf-t--global--background--color--inverse--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "inverse", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "inverse", + "default" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--background--color--400", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "background", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--disabled--default": { + "description": "Use as the background color for disabled components.", + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the background color for disabled components.", + "type": "color", + "value": "{global.color.disabled.100}" + }, + "name": "pf-t--global--background--color--disabled--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "disabled", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "disabled", + "default" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--disabled--100", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "100" + }, + "path": [ + "global", + "color", + "disabled", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--backdrop--default": { + "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", + "type": "color", + "value": "{global.background.color.500}" + }, + "name": "pf-t--global--background--color--backdrop--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "backdrop", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "backdrop", + "default" + ], + "references": [ + { + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)" + }, + "name": "pf-t--global--background--color--500", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "500" + }, + "path": [ + "global", + "background", + "color", + "500" + ] + } + ] + }, + "pf-t--global--color--brand--100": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--brand--100", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "100" + }, + "path": [ + "global", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + }, + "pf-t--global--color--brand--200": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + }, + "pf-t--global--color--brand--300": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + }, + "pf-t--global--color--brand--default": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--color--brand--hover": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--color--brand--clicked": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--color--disabled--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--disabled--100", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "100" + }, + "path": [ + "global", + "color", + "disabled", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--color--disabled--200": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--disabled--200", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "200" + }, + "path": [ + "global", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--color--disabled--300": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--color--disabled--300", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "300" + }, + "path": [ + "global", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + }, + "pf-t--global--color--favorite--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--favorite--100", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "100" + }, + "path": [ + "global", + "color", + "favorite", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--color--favorite--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--favorite--default": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.favorite.100}" + }, + "name": "pf-t--global--color--favorite--default", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "default" + }, + "path": [ + "global", + "color", + "favorite", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--favorite--100", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "100" + }, + "path": [ + "global", + "color", + "favorite", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--favorite--hover": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "favorite", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--color--favorite--clicked": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "favorite", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--success--100": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + }, + "pf-t--global--color--status--success--200": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + }, + "pf-t--global--color--status--success--default": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--success--hover": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--success--clicked": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--warning--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--status--warning--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--color--status--warning--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--status--warning--300": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + }, + "pf-t--global--color--status--warning--default": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.100}" + }, + "name": "pf-t--global--color--status--warning--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--status--warning--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--warning--hover": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--warning--clicked": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--danger--100": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + }, + "pf-t--global--color--status--danger--200": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + }, + "pf-t--global--color--status--danger--300": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "danger", + "300" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + }, + "pf-t--global--color--status--danger--default": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--danger--hover": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--danger--clicked": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--info--100": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + }, + "pf-t--global--color--status--info--200": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + }, + "pf-t--global--color--status--info--default": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--info--hover": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--info--clicked": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--custom--100": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + }, + "pf-t--global--color--status--custom--200": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + }, + "pf-t--global--color--status--custom--default": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--custom--hover": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--custom--clicked": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--default--default": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--color--status--unread--default--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "unread", + "default", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--default--hover": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--color--status--unread--default--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "unread", + "default", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--default--clicked": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--color--status--unread--default--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "unread", + "default", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--attention--default": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--color--status--unread--attention--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--attention--clicked": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--color--status--unread--attention--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--attention--hover": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--color--status--unread--attention--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--read--on-secondary": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.background.color.control.default}" + }, + "name": "pf-t--global--color--status--read--on-secondary", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "read", + "state": "on-secondary" + }, + "path": [ + "global", + "color", + "status", + "read", + "on-secondary" + ], + "references": [ + { + "description": "Use as the default background for control elements like form inputs and menu toggles.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background for control elements like form inputs and menu toggles.", + "type": "color", + "value": "{global.background.color.primary.default}" + }, + "name": "pf-t--global--background--color--control--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "control", + "default" + ], + "references": [ + { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--read--on-primary": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.background.color.secondary.default}" + }, + "name": "pf-t--global--color--status--read--on-primary", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "read", + "state": "on-primary" + }, + "path": [ + "global", + "color", + "status", + "read", + "on-primary" + ], + "references": [ + { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "type": "color", + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--secondary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--severity--undefined--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--severity--undefined--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "undefined", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "undefined", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--color--severity--none--100": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--severity--none--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "none", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "none", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + }, + "pf-t--global--color--severity--minor--100": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--color--severity--minor--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "minor", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "minor", + "100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--global--color--severity--moderate--100": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--severity--moderate--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "moderate", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "moderate", + "100" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--severity--important--100": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--global--color--severity--important--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "important", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "important", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + }, + "pf-t--global--color--severity--critical--100": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--severity--critical--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "critical", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "critical", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--100": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.20}" + }, + "name": "pf-t--global--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--200": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.30}" + }, + "name": "pf-t--global--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--300": { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.40}" + }, + "name": "pf-t--global--color--nonstatus--red--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--default": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.red.100}" + }, + "name": "pf-t--global--color--nonstatus--red--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "default" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.20}" + }, + "name": "pf-t--global--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--hover": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.red.200}" + }, + "name": "pf-t--global--color--nonstatus--red--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.30}" + }, + "name": "pf-t--global--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--clicked": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.red.200}" + }, + "name": "pf-t--global--color--nonstatus--red--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.30}" + }, + "name": "pf-t--global--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--100": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--200": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--300": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orangered--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--default": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.orangered.100}" + }, + "name": "pf-t--global--color--nonstatus--orangered--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "default" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--hover": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--color--nonstatus--orangered--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--clicked": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--color--nonstatus--orangered--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--100": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--200": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--300": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orange--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--default": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.orange.100}" + }, + "name": "pf-t--global--color--nonstatus--orange--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "default" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--hover": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--color--nonstatus--orange--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--clicked": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--color--nonstatus--orange--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--gold--100": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--color--nonstatus--gold--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gold", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "gold", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gold--200": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--gold--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gold", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gold", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gold--300": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--nonstatus--gold--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gold", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gold", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--100": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--global--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--200": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--300": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--color--nonstatus--green--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--default": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.green.100}" + }, + "name": "pf-t--global--color--nonstatus--green--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "default" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--global--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--hover": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.green.200}" + }, + "name": "pf-t--global--color--nonstatus--green--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--clicked": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.green.200}" + }, + "name": "pf-t--global--color--nonstatus--green--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--cyan--100": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--color--nonstatus--cyan--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "cyan", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "cyan", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--cyan--200": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--cyan--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "cyan", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "cyan", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--cyan--300": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--color--nonstatus--cyan--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "cyan", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "cyan", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--100": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--200": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--300": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--nonstatus--blue--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--default": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.blue.100}" + }, + "name": "pf-t--global--color--nonstatus--blue--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--hover": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--color--nonstatus--blue--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--clicked": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--color--nonstatus--blue--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--100": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--200": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--300": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--global--color--nonstatus--purple--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--default": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.purple.100}" + }, + "name": "pf-t--global--color--nonstatus--purple--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "default" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--hover": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--color--nonstatus--purple--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--clicked": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--color--nonstatus--purple--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--100": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--200": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--300": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--nonstatus--gray--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "300" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--default": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.gray.100}" + }, + "name": "pf-t--global--color--nonstatus--gray--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "default" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--hover": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--color--nonstatus--gray--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--clicked": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--color--nonstatus--gray--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--default": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.gold.100}" + }, + "name": "pf-t--global--color--nonstatus--yellow--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--color--nonstatus--gold--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gold", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "gold", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--hover": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.gold.200}" + }, + "name": "pf-t--global--color--nonstatus--yellow--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--gold--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gold", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gold", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--clicked": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.gold.200}" + }, + "name": "pf-t--global--color--nonstatus--yellow--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--gold--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gold", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gold", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--default": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.cyan.100}" + }, + "name": "pf-t--global--color--nonstatus--teal--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--color--nonstatus--cyan--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "cyan", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "cyan", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--hover": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.cyan.200}" + }, + "name": "pf-t--global--color--nonstatus--teal--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--cyan--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "cyan", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "cyan", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--clicked": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.nonstatus.cyan.200}" + }, + "name": "pf-t--global--color--nonstatus--teal--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--cyan--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "cyan", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "cyan", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--100": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + }, + "pf-t--global--text--color--200": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--text--color--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "text", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + }, + "pf-t--global--text--color--300": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--global--text--color--400": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--text--color--400", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "text", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + }, + "pf-t--global--text--color--link--100": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--text--color--link--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "100" + }, + "path": [ + "global", + "text", + "color", + "link", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + }, + "pf-t--global--text--color--link--200": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--text--color--link--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "200" + }, + "path": [ + "global", + "text", + "color", + "link", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + }, + "pf-t--global--text--color--link--300": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--text--color--link--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "300" + }, + "path": [ + "global", + "text", + "color", + "link", + "300" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + }, + "pf-t--global--text--color--link--default": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.link.100}" + }, + "name": "pf-t--global--text--color--link--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "link", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--text--color--link--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "100" + }, + "path": [ + "global", + "text", + "color", + "link", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--link--hover": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.link.200}" + }, + "name": "pf-t--global--text--color--link--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "link", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--text--color--link--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "200" + }, + "path": [ + "global", + "text", + "color", + "link", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--link--visited": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.link.300}" + }, + "name": "pf-t--global--text--color--link--visited", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "visited" + }, + "path": [ + "global", + "text", + "color", + "link", + "visited" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--text--color--link--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "300" + }, + "path": [ + "global", + "text", + "color", + "link", + "300" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--regular": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--subtle": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.200}" + }, + "name": "pf-t--global--text--color--subtle", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "text", + "color", + "subtle" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--text--color--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "text", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--inverse": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-brand--default": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-brand--hover": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-brand--clicked": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "clicked" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--placeholder": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.subtle}" + }, + "name": "pf-t--global--text--color--placeholder", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "placeholder" + }, + "path": [ + "global", + "text", + "color", + "placeholder" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.200}" + }, + "name": "pf-t--global--text--color--subtle", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "text", + "color", + "subtle" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--text--color--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "text", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--disabled": { + "description": "for use without disabled background color", + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "for use without disabled background color", + "type": "color", + "value": "{global.color.disabled.200}" + }, + "name": "pf-t--global--text--color--disabled", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "text", + "color", + "disabled" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--disabled--200", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "200" + }, + "path": [ + "global", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-disabled": { + "description": "pair with disabled background color", + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "pair with disabled background color", + "type": "color", + "value": "{global.color.disabled.300}" + }, + "name": "pf-t--global--text--color--on-disabled", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-disabled" + }, + "path": [ + "global", + "text", + "color", + "on-disabled" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--color--disabled--300", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "300" + }, + "path": [ + "global", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--default": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--text--color--brand--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--hover": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--text--color--brand--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--clicked": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--text--color--brand--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "text", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--required": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.400}" + }, + "name": "pf-t--global--text--color--required", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "required" + }, + "path": [ + "global", + "text", + "color", + "required" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--text--color--400", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "text", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-highlight": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--on-highlight", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-highlight" + }, + "path": [ + "global", + "text", + "color", + "on-highlight" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--success--default": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--text--color--status--success--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--success--hover": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--text--color--status--success--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--success--clicked": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--text--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-success--default": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-success--hover": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-success--clicked": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--warning--default": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.200}" + }, + "name": "pf-t--global--text--color--status--warning--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--warning--hover": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--text--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--warning--clicked": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--text--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-warning--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--status--on-warning--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-warning--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--status--on-warning--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-warning--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--status--on-warning--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--danger--default": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--text--color--status--danger--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--danger--hover": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--text--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--danger--clicked": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--text--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-danger--default": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-danger--hover": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-danger--clicked": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--info--default": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--text--color--status--info--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--info--hover": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--text--color--status--info--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--info--clicked": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--text--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-info--default": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-info--hover": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-info--clicked": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--custom--default": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--text--color--status--custom--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--custom--hover": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--text--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--custom--clicked": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--text--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-custom--default": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-custom--hover": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-custom--clicked": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-default--default": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-default--hover": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-default--clicked": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-attention--default": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-attention--hover": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-attention--clicked": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-red--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-red--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-red--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orangered--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orangered--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orangered--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orange--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orange--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orange--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-yellow--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-yellow--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-yellow--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-green--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-green--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-green--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-teal--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-teal--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-teal--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-blue--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-blue--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-blue--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-purple--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-purple--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-purple--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-gray--default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "default" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-gray--hover": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-gray--clicked": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--duration--50": { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + }, + "pf-t--global--duration--100": { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + }, + "pf-t--global--duration--200": { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + }, + "pf-t--global--duration--300": { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + }, + "pf-t--global--duration--400": { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + }, + "pf-t--global--duration--500": { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + }, + "pf-t--global--duration--600": { + "type": "number", + "value": "600ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--duration--600", + "attributes": { + "category": "global", + "type": "duration", + "item": "600" + }, + "path": [ + "global", + "duration", + "600" + ] + }, + "pf-t--global--delay--100": { + "type": "number", + "value": "0ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--delay--100", + "attributes": { + "category": "global", + "type": "delay", + "item": "100" + }, + "path": [ + "global", + "delay", + "100" + ] + }, + "pf-t--global--delay--200": { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--delay--200", + "attributes": { + "category": "global", + "type": "delay", + "item": "200" + }, + "path": [ + "global", + "delay", + "200" + ] + }, + "pf-t--global--delay--300": { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--delay--300", + "attributes": { + "category": "global", + "type": "delay", + "item": "300" + }, + "path": [ + "global", + "delay", + "300" + ] + }, + "pf-t--global--delay--400": { + "type": "number", + "value": "7000ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 7000 + }, + "name": "pf-t--global--delay--400", + "attributes": { + "category": "global", + "type": "delay", + "item": "400" + }, + "path": [ + "global", + "delay", + "400" + ] + }, + "pf-t--global--timing-function--100": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)" + }, + "name": "pf-t--global--timing-function--100", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "100" + }, + "path": [ + "global", + "timing-function", + "100" + ] + }, + "pf-t--global--timing-function--200": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--200", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "200" + }, + "path": [ + "global", + "timing-function", + "200" + ] + }, + "pf-t--global--timing-function--300": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--300", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "300" + }, + "path": [ + "global", + "timing-function", + "300" + ] + }, + "pf-t--global--motion--duration--xs": { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.50}" + }, + "name": "pf-t--global--motion--duration--xs", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xs" + }, + "path": [ + "global", + "motion", + "duration", + "xs" + ], + "references": [ + { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + } + ] + }, + "pf-t--global--motion--duration--sm": { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + }, + "pf-t--global--motion--duration--md": { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + }, + "pf-t--global--motion--duration--lg": { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + }, + "pf-t--global--motion--duration--xl": { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + }, + "pf-t--global--motion--duration--2xl": { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + }, + "pf-t--global--motion--duration--3xl": { + "type": "number", + "value": "600ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.600}" + }, + "name": "pf-t--global--motion--duration--3xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "3xl" + }, + "path": [ + "global", + "motion", + "duration", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "600ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--duration--600", + "attributes": { + "category": "global", + "type": "duration", + "item": "600" + }, + "path": [ + "global", + "duration", + "600" + ] + } + ] + }, + "pf-t--global--motion--duration--fade--short": { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.motion.duration.sm}" + }, + "name": "pf-t--global--motion--duration--fade--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "short" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--fade--default": { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.motion.duration.md}" + }, + "name": "pf-t--global--motion--duration--fade--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "default" + ], + "references": [ + { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--fade--long": { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--fade--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "long" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-out--short": { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--slide-out--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "short" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-out--default": { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.motion.duration.xl}" + }, + "name": "pf-t--global--motion--duration--slide-out--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "default" + ], + "references": [ + { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-out--long": { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.motion.duration.2xl}" + }, + "name": "pf-t--global--motion--duration--slide-out--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "long" + ], + "references": [ + { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-in--short": { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--slide-in--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "short" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-in--default": { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.motion.duration.xl}" + }, + "name": "pf-t--global--motion--duration--slide-in--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "default" + ], + "references": [ + { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-in--long": { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.motion.duration.2xl}" + }, + "name": "pf-t--global--motion--duration--slide-in--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "long" + ], + "references": [ + { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--icon--short": { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.motion.duration.xs}" + }, + "name": "pf-t--global--motion--duration--icon--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "short" + ], + "references": [ + { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.50}" + }, + "name": "pf-t--global--motion--duration--xs", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xs" + }, + "path": [ + "global", + "motion", + "duration", + "xs" + ], + "references": [ + { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--icon--default": { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.motion.duration.sm}" + }, + "name": "pf-t--global--motion--duration--icon--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "default" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--icon--long": { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.motion.duration.md}" + }, + "name": "pf-t--global--motion--duration--icon--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "long" + ], + "references": [ + { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--motion--delay--none": { + "type": "number", + "value": "0ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.delay.100}" + }, + "name": "pf-t--global--motion--delay--none", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "none" + }, + "path": [ + "global", + "motion", + "delay", + "none" + ], + "references": [ + { + "type": "number", + "value": "0ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--delay--100", + "attributes": { + "category": "global", + "type": "delay", + "item": "100" + }, + "path": [ + "global", + "delay", + "100" + ] + } + ] + }, + "pf-t--global--motion--delay--short": { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.delay.200}" + }, + "name": "pf-t--global--motion--delay--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "short" + }, + "path": [ + "global", + "motion", + "delay", + "short" + ], + "references": [ + { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--delay--200", + "attributes": { + "category": "global", + "type": "delay", + "item": "200" + }, + "path": [ + "global", + "delay", + "200" + ] + } + ] + }, + "pf-t--global--motion--delay--default": { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.delay.300}" + }, + "name": "pf-t--global--motion--delay--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "default" + }, + "path": [ + "global", + "motion", + "delay", + "default" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--delay--300", + "attributes": { + "category": "global", + "type": "delay", + "item": "300" + }, + "path": [ + "global", + "delay", + "300" + ] + } + ] + }, + "pf-t--global--motion--delay--long": { + "type": "number", + "value": "7000ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.delay.400}" + }, + "name": "pf-t--global--motion--delay--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "long" + }, + "path": [ + "global", + "motion", + "delay", + "long" + ], + "references": [ + { + "type": "number", + "value": "7000ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 7000 + }, + "name": "pf-t--global--delay--400", + "attributes": { + "category": "global", + "type": "delay", + "item": "400" + }, + "path": [ + "global", + "delay", + "400" + ] + } + ] + }, + "pf-t--global--motion--timing-function--accelerate": { + "type": "number", + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.timing-function.100}" + }, + "name": "pf-t--global--motion--timing-function--accelerate", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "accelerate" + }, + "path": [ + "global", + "motion", + "timing-function", + "accelerate" + ], + "references": [ + { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)" + }, + "name": "pf-t--global--timing-function--100", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "100" + }, + "path": [ + "global", + "timing-function", + "100" + ] + } + ] + }, + "pf-t--global--motion--timing-function--default": { + "type": "number", + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.timing-function.200}" + }, + "name": "pf-t--global--motion--timing-function--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "default" + }, + "path": [ + "global", + "motion", + "timing-function", + "default" + ], + "references": [ + { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--200", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "200" + }, + "path": [ + "global", + "timing-function", + "200" + ] + } + ] + }, + "pf-t--global--motion--timing-function--decelerate": { + "type": "number", + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.timing-function.300}" + }, + "name": "pf-t--global--motion--timing-function--decelerate", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "decelerate" + }, + "path": [ + "global", + "motion", + "timing-function", + "decelerate" + ], + "references": [ + { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--300", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "300" + }, + "path": [ + "global", + "timing-function", + "300" + ] + } + ] + }, + "pf-t--chart--color--blue--100": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + }, + "pf-t--chart--color--blue--200": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + }, + "pf-t--chart--color--blue--300": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + }, + "pf-t--chart--color--blue--400": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + }, + "pf-t--chart--color--blue--500": { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.70}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + } + ] + }, + "pf-t--chart--color--green--100": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + }, + "pf-t--chart--color--green--200": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + }, + "pf-t--chart--color--green--300": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + }, + "pf-t--chart--color--green--400": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + }, + "pf-t--chart--color--green--500": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + }, + "pf-t--chart--color--teal--100": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + }, + "pf-t--chart--color--teal--200": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + }, + "pf-t--chart--color--teal--300": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + }, + "pf-t--chart--color--teal--400": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + }, + "pf-t--chart--color--teal--500": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + }, + "pf-t--chart--color--purple--100": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + }, + "pf-t--chart--color--purple--200": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + }, + "pf-t--chart--color--purple--300": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + }, + "pf-t--chart--color--purple--400": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + }, + "pf-t--chart--color--purple--500": { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.70}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#21134d" + }, + "name": "pf-t--color--purple--70", + "attributes": { + "category": "color", + "type": "purple", + "item": "70" + }, + "path": [ + "color", + "purple", + "70" + ] + } + ] + }, + "pf-t--chart--color--yellow--100": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + }, + "pf-t--chart--color--yellow--200": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--chart--color--yellow--300": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--chart--color--yellow--400": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + }, + "pf-t--chart--color--yellow--500": { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.60}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + } + ] + }, + "pf-t--chart--color--orange--100": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + }, + "pf-t--chart--color--orange--200": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + }, + "pf-t--chart--color--orange--300": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + }, + "pf-t--chart--color--orange--400": { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.60}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + } + ] + }, + "pf-t--chart--color--orange--500": { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.70}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + } + ] + }, + "pf-t--chart--color--red-orange--100": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--chart--color--red-orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "red-orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + }, + "pf-t--chart--color--red-orange--200": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--chart--color--red-orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "red-orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + }, + "pf-t--chart--color--red-orange--300": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--chart--color--red-orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "red-orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + }, + "pf-t--chart--color--red-orange--400": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--chart--color--red-orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "red-orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + }, + "pf-t--chart--color--red-orange--500": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--chart--color--red-orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "red-orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + }, + "pf-t--chart--color--black--100": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--chart--color--black--200": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--chart--color--black--300": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--chart--color--black--400": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--chart--color--black--500": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--chart--global--BorderWidth--xs": { + "type": "number", + "value": 1, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--chart--global--BorderWidth--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "xs" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "xs" + ] + }, + "pf-t--chart--global--BorderWidth--sm": { + "type": "number", + "value": 2, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--chart--global--BorderWidth--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "sm" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "sm" + ] + }, + "pf-t--chart--global--BorderWidth--lg": { + "type": "number", + "value": 8, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--chart--global--BorderWidth--lg", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "lg" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "lg" + ] + }, + "pf-t--chart--global--stroke--width--xs": { + "type": "number", + "value": 1, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--chart--global--stroke--width--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke", + "subitem": "width", + "state": "xs" + }, + "path": [ + "chart", + "global", + "stroke", + "width", + "xs" + ] + }, + "pf-t--chart--global--stroke--width--sm": { + "type": "number", + "value": 2, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--chart--global--stroke--width--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke", + "subitem": "width", + "state": "sm" + }, + "path": [ + "chart", + "global", + "stroke", + "width", + "sm" + ] + }, + "pf-t--chart--global--fill--color--100": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--global--fill--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--chart--global--fill--color--200": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--global--fill--color--200", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "200" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--chart--global--fill--color--300": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--global--fill--color--300", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "300" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--chart--global--fill--color--400": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--global--fill--color--400", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "400" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--chart--global--fill--color--500": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--global--fill--color--500", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "500" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "500" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--chart--global--fill--color--700": { + "type": "color", + "value": "#383838", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--chart--global--fill--color--700", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "700" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "700" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + }, + "pf-t--chart--global--fill--color--900": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--chart--global--fill--color--900", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "900" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "900" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + }, + "pf-t--chart--global--fill--color--white": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--chart--global--fill--color--white", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "white" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "white" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--chart--global--warning--color--100": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--global--warning--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "warning", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "warning", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + }, + "pf-t--chart--global--warning--color--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--global--warning--color--200", + "attributes": { + "category": "chart", + "type": "global", + "item": "warning", + "subitem": "color", + "state": "200" + }, + "path": [ + "chart", + "global", + "warning", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--chart--global--success--color--100": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--global--success--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "success", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "success", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + }, + "pf-t--chart--global--danger--color--100": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--chart--global--danger--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "danger", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "danger", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + }, + "pf-t--chart--global--FontSize--xs": { + "type": "number", + "value": 12, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--chart--global--FontSize--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "xs" + }, + "path": [ + "chart", + "global", + "FontSize", + "xs" + ] + }, + "pf-t--chart--global--FontSize--sm": { + "type": "number", + "value": 14, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--chart--global--FontSize--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "sm" + }, + "path": [ + "chart", + "global", + "FontSize", + "sm" + ] + }, + "pf-t--chart--global--FontSize--lg": { + "type": "number", + "value": 18, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--chart--global--FontSize--lg", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "lg" + }, + "path": [ + "chart", + "global", + "FontSize", + "lg" + ] + }, + "pf-t--chart--global--FontSize--2xl": { + "type": "number", + "value": 22, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--chart--global--FontSize--2xl", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "2xl" + }, + "path": [ + "chart", + "global", + "FontSize", + "2xl" + ] + }, + "pf-t--chart--global--letter-spacing": { + "type": "string", + "value": "normal", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "string", + "value": "normal" + }, + "name": "pf-t--chart--global--letter-spacing", + "attributes": { + "category": "chart", + "type": "global", + "item": "letter-spacing" + }, + "path": [ + "chart", + "global", + "letter-spacing" + ] + }, + "pf-t--chart--global--stroke-line-cap": { + "type": "string", + "value": "round", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "string", + "value": "round" + }, + "name": "pf-t--chart--global--stroke-line-cap", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke-line-cap" + }, + "path": [ + "chart", + "global", + "stroke-line-cap" + ] + }, + "pf-t--chart--global--label--padding": { + "type": "number", + "value": 10, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 10 + }, + "name": "pf-t--chart--global--label--padding", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "padding" + }, + "path": [ + "chart", + "global", + "label", + "padding" + ] + }, + "pf-t--chart--global--label--margin": { + "type": "number", + "value": 8, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--chart--global--label--margin", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "margin" + }, + "path": [ + "chart", + "global", + "label", + "margin" + ] + }, + "pf-t--chart--global--label--stroke": { + "width": { + "type": "number", + "value": 0, + "filePath": "tokens/default/charts.json", + "isSource": true + }, + "type": "string", + "value": "transparent", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "width": { + "type": "number", + "value": 0, + "filePath": "tokens/default/charts.json", + "isSource": true + }, + "type": "string", + "value": "transparent" + }, + "name": "pf-t--chart--global--label--stroke", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "stroke" + }, + "path": [ + "chart", + "global", + "label", + "stroke" + ] + }, + "pf-t--chart--global--label--text-anchor": { + "type": "string", + "value": "middle", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "string", + "value": "middle" + }, + "name": "pf-t--chart--global--label--text-anchor", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "text-anchor" + }, + "path": [ + "chart", + "global", + "label", + "text-anchor" + ] + }, + "pf-t--chart--global--label--fill": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--chart--global--label--fill", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "fill" + }, + "path": [ + "chart", + "global", + "label", + "fill" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + }, + "pf-t--chart--global--layout--padding": { + "type": "number", + "value": 50, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--chart--global--layout--padding", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "padding" + }, + "path": [ + "chart", + "global", + "layout", + "padding" + ] + }, + "pf-t--chart--global--layout--height": { + "type": "number", + "value": 300, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--chart--global--layout--height", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "height" + }, + "path": [ + "chart", + "global", + "layout", + "height" + ] + }, + "pf-t--chart--global--layout--width": { + "type": "number", + "value": 450, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 450 + }, + "name": "pf-t--chart--global--layout--width", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "width" + }, + "path": [ + "chart", + "global", + "layout", + "width" + ] + }, + "pf-t--chart--global--stroke-line-join": { + "type": "string", + "value": "round", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "string", + "value": "round" + }, + "name": "pf-t--chart--global--stroke-line-join", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke-line-join" + }, + "path": [ + "chart", + "global", + "stroke-line-join" + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--100": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--200": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--300": { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.70}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--400": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--500": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--100": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--200": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--300": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--400": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--500": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--100": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--200": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--300": { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.60}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--400": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--500": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.300}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--200": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.100}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--300": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.500}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--400": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.200}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--500": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.400}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--100": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--200": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--300": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--400": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--500": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--100": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.300}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--200": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.100}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--300": { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.500}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.70}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#21134d" + }, + "name": "pf-t--color--purple--70", + "attributes": { + "category": "color", + "type": "purple", + "item": "70" + }, + "path": [ + "color", + "purple", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--400": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.200}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--500": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.400}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--100": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--200": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--300": { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.70}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--400": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--500": { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.60}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "600" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "700" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "800" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900": { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "900" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.60}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1000" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100": { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1100" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.70}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1300" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1400" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500": { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1500" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.70}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1600" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1700" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1800" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1900" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2000" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2100" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2300" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2400" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500": { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2500" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.60}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "600" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "700" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "800" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900": { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "900" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.60}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1000" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100": { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1100" + ], + "references": [ + { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.70}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#21134d" + }, + "name": "pf-t--color--purple--70", + "attributes": { + "category": "color", + "type": "purple", + "item": "70" + }, + "path": [ + "color", + "purple", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1300" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1400" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500": { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1500" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.70}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1600" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1700" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1800" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900": { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1900" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.70}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2000" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2400" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2500" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2600" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2700" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2800" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2900" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3000" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3100" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3200" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300": { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3300" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.60}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3400" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3500" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--color--white": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + }, + "pf-t--color--gray--10": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + }, + "pf-t--color--gray--20": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + }, + "pf-t--color--gray--30": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + }, + "pf-t--color--gray--40": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + }, + "pf-t--color--gray--50": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + }, + "pf-t--color--gray--60": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + }, + "pf-t--color--gray--70": { + "type": "color", + "value": "#383838", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + }, + "pf-t--color--gray--80": { + "type": "color", + "value": "#292929", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + }, + "pf-t--color--gray--90": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + }, + "pf-t--color--gray--95": { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + }, + "pf-t--color--black": { + "type": "color", + "value": "#000000", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#000000" + }, + "name": "pf-t--color--black", + "attributes": { + "category": "color", + "type": "black" + }, + "path": [ + "color", + "black" + ] + }, + "pf-t--color--blue--10": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + }, + "pf-t--color--blue--20": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + }, + "pf-t--color--blue--30": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + }, + "pf-t--color--blue--40": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + }, + "pf-t--color--blue--50": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + }, + "pf-t--color--blue--60": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + }, + "pf-t--color--blue--70": { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + }, + "pf-t--color--teal--10": { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + }, + "pf-t--color--teal--20": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + }, + "pf-t--color--teal--30": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + }, + "pf-t--color--teal--40": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + }, + "pf-t--color--teal--50": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + }, + "pf-t--color--teal--60": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + }, + "pf-t--color--teal--70": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + }, + "pf-t--color--yellow--10": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + }, + "pf-t--color--yellow--20": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + }, + "pf-t--color--yellow--30": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + }, + "pf-t--color--yellow--40": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + }, + "pf-t--color--yellow--50": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + }, + "pf-t--color--yellow--60": { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + }, + "pf-t--color--yellow--70": { + "type": "color", + "value": "#73480b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#73480b" + }, + "name": "pf-t--color--yellow--70", + "attributes": { + "category": "color", + "type": "yellow", + "item": "70" + }, + "path": [ + "color", + "yellow", + "70" + ] + }, + "pf-t--color--green--10": { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + }, + "pf-t--color--green--20": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + }, + "pf-t--color--green--30": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + }, + "pf-t--color--green--40": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + }, + "pf-t--color--green--50": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + }, + "pf-t--color--green--60": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + }, + "pf-t--color--green--70": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + }, + "pf-t--color--orange--10": { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + }, + "pf-t--color--orange--20": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + }, + "pf-t--color--orange--30": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + }, + "pf-t--color--orange--40": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + }, + "pf-t--color--orange--50": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + }, + "pf-t--color--orange--60": { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + }, + "pf-t--color--orange--70": { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + }, + "pf-t--color--red-orange--10": { + "type": "color", + "value": "#ffe3d9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe3d9" + }, + "name": "pf-t--color--red-orange--10", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "10" + }, + "path": [ + "color", + "red-orange", + "10" + ] + }, + "pf-t--color--red-orange--20": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + }, + "pf-t--color--red-orange--30": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + }, + "pf-t--color--red-orange--40": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + }, + "pf-t--color--red-orange--50": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + }, + "pf-t--color--red-orange--60": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + }, + "pf-t--color--red-orange--70": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + }, + "pf-t--color--purple--10": { + "type": "color", + "value": "#ece6ff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ece6ff" + }, + "name": "pf-t--color--purple--10", + "attributes": { + "category": "color", + "type": "purple", + "item": "10" + }, + "path": [ + "color", + "purple", + "10" + ] + }, + "pf-t--color--purple--20": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + }, + "pf-t--color--purple--30": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + }, + "pf-t--color--purple--40": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + }, + "pf-t--color--purple--50": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + }, + "pf-t--color--purple--60": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + }, + "pf-t--color--purple--70": { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#21134d" + }, + "name": "pf-t--color--purple--70", + "attributes": { + "category": "color", + "type": "purple", + "item": "70" + }, + "path": [ + "color", + "purple", + "70" + ] + }, + "pf-t--color--red--10": { + "type": "color", + "value": "#fce3e3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fce3e3" + }, + "name": "pf-t--color--red--10", + "attributes": { + "category": "color", + "type": "red", + "item": "10" + }, + "path": [ + "color", + "red", + "10" + ] + }, + "pf-t--color--red--20": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + }, + "pf-t--color--red--30": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + }, + "pf-t--color--red--40": { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + }, + "pf-t--color--red--50": { + "type": "color", + "value": "#ee0000", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ee0000" + }, + "name": "pf-t--color--red--50", + "attributes": { + "category": "color", + "type": "red", + "item": "50" + }, + "path": [ + "color", + "red", + "50" + ] + }, + "pf-t--color--red--60": { + "type": "color", + "value": "#a60000", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a60000" + }, + "name": "pf-t--color--red--60", + "attributes": { + "category": "color", + "type": "red", + "item": "60" + }, + "path": [ + "color", + "red", + "60" + ] + }, + "pf-t--color--red--70": { + "type": "color", + "value": "#5f0000", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5f0000" + }, + "name": "pf-t--color--red--70", + "attributes": { + "category": "color", + "type": "red", + "item": "70" + }, + "path": [ + "color", + "red", + "70" + ] + } +} \ No newline at end of file diff --git a/packages/module/patternfly-docs/content/tokensTable.js b/packages/module/patternfly-docs/content/tokensTable.js index 3d231d4..40f5c29 100644 --- a/packages/module/patternfly-docs/content/tokensTable.js +++ b/packages/module/patternfly-docs/content/tokensTable.js @@ -1,10 +1,5 @@ -import React from "react"; -import { - SearchInput, - Toolbar, - ToolbarItem, - ToolbarContent, -} from "@patternfly/react-core"; +import React from 'react'; +import { SearchInput, Toolbar, ToolbarItem, ToolbarContent } from '@patternfly/react-core'; import { Table, Thead, @@ -14,17 +9,54 @@ import { Td, ExpandableRowContent, OuterScrollContainer, - InnerScrollContainer, -} from "@patternfly/react-table"; + InnerScrollContainer +} from '@patternfly/react-table'; // eslint-disable-next-line camelcase -import global_spacer_md from "@patternfly/react-tokens/dist/esm/global_spacer_md"; -import LevelUpAltIcon from "@patternfly/react-icons/dist/esm/icons/level-up-alt-icon"; +import global_spacer_md from '@patternfly/react-tokens/dist/esm/global_spacer_md'; +import LevelUpAltIcon from '@patternfly/react-icons/dist/esm/icons/level-up-alt-icon'; + +import * as defaultTokens from './all-tokens-default.json'; +import * as darkTokens from './all-tokens-dark.json'; + +const getTokenChain = (tokenData) => { + let tokenChain = []; + let referenceToken = tokenData?.references?.[0]; + while (referenceToken && referenceToken !== undefined) { + tokenChain = [...tokenChain, referenceToken.name]; + if (referenceToken?.references?.[0]) { + referenceToken = referenceToken?.references?.[0]; + } else { + tokenChain.push(referenceToken.value); + break; + } + } + return tokenChain; +}; + +const showTokenChain = (tokenData) => { + const tokenChain = getTokenChain(tokenData); -import * as scssAsJson from "../scssAsJson"; + return ( +
+ {tokenChain.map((nextValue, index) => ( +
+ + {nextValue} +
+ ))} +
+ ); +}; export const TokensTable = () => { - const scssVariables = Object.keys(scssAsJson); + // const scssVariables = Object.keys(scssAsJson); + const tokens = Object.entries(defaultTokens); const [searchValue, setSearchValue] = React.useState(''); const [expandedTokens, setExpandedTokens] = React.useState([]); const setExpanded = (tokenName, isExpanding = true) => @@ -32,45 +64,8 @@ export const TokensTable = () => { const otherExpandedTokens = prevExpanded.filter((n) => n !== tokenName); return isExpanding ? [...otherExpandedTokens, tokenName] : otherExpandedTokens; }); - const isTokenExpanded = (tokenName) => expandedTokens.includes(tokenName); - - const showTokenChain = (tokenName) => { - let tokenChain = []; - let tokenValue = scssAsJson[tokenName]; - - while (tokenValue !== undefined) { - tokenChain = [...tokenChain, tokenValue] - tokenValue = scssAsJson[tokenValue]; - } - return ( -
-
- - - {tokenName} - -
- {tokenChain.map((nextValue, index) => ( -
- - - {nextValue} - -
- ))} -
- ) - }; + const isTokenExpanded = (tokenName) => expandedTokens.includes(tokenName); return ( @@ -82,7 +77,7 @@ export const TokensTable = () => { placeholder="Search all tokens" value={searchValue} onChange={(_event, value) => setSearchValue(value)} - onClear={() => setSearchValue("")} + onClear={() => setSearchValue('')} /> @@ -91,17 +86,27 @@ export const TokensTable = () => { - - - + + + + + + - {scssVariables.map((tokenName, rowIndex) => { + {tokens.map(([tokenName, tokenData], rowIndex) => { if (tokenName === 'default') { - return undefined - } else if (searchValue !== '' && !tokenName.includes(searchValue)) { - return undefined + return undefined; + } else if ( + searchValue !== '' && + !( + tokenName.includes(searchValue) || + tokenData?.description?.includes(searchValue) || + tokenData?.value?.toString().includes(searchValue) + ) + ) { + return undefined; } else { - const isResolved = scssAsJson[scssAsJson[tokenName]] === undefined; + const isResolved = tokenData.references == undefined; return ( @@ -109,35 +114,33 @@ export const TokensTable = () => { expand={ !isResolved ? { - rowIndex, - isExpanded: isTokenExpanded(tokenName), - onToggle: () => - setExpanded(tokenName, !isTokenExpanded(tokenName)), - expandId: `${tokenName}-expandable-toggle`, - } + rowIndex, + isExpanded: isTokenExpanded(tokenName), + onToggle: () => setExpanded(tokenName, !isTokenExpanded(tokenName)), + expandId: `${tokenName}-expandable-toggle` + } : undefined } /> - + + {!isResolved && ( )} - ) + ); } })}
NameValue
NameValueDescription
{tokenName}{scssAsJson[scssAsJson[tokenName]] === undefined && scssAsJson[tokenName]}{tokenData.value}{tokenData.description ?? ''}
- - {showTokenChain(scssAsJson[tokenName])} - + {showTokenChain(tokenData)}
- ) + ); }; diff --git a/packages/module/patternfly-docs/scssAsJson.json b/packages/module/patternfly-docs/scssAsJson.json index e60c01c..9562b9e 100644 --- a/packages/module/patternfly-docs/scssAsJson.json +++ b/packages/module/patternfly-docs/scssAsJson.json @@ -1 +1 @@ -{"--pf-t--color--red--70":"#5f0000","--pf-t--color--red--60":"#a60000","--pf-t--color--red--50":"#ee0000","--pf-t--color--red--40":"#f56e6e","--pf-t--color--red--30":"#f9a8a8","--pf-t--color--red--20":"#fbc5c5","--pf-t--color--red--10":"#fce3e3","--pf-t--color--purple--70":"#21134d","--pf-t--color--purple--60":"#3d2785","--pf-t--color--purple--50":"#5e40be","--pf-t--color--purple--40":"#876fd4","--pf-t--color--purple--30":"#b6a6e9","--pf-t--color--purple--20":"#d0c5f4","--pf-t--color--purple--10":"#ece6ff","--pf-t--color--red-orange--70":"#731f00","--pf-t--color--red-orange--60":"#b1380b","--pf-t--color--red-orange--50":"#f0561d","--pf-t--color--red-orange--40":"#f4784a","--pf-t--color--red-orange--30":"#f89b78","--pf-t--color--red-orange--20":"#fbbea8","--pf-t--color--red-orange--10":"#ffe3d9","--pf-t--color--orange--70":"#732e00","--pf-t--color--orange--60":"#9e4a06","--pf-t--color--orange--50":"#ca6c0f","--pf-t--color--orange--40":"#f5921b","--pf-t--color--orange--30":"#f8ae54","--pf-t--color--orange--20":"#fccb8f","--pf-t--color--orange--10":"#ffe8cc","--pf-t--color--green--70":"#204d00","--pf-t--color--green--60":"#3d7317","--pf-t--color--green--50":"#63993d","--pf-t--color--green--40":"#87bb62","--pf-t--color--green--30":"#afdc8f","--pf-t--color--green--20":"#d1f1bb","--pf-t--color--green--10":"#e9f7df","--pf-t--color--yellow--70":"#73480b","--pf-t--color--yellow--60":"#96640f","--pf-t--color--yellow--50":"#b98412","--pf-t--color--yellow--40":"#dca614","--pf-t--color--yellow--30":"#ffcc17","--pf-t--color--yellow--20":"#ffe072","--pf-t--color--yellow--10":"#fff4cc","--pf-t--color--teal--70":"#004d4d","--pf-t--color--teal--60":"#147878","--pf-t--color--teal--50":"#37a3a3","--pf-t--color--teal--40":"#63bdbd","--pf-t--color--teal--30":"#9ad8d8","--pf-t--color--teal--20":"#b9e5e5","--pf-t--color--teal--10":"#daf2f2","--pf-t--color--blue--70":"#003366","--pf-t--color--blue--60":"#004d99","--pf-t--color--blue--50":"#0066cc","--pf-t--color--blue--40":"#4394e5","--pf-t--color--blue--30":"#92c5f9","--pf-t--color--blue--20":"#b9dafc","--pf-t--color--blue--10":"#e0f0ff","--pf-t--color--black":"#000000","--pf-t--color--gray--95":"#151515","--pf-t--color--gray--90":"#1f1f1f","--pf-t--color--gray--80":"#292929","--pf-t--color--gray--70":"#383838","--pf-t--color--gray--60":"#4d4d4d","--pf-t--color--gray--50":"#707070","--pf-t--color--gray--40":"#a3a3a3","--pf-t--color--gray--30":"#c7c7c7","--pf-t--color--gray--20":"#e0e0e0","--pf-t--color--gray--10":"#f2f2f2","--pf-t--color--white":"#ffffff","--pf-t--global--delay--400":"7000ms","--pf-t--global--delay--300":"100ms","--pf-t--global--delay--200":"50ms","--pf-t--global--delay--100":"0ms","--pf-t--global--duration--300":"450ms","--pf-t--global--duration--200":"250ms","--pf-t--global--duration--100":"150ms","--pf-t--global--background--color--action--plain--default":"rgba(0, 0, 0, 0.0000)","--pf-t--global--background--color--600":"rgba(199, 199, 199, 0.2500)","--pf-t--global--background--color--500":"rgba(21, 21, 21, 0.2000)","--pf-t--global--box-shadow--color--200":"rgba(0, 0, 0, 0.1200)","--pf-t--global--box-shadow--color--100":"rgba(0, 0, 0, 0.1600)","--pf-t--global--box-shadow--spread--100":"0px","--pf-t--global--box-shadow--blur--300":"24px","--pf-t--global--box-shadow--blur--200":"8px","--pf-t--global--box-shadow--blur--100":"2px","--pf-t--global--box-shadow--Y--700":"8px","--pf-t--global--box-shadow--Y--600":"4px","--pf-t--global--box-shadow--Y--500":"1px","--pf-t--global--box-shadow--Y--400":"0px","--pf-t--global--box-shadow--Y--300":"-1px","--pf-t--global--box-shadow--Y--200":"-4px","--pf-t--global--box-shadow--Y--100":"-8px","--pf-t--global--box-shadow--X--700":"8px","--pf-t--global--box-shadow--X--600":"4px","--pf-t--global--box-shadow--X--500":"1px","--pf-t--global--box-shadow--X--400":"0px","--pf-t--global--box-shadow--X--300":"-1px","--pf-t--global--box-shadow--X--200":"-4px","--pf-t--global--box-shadow--X--100":"-8px","--pf-t--global--z-index--600":"600","--pf-t--global--z-index--500":"500","--pf-t--global--z-index--400":"400","--pf-t--global--z-index--300":"300","--pf-t--global--z-index--200":"200","--pf-t--global--z-index--100":"100","--pf-t--global--font--size--800":"36px","--pf-t--global--font--size--700":"28px","--pf-t--global--font--size--600":"22px","--pf-t--global--font--size--500":"20px","--pf-t--global--font--size--400":"18px","--pf-t--global--font--size--300":"16px","--pf-t--global--font--size--200":"14px","--pf-t--global--font--size--100":"12px","--pf-t--global--border--radius--500":"999px","--pf-t--global--border--radius--400":"24px","--pf-t--global--border--radius--300":"16px","--pf-t--global--border--radius--200":"6px","--pf-t--global--border--radius--100":"4px","--pf-t--global--border--radius--0":"0px","--pf-t--global--border--width--300":"3px","--pf-t--global--border--width--200":"2px","--pf-t--global--border--width--100":"1px","--pf-t--global--icon--size--500":"96px","--pf-t--global--icon--size--400":"56px","--pf-t--global--icon--size--300":"22px","--pf-t--global--icon--size--250":"16px","--pf-t--global--icon--size--200":"14px","--pf-t--global--icon--size--100":"12px","--pf-t--global--spacer--800":"80px","--pf-t--global--spacer--700":"64px","--pf-t--global--spacer--600":"48px","--pf-t--global--spacer--500":"32px","--pf-t--global--spacer--400":"24px","--pf-t--global--spacer--300":"16px","--pf-t--global--spacer--200":"8px","--pf-t--global--spacer--100":"4px","--pf-t--global--motion--delay--long":"--pf-t--global--delay--400","--pf-t--global--motion--delay--default":"--pf-t--global--delay--300","--pf-t--global--motion--delay--short":"--pf-t--global--delay--200","--pf-t--global--motion--delay--none":"--pf-t--global--delay--100","--pf-t--global--motion--duration--long":"--pf-t--global--duration--300","--pf-t--global--motion--duration--default":"--pf-t--global--duration--200","--pf-t--global--motion--duration--short":"--pf-t--global--duration--100","--pf-t--global--text--color--link--300":"--pf-t--color--purple--50","--pf-t--global--text--color--link--200":"--pf-t--color--blue--60","--pf-t--global--text--color--link--100":"--pf-t--color--blue--50","--pf-t--global--text--color--400":"--pf-t--color--red-orange--40","--pf-t--global--text--color--300":"--pf-t--color--white","--pf-t--global--text--color--200":"--pf-t--color--gray--60","--pf-t--global--text--color--100":"--pf-t--color--gray--90","--pf-t--global--color--nonstatus--gray--300":"--pf-t--color--gray--40","--pf-t--global--color--nonstatus--gray--200":"--pf-t--color--gray--30","--pf-t--global--color--nonstatus--gray--100":"--pf-t--color--gray--20","--pf-t--global--color--nonstatus--purple--300":"--pf-t--color--purple--40","--pf-t--global--color--nonstatus--purple--200":"--pf-t--color--purple--30","--pf-t--global--color--nonstatus--purple--100":"--pf-t--color--purple--20","--pf-t--global--color--nonstatus--blue--300":"--pf-t--color--blue--40","--pf-t--global--color--nonstatus--blue--200":"--pf-t--color--blue--30","--pf-t--global--color--nonstatus--blue--100":"--pf-t--color--blue--20","--pf-t--global--color--nonstatus--cyan--300":"--pf-t--color--teal--40","--pf-t--global--color--nonstatus--cyan--200":"--pf-t--color--teal--30","--pf-t--global--color--nonstatus--cyan--100":"--pf-t--color--teal--20","--pf-t--global--color--nonstatus--green--300":"--pf-t--color--green--40","--pf-t--global--color--nonstatus--green--200":"--pf-t--color--green--30","--pf-t--global--color--nonstatus--green--100":"--pf-t--color--green--20","--pf-t--global--color--nonstatus--gold--300":"--pf-t--color--yellow--40","--pf-t--global--color--nonstatus--gold--200":"--pf-t--color--yellow--30","--pf-t--global--color--nonstatus--gold--100":"--pf-t--color--yellow--20","--pf-t--global--color--nonstatus--orange--300":"--pf-t--color--orange--40","--pf-t--global--color--nonstatus--orange--200":"--pf-t--color--orange--30","--pf-t--global--color--nonstatus--orange--100":"--pf-t--color--orange--20","--pf-t--global--color--nonstatus--orangered--300":"--pf-t--color--red-orange--40","--pf-t--global--color--nonstatus--orangered--200":"--pf-t--color--red-orange--30","--pf-t--global--color--nonstatus--orangered--100":"--pf-t--color--red-orange--20","--pf-t--global--color--nonstatus--red--300":"--pf-t--color--red--40","--pf-t--global--color--nonstatus--red--200":"--pf-t--color--red--30","--pf-t--global--color--nonstatus--red--100":"--pf-t--color--red--20","--pf-t--global--color--status--custom--200":"--pf-t--color--teal--70","--pf-t--global--color--status--custom--100":"--pf-t--color--teal--60","--pf-t--global--color--status--info--200":"--pf-t--color--purple--60","--pf-t--global--color--status--info--100":"--pf-t--color--purple--50","--pf-t--global--color--status--danger--300":"--pf-t--color--red-orange--70","--pf-t--global--color--status--danger--200":"--pf-t--color--red-orange--70","--pf-t--global--color--status--danger--100":"--pf-t--color--red-orange--60","--pf-t--global--color--status--warning--300":"--pf-t--color--yellow--50","--pf-t--global--color--status--warning--200":"--pf-t--color--yellow--40","--pf-t--global--color--status--warning--100":"--pf-t--color--yellow--30","--pf-t--global--color--status--success--200":"--pf-t--color--green--70","--pf-t--global--color--status--success--100":"--pf-t--color--green--60","--pf-t--global--color--favorite--200":"--pf-t--color--yellow--40","--pf-t--global--color--favorite--100":"--pf-t--color--yellow--30","--pf-t--global--color--disabled--300":"--pf-t--color--gray--60","--pf-t--global--color--disabled--200":"--pf-t--color--gray--40","--pf-t--global--color--disabled--100":"--pf-t--color--gray--30","--pf-t--global--color--brand--300":"--pf-t--color--blue--60","--pf-t--global--color--brand--200":"--pf-t--color--blue--50","--pf-t--global--color--brand--100":"--pf-t--color--blue--40","--pf-t--global--background--color--backdrop--default":"--pf-t--global--dark--background--color--500","--pf-t--global--background--color--action--plain--clicked":"--pf-t--global--dark--background--color--600","--pf-t--global--background--color--action--plain--hover":"--pf-t--global--dark--background--color--600","--pf-t--global--background--color--highlight--200":"--pf-t--color--yellow--40","--pf-t--global--background--color--highlight--100":"--pf-t--color--yellow--30","--pf-t--global--background--color--400":"--pf-t--color--gray--80","--pf-t--global--background--color--300":"--pf-t--color--gray--20","--pf-t--global--background--color--200":"--pf-t--color--gray--10","--pf-t--global--background--color--100":"--pf-t--color--white","--pf-t--global--box-shadow--color--lg":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--color--md":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--color--sm":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--spread--lg":"--pf-t--global--box-shadow--spread--100","--pf-t--global--box-shadow--spread--md":"--pf-t--global--box-shadow--spread--100","--pf-t--global--box-shadow--spread--sm":"--pf-t--global--box-shadow--spread--100","--pf-t--global--box-shadow--blur--lg":"--pf-t--global--box-shadow--blur--300","--pf-t--global--box-shadow--blur--md":"--pf-t--global--box-shadow--blur--200","--pf-t--global--box-shadow--blur--sm":"--pf-t--global--box-shadow--blur--100","--pf-t--global--box-shadow--Y--lg--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--lg--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--lg--bottom":"--pf-t--global--box-shadow--Y--700","--pf-t--global--box-shadow--Y--lg--top":"--pf-t--global--box-shadow--Y--100","--pf-t--global--box-shadow--Y--lg--default":"--pf-t--global--box-shadow--Y--700","--pf-t--global--box-shadow--Y--md--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--md--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--md--bottom":"--pf-t--global--box-shadow--Y--600","--pf-t--global--box-shadow--Y--md--top":"--pf-t--global--box-shadow--Y--200","--pf-t--global--box-shadow--Y--md--default":"--pf-t--global--box-shadow--Y--600","--pf-t--global--box-shadow--Y--sm--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--sm--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--sm--bottom":"--pf-t--global--box-shadow--Y--500","--pf-t--global--box-shadow--Y--sm--top":"--pf-t--global--box-shadow--Y--300","--pf-t--global--box-shadow--Y--sm--default":"--pf-t--global--box-shadow--Y--500","--pf-t--global--box-shadow--X--lg--right":"--pf-t--global--box-shadow--X--700","--pf-t--global--box-shadow--X--lg--left":"--pf-t--global--box-shadow--X--100","--pf-t--global--box-shadow--X--lg--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--lg--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--lg--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--right":"--pf-t--global--box-shadow--X--600","--pf-t--global--box-shadow--X--md--left":"--pf-t--global--box-shadow--X--200","--pf-t--global--box-shadow--X--md--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--right":"--pf-t--global--box-shadow--X--500","--pf-t--global--box-shadow--X--sm--left":"--pf-t--global--box-shadow--X--300","--pf-t--global--box-shadow--X--sm--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--z-index--2xl":"--pf-t--global--z-index--600","--pf-t--global--z-index--xl":"--pf-t--global--z-index--500","--pf-t--global--z-index--lg":"--pf-t--global--z-index--400","--pf-t--global--z-index--md":"--pf-t--global--z-index--300","--pf-t--global--z-index--sm":"--pf-t--global--z-index--200","--pf-t--global--z-index--xs":"--pf-t--global--z-index--100","--pf-t--global--font--size--4xl":"--pf-t--global--font--size--800","--pf-t--global--font--size--3xl":"--pf-t--global--font--size--700","--pf-t--global--font--size--2xl":"--pf-t--global--font--size--600","--pf-t--global--font--size--xl":"--pf-t--global--font--size--500","--pf-t--global--font--size--lg":"--pf-t--global--font--size--400","--pf-t--global--font--size--md":"--pf-t--global--font--size--300","--pf-t--global--font--size--sm":"--pf-t--global--font--size--200","--pf-t--global--font--size--xs":"--pf-t--global--font--size--100","--pf-t--global--border--color--300":"--pf-t--color--gray--50","--pf-t--global--border--color--200":"--pf-t--color--gray--40","--pf-t--global--border--color--100":"--pf-t--color--gray--30","--pf-t--global--border--radius--pill":"--pf-t--global--border--radius--500","--pf-t--global--border--radius--large":"--pf-t--global--border--radius--400","--pf-t--global--border--radius--medium":"--pf-t--global--border--radius--300","--pf-t--global--border--radius--small":"--pf-t--global--border--radius--200","--pf-t--global--border--radius--tiny":"--pf-t--global--border--radius--100","--pf-t--global--border--radius--sharp":"--pf-t--global--border--radius--0","--pf-t--global--border--width--control--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--control--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--control--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--button--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--button--hover":"--pf-t--global--border--width--200","--pf-t--global--border--width--button--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--box--status--read":"--pf-t--global--border--width--100","--pf-t--global--border--width--box--status--default":"--pf-t--global--border--width--200","--pf-t--global--border--width--box--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--box--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--box--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--extra-strong":"--pf-t--global--border--width--300","--pf-t--global--border--width--strong":"--pf-t--global--border--width--200","--pf-t--global--border--width--regular":"--pf-t--global--border--width--100","--pf-t--global--border--width--divider--clicked":"--pf-t--global--border--width--100","--pf-t--global--border--width--divider--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--divider--default":"--pf-t--global--border--width--100","--pf-t--global--icon--color--300":"--pf-t--color--white","--pf-t--global--icon--color--200":"--pf-t--color--gray--50","--pf-t--global--icon--color--100":"--pf-t--color--gray--90","--pf-t--global--icon--size--3xl":"--pf-t--global--icon--size--500","--pf-t--global--icon--size--2xl":"--pf-t--global--icon--size--400","--pf-t--global--icon--size--xl":"--pf-t--global--icon--size--300","--pf-t--global--icon--size--lg":"--pf-t--global--icon--size--250","--pf-t--global--icon--size--md":"--pf-t--global--icon--size--200","--pf-t--global--icon--size--sm":"--pf-t--global--icon--size--100","--pf-t--global--spacer--button--horizontal--plain":"--pf-t--global--spacer--200","--pf-t--global--spacer--button--horizontal--compact":"--pf-t--global--spacer--300","--pf-t--global--spacer--button--horizontal--default":"--pf-t--global--spacer--400","--pf-t--global--spacer--button--vertical--plain":"--pf-t--global--spacer--200","--pf-t--global--spacer--button--vertical--compact":"--pf-t--global--spacer--100","--pf-t--global--spacer--button--vertical--default":"--pf-t--global--spacer--200","--pf-t--global--spacer--control--horizontal--plain":"--pf-t--global--spacer--200","--pf-t--global--spacer--control--horizontal--compact":"--pf-t--global--spacer--200","--pf-t--global--spacer--control--horizontal--default":"--pf-t--global--spacer--300","--pf-t--global--spacer--control--vertical--plain":"--pf-t--global--spacer--200","--pf-t--global--spacer--control--vertical--compact":"--pf-t--global--spacer--100","--pf-t--global--spacer--control--vertical--default":"--pf-t--global--spacer--200","--pf-t--global--spacer--4xl":"--pf-t--global--spacer--800","--pf-t--global--spacer--3xl":"--pf-t--global--spacer--700","--pf-t--global--spacer--2xl":"--pf-t--global--spacer--600","--pf-t--global--spacer--xl":"--pf-t--global--spacer--500","--pf-t--global--spacer--lg":"--pf-t--global--spacer--400","--pf-t--global--spacer--md":"--pf-t--global--spacer--300","--pf-t--global--spacer--sm":"--pf-t--global--spacer--200","--pf-t--global--spacer--xs":"--pf-t--global--spacer--100","--pf-t--global--text--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--text--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--text--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--text--color--required":"--pf-t--global--dark--text--color--400","--pf-t--global--text--color--on-disabled":"--pf-t--global--dark--color--disabled--300","--pf-t--global--text--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--text--color--inverse":"--pf-t--global--dark--text--color--300","--pf-t--global--text--color--subtle":"--pf-t--global--dark--text--color--200","--pf-t--global--text--color--regular":"--pf-t--global--dark--text--color--100","--pf-t--global--text--color--link--visited":"--pf-t--global--dark--text--color--link--300","--pf-t--global--text--color--link--hover":"--pf-t--global--dark--text--color--link--200","--pf-t--global--text--color--link--default":"--pf-t--global--dark--text--color--link--100","--pf-t--global--color--nonstatus--gray--clicked":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--color--nonstatus--gray--hover":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--color--nonstatus--gray--default":"--pf-t--global--dark--color--nonstatus--gray--100","--pf-t--global--color--nonstatus--purple--clicked":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--color--nonstatus--purple--hover":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--color--nonstatus--purple--default":"--pf-t--global--dark--color--nonstatus--purple--100","--pf-t--global--color--nonstatus--blue--clicked":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--color--nonstatus--blue--hover":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--color--nonstatus--blue--default":"--pf-t--global--dark--color--nonstatus--blue--100","--pf-t--global--color--nonstatus--cyan--clicked":"--pf-t--global--dark--color--nonstatus--cyan--200","--pf-t--global--color--nonstatus--cyan--hover":"--pf-t--global--dark--color--nonstatus--cyan--200","--pf-t--global--color--nonstatus--cyan--default":"--pf-t--global--dark--color--nonstatus--cyan--100","--pf-t--global--color--nonstatus--green--clicked":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--color--nonstatus--green--hover":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--color--nonstatus--green--default":"--pf-t--global--dark--color--nonstatus--green--100","--pf-t--global--color--nonstatus--gold--clicked":"--pf-t--global--dark--color--nonstatus--gold--200","--pf-t--global--color--nonstatus--gold--hover":"--pf-t--global--dark--color--nonstatus--gold--200","--pf-t--global--color--nonstatus--gold--default":"--pf-t--global--dark--color--nonstatus--gold--100","--pf-t--global--color--nonstatus--orange--clicked":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--color--nonstatus--orange--hover":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--color--nonstatus--orange--default":"--pf-t--global--dark--color--nonstatus--orange--100","--pf-t--global--color--nonstatus--orangered--clicked":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--color--nonstatus--orangered--hover":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--color--nonstatus--orangered--default":"--pf-t--global--dark--color--nonstatus--orangered--100","--pf-t--global--color--nonstatus--red--clicked":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--color--nonstatus--red--hover":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--color--nonstatus--red--default":"--pf-t--global--dark--color--nonstatus--red--100","--pf-t--global--color--status--custom--clicked":"--pf-t--global--dark--color--status--custom--200","--pf-t--global--color--status--custom--hover":"--pf-t--global--dark--color--status--custom--200","--pf-t--global--color--status--custom--default":"--pf-t--global--dark--color--status--custom--100","--pf-t--global--color--status--info--clicked":"--pf-t--global--dark--color--status--info--200","--pf-t--global--color--status--info--hover":"--pf-t--global--dark--color--status--info--200","--pf-t--global--color--status--info--default":"--pf-t--global--dark--color--status--info--100","--pf-t--global--color--status--danger--clicked":"--pf-t--global--dark--color--status--danger--200","--pf-t--global--color--status--danger--hover":"--pf-t--global--dark--color--status--danger--200","--pf-t--global--color--status--danger--default":"--pf-t--global--dark--color--status--danger--100","--pf-t--global--color--status--warning--clicked":"--pf-t--global--dark--color--status--warning--200","--pf-t--global--color--status--warning--hover":"--pf-t--global--dark--color--status--warning--200","--pf-t--global--color--status--warning--default":"--pf-t--global--dark--color--status--warning--100","--pf-t--global--color--status--success--clicked":"--pf-t--global--dark--color--status--success--200","--pf-t--global--color--status--success--hover":"--pf-t--global--dark--color--status--success--200","--pf-t--global--color--status--success--default":"--pf-t--global--dark--color--status--success--100","--pf-t--global--color--favorite--clicked":"--pf-t--global--dark--color--favorite--200","--pf-t--global--color--favorite--hover":"--pf-t--global--dark--color--favorite--200","--pf-t--global--color--favorite--default":"--pf-t--global--dark--color--favorite--100","--pf-t--global--color--brand--clicked":"--pf-t--global--dark--color--brand--200","--pf-t--global--color--brand--hover":"--pf-t--global--dark--color--brand--200","--pf-t--global--color--brand--default":"--pf-t--global--dark--color--brand--100","--pf-t--global--background--color--disabled--default":"--pf-t--global--dark--color--disabled--100","--pf-t--global--background--color--inverse--default":"--pf-t--global--dark--background--color--400","--pf-t--global--background--color--action--plain--alt--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--action--plain--alt--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--floating--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--floating--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--floating--default":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--secondary--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--secondary--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--secondary--default":"--pf-t--global--dark--background--color--100","--pf-t--global--background--color--primary--clicked":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--primary--hover":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--primary--default":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--highlight--clicked":"--pf-t--global--dark--background--color--highlight--200","--pf-t--global--background--color--highlight--default":"--pf-t--global--dark--background--color--highlight--100","--pf-t--global--font--size--heading--h6":"--pf-t--global--font--size--md","--pf-t--global--font--size--heading--h5":"--pf-t--global--font--size--md","--pf-t--global--font--size--heading--h4":"--pf-t--global--font--size--md","--pf-t--global--font--size--heading--h3":"--pf-t--global--font--size--lg","--pf-t--global--font--size--heading--h2":"--pf-t--global--font--size--xl","--pf-t--global--font--size--heading--h1":"--pf-t--global--font--size--2xl","--pf-t--global--font--size--body--lg":"--pf-t--global--font--size--md","--pf-t--global--font--size--body--default":"--pf-t--global--font--size--sm","--pf-t--global--font--size--body--sm":"--pf-t--global--font--size--xs","--pf-t--global--border--color--nonstatus--gray--clicked":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--border--color--nonstatus--gray--hover":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--border--color--nonstatus--gray--default":"--pf-t--global--dark--color--nonstatus--gray--100","--pf-t--global--border--color--nonstatus--purple--clicked":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--border--color--nonstatus--purple--hover":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--border--color--nonstatus--purple--default":"--pf-t--global--dark--color--nonstatus--purple--100","--pf-t--global--border--color--nonstatus--blue--clicked":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--border--color--nonstatus--blue--hover":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--border--color--nonstatus--blue--default":"--pf-t--global--dark--color--nonstatus--blue--100","--pf-t--global--border--color--nonstatus--cyan--clicked":"--pf-t--global--dark--color--nonstatus--cyan--200","--pf-t--global--border--color--nonstatus--cyan--hover":"--pf-t--global--dark--color--nonstatus--cyan--200","--pf-t--global--border--color--nonstatus--cyan--default":"--pf-t--global--dark--color--nonstatus--cyan--100","--pf-t--global--border--color--nonstatus--green--clicked":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--border--color--nonstatus--green--hover":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--border--color--nonstatus--green--default":"--pf-t--global--dark--color--nonstatus--green--100","--pf-t--global--border--color--nonstatus--gold--clicked":"--pf-t--global--dark--color--nonstatus--gold--200","--pf-t--global--border--color--nonstatus--gold--hover":"--pf-t--global--dark--color--nonstatus--gold--200","--pf-t--global--border--color--nonstatus--gold--default":"--pf-t--global--dark--color--nonstatus--gold--100","--pf-t--global--border--color--nonstatus--orange--clicked":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--border--color--nonstatus--orange--hover":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--border--color--nonstatus--orange--default":"--pf-t--global--dark--color--nonstatus--orange--100","--pf-t--global--border--color--nonstatus--orangered--clicked":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--border--color--nonstatus--orangered--hover":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--border--color--nonstatus--orangered--default":"--pf-t--global--dark--color--nonstatus--orangered--100","--pf-t--global--border--color--nonstatus--red--clicked":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--border--color--nonstatus--red--hover":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--border--color--nonstatus--red--default":"--pf-t--global--dark--color--nonstatus--red--100","--pf-t--global--border--color--on-secondary":"--pf-t--global--dark--border--color--200","--pf-t--global--border--color--clicked":"--pf-t--global--dark--color--brand--200","--pf-t--global--border--color--hover":"--pf-t--global--dark--color--brand--100","--pf-t--global--border--color--default":"--pf-t--global--dark--border--color--200","--pf-t--global--border--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--border--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--border--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--icon--color--on-disabled":"--pf-t--global--dark--color--disabled--300","--pf-t--global--icon--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--icon--color--inverse":"--pf-t--global--dark--icon--color--300","--pf-t--global--icon--color--subtle":"--pf-t--global--dark--icon--color--200","--pf-t--global--icon--color--regular":"--pf-t--global--dark--icon--color--100","--pf-t--global--icon--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--icon--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--icon--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--icon--size--font--4xl":"--pf-t--global--font--size--4xl","--pf-t--global--icon--size--font--3xl":"--pf-t--global--font--size--3xl","--pf-t--global--icon--size--font--2xl":"--pf-t--global--font--size--2xl","--pf-t--global--icon--size--font--xl":"--pf-t--global--font--size--xl","--pf-t--global--icon--size--font--lg":"--pf-t--global--font--size--lg","--pf-t--global--icon--size--font--md":"--pf-t--global--font--size--md","--pf-t--global--icon--size--font--sm":"--pf-t--global--font--size--sm","--pf-t--global--icon--size--font--xs":"--pf-t--global--font--size--xs","--pf-t--global--text--color--nonstatus--on-gray--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gray--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gray--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-blue--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-blue--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-blue--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-cyan--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-cyan--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-cyan--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gold--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gold--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gold--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-attention--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-attention--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-attention--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-custom--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-custom--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-custom--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--text--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--text--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--text--color--status--on-info--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-info--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-info--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--text--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--text--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--text--color--status--on-danger--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-danger--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-danger--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--danger--clicked":"--pf-t--global--dark--color--status--danger--300","--pf-t--global--text--color--status--danger--hover":"--pf-t--global--dark--color--status--danger--300","--pf-t--global--text--color--status--danger--default":"--pf-t--global--dark--color--status--danger--250","--pf-t--global--text--color--status--on-warning--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-warning--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-warning--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--text--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--text--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--text--color--brand--clicked":"--pf-t--global--dark--color--brand--300","--pf-t--global--text--color--brand--hover":"--pf-t--global--dark--color--brand--300","--pf-t--global--text--color--brand--default":"--pf-t--global--dark--color--brand--200","--pf-t--global--text--color--placeholder":"--pf-t--global--text--color--subtle","--pf-t--global--text--color--on-brand--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--on-brand--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--on-brand--default":"--pf-t--global--text--color--inverse","--pf-t--global--color--status--read--on-primary":"--pf-t--global--background--color--secondary--default","--pf-t--global--color--status--unread--attention--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--color--status--unread--attention--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--color--status--unread--attention--default":"--pf-t--global--color--status--danger--default","--pf-t--global--color--status--unread--default--clicked":"--pf-t--global--color--brand--clicked","--pf-t--global--color--status--unread--default--hover":"--pf-t--global--color--brand--hover","--pf-t--global--color--status--unread--default--default":"--pf-t--global--color--brand--default","--pf-t--global--background--color--control--default":"--pf-t--global--dark--background--color--300","--pf-t--global--border--color--alt":"--pf-t--global--background--color--primary--default","--pf-t--global--border--color--disabled":"--pf-t--global--background--color--disabled--default","--pf-t--global--border--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--border--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--border--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--border--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--border--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--border--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--border--color--status--danger--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--border--color--status--danger--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--border--color--status--danger--default":"--pf-t--global--color--status--danger--default","--pf-t--global--border--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--border--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--border--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--border--color--brand--clicked":"--pf-t--global--color--brand--clicked","--pf-t--global--border--color--brand--hover":"--pf-t--global--color--brand--hover","--pf-t--global--border--color--brand--default":"--pf-t--global--color--brand--default","--pf-t--global--icon--color--nonstatus--on-gray--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gray--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gray--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-blue--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-blue--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-blue--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-cyan--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-cyan--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-cyan--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gold--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gold--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gold--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-attention--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-attention--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-attention--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-custom--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-custom--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-custom--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--icon--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--icon--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--icon--color--status--on-info--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-info--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-info--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--icon--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--icon--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--icon--color--status--on-danger--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-danger--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-danger--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--danger--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--icon--color--status--danger--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--icon--color--status--danger--default":"--pf-t--global--color--status--danger--default","--pf-t--global--icon--color--status--on-warning--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-warning--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-warning--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--icon--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--icon--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--icon--color--favorite--clicked":"--pf-t--global--color--favorite--clicked","--pf-t--global--icon--color--favorite--hover":"--pf-t--global--color--favorite--hover","--pf-t--global--icon--color--favorite--default":"--pf-t--global--color--favorite--default","--pf-t--global--icon--color--on-brand--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--on-brand--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--on-brand--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--brand--clicked":"--pf-t--global--dark--color--brand--300","--pf-t--global--icon--color--brand--hover":"--pf-t--global--dark--color--brand--300","--pf-t--global--icon--color--brand--default":"--pf-t--global--dark--color--brand--200","--pf-t--global--icon--size--font--heading--h6":"--pf-t--global--font--size--heading--h6","--pf-t--global--icon--size--font--heading--h5":"--pf-t--global--font--size--heading--h5","--pf-t--global--icon--size--font--heading--h4":"--pf-t--global--font--size--heading--h4","--pf-t--global--icon--size--font--heading--h3":"--pf-t--global--font--size--heading--h3","--pf-t--global--icon--size--font--heading--h2":"--pf-t--global--font--size--heading--h2","--pf-t--global--icon--size--font--heading--h1":"--pf-t--global--font--size--heading--h1","--pf-t--global--icon--size--font--body--lg":"--pf-t--global--font--size--body--lg","--pf-t--global--icon--size--font--body--default":"--pf-t--global--font--size--body--default","--pf-t--global--icon--size--font--body--sm":"--pf-t--global--font--size--body--sm","--pf-t--global--color--status--read--on-secondary":"--pf-t--global--background--color--control--default","--pf-t--global--dark--box-shadow--color--100":"rgba(0, 0, 0, 0.5000)","--pf-t--global--dark--background--color--600":"rgba(199, 199, 199, 0.1500)","--pf-t--global--dark--background--color--500":"rgba(21, 21, 21, 0.8000)","--pf-t--global--dark--icon--color--300":"--pf-t--color--gray--90","--pf-t--global--dark--icon--color--200":"--pf-t--color--gray--40","--pf-t--global--dark--icon--color--100":"--pf-t--color--gray--10","--pf-t--global--dark--text--color--link--300":"--pf-t--color--purple--30","--pf-t--global--dark--text--color--link--200":"--pf-t--color--blue--10","--pf-t--global--dark--text--color--link--100":"--pf-t--color--blue--20","--pf-t--global--dark--text--color--400":"--pf-t--color--red-orange--30","--pf-t--global--dark--text--color--300":"--pf-t--color--gray--90","--pf-t--global--dark--text--color--200":"--pf-t--color--gray--30","--pf-t--global--dark--text--color--100":"--pf-t--color--gray--10","--pf-t--global--dark--border--color--200":"--pf-t--color--gray--40","--pf-t--global--dark--border--color--100":"--pf-t--color--gray--50","--pf-t--global--dark--color--nonstatus--gray--300":"--pf-t--color--gray--10","--pf-t--global--dark--color--nonstatus--gray--200":"--pf-t--color--gray--20","--pf-t--global--dark--color--nonstatus--gray--100":"--pf-t--color--gray--30","--pf-t--global--dark--color--nonstatus--purple--300":"--pf-t--color--purple--10","--pf-t--global--dark--color--nonstatus--purple--200":"--pf-t--color--purple--20","--pf-t--global--dark--color--nonstatus--purple--100":"--pf-t--color--purple--30","--pf-t--global--dark--color--nonstatus--blue--300":"--pf-t--color--blue--10","--pf-t--global--dark--color--nonstatus--blue--200":"--pf-t--color--blue--20","--pf-t--global--dark--color--nonstatus--blue--100":"--pf-t--color--blue--30","--pf-t--global--dark--color--nonstatus--cyan--300":"--pf-t--color--teal--10","--pf-t--global--dark--color--nonstatus--cyan--200":"--pf-t--color--teal--20","--pf-t--global--dark--color--nonstatus--cyan--100":"--pf-t--color--teal--30","--pf-t--global--dark--color--nonstatus--green--300":"--pf-t--color--green--10","--pf-t--global--dark--color--nonstatus--green--200":"--pf-t--color--green--20","--pf-t--global--dark--color--nonstatus--green--100":"--pf-t--color--green--30","--pf-t--global--dark--color--nonstatus--gold--300":"--pf-t--color--yellow--10","--pf-t--global--dark--color--nonstatus--gold--200":"--pf-t--color--yellow--20","--pf-t--global--dark--color--nonstatus--gold--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--nonstatus--orange--300":"--pf-t--color--orange--10","--pf-t--global--dark--color--nonstatus--orange--200":"--pf-t--color--orange--20","--pf-t--global--dark--color--nonstatus--orange--100":"--pf-t--color--orange--30","--pf-t--global--dark--color--nonstatus--orangered--300":"--pf-t--color--red-orange--10","--pf-t--global--dark--color--nonstatus--orangered--200":"--pf-t--color--red-orange--20","--pf-t--global--dark--color--nonstatus--orangered--100":"--pf-t--color--red-orange--30","--pf-t--global--dark--color--nonstatus--red--300":"--pf-t--color--red--10","--pf-t--global--dark--color--nonstatus--red--200":"--pf-t--color--red--20","--pf-t--global--dark--color--nonstatus--red--100":"--pf-t--color--red--30","--pf-t--global--dark--color--status--custom--200":"--pf-t--color--teal--30","--pf-t--global--dark--color--status--custom--100":"--pf-t--color--teal--40","--pf-t--global--dark--color--status--info--200":"--pf-t--color--purple--20","--pf-t--global--dark--color--status--info--100":"--pf-t--color--purple--30","--pf-t--global--dark--color--status--danger--300":"--pf-t--color--red-orange--20","--pf-t--global--dark--color--status--danger--250":"--pf-t--color--red-orange--30","--pf-t--global--dark--color--status--danger--200":"--pf-t--color--red-orange--40","--pf-t--global--dark--color--status--danger--100":"--pf-t--color--red-orange--50","--pf-t--global--dark--color--status--warning--200":"--pf-t--color--yellow--20","--pf-t--global--dark--color--status--warning--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--status--success--200":"--pf-t--color--green--30","--pf-t--global--dark--color--status--success--100":"--pf-t--color--green--40","--pf-t--global--dark--color--favorite--200":"--pf-t--color--yellow--20","--pf-t--global--dark--color--favorite--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--disabled--300":"--pf-t--color--gray--70","--pf-t--global--dark--color--disabled--200":"--pf-t--color--gray--50","--pf-t--global--dark--color--disabled--100":"--pf-t--color--gray--40","--pf-t--global--dark--color--brand--300":"--pf-t--color--blue--10","--pf-t--global--dark--color--brand--200":"--pf-t--color--blue--20","--pf-t--global--dark--color--brand--100":"--pf-t--color--blue--30","--pf-t--global--dark--background--color--highlight--200":"--pf-t--color--yellow--30","--pf-t--global--dark--background--color--highlight--100":"--pf-t--color--yellow--20","--pf-t--global--dark--background--color--400":"--pf-t--color--gray--10","--pf-t--global--dark--background--color--300":"--pf-t--color--gray--70","--pf-t--global--dark--background--color--200":"--pf-t--color--gray--80","--pf-t--global--dark--background--color--100":"--pf-t--color--gray--95","--pf-t--chart--global--layout--width":"450","--pf-t--chart--global--layout--height":"300","--pf-t--chart--global--layout--padding":"50","--pf-t--chart--global--label--stroke--width":"0","--pf-t--chart--global--label--margin":"8","--pf-t--chart--global--label--padding":"10","--pf-t--chart--global--FontSize--2xl":"22","--pf-t--chart--global--FontSize--lg":"18","--pf-t--chart--global--FontSize--sm":"14","--pf-t--chart--global--FontSize--xs":"12","--pf-t--chart--global--stroke--width--sm":"2","--pf-t--chart--global--stroke--width--xs":"1","--pf-t--chart--global--BorderWidth--lg":"8","--pf-t--chart--global--BorderWidth--sm":"2","--pf-t--chart--global--BorderWidth--xs":"1","--pf-t--chart--global--label--fill":"--pf-t--color--gray--90","--pf-t--chart--global--danger--color--100":"--pf-t--color--red-orange--50","--pf-t--chart--global--success--color--100":"--pf-t--color--blue--30","--pf-t--chart--global--warning--color--200":"--pf-t--color--yellow--30","--pf-t--chart--global--warning--color--100":"--pf-t--color--orange--30","--pf-t--chart--global--fill--color--white":"--pf-t--color--white","--pf-t--chart--global--fill--color--900":"--pf-t--color--white","--pf-t--chart--global--fill--color--700":"--pf-t--color--gray--10","--pf-t--chart--global--fill--color--500":"--pf-t--color--gray--20","--pf-t--chart--global--fill--color--400":"--pf-t--color--gray--30","--pf-t--chart--global--fill--color--300":"--pf-t--color--gray--40","--pf-t--chart--global--fill--color--200":"--pf-t--color--gray--50","--pf-t--chart--global--fill--color--100":"--pf-t--color--gray--60","--pf-t--chart--color--black--500":"--pf-t--color--gray--10","--pf-t--chart--color--black--400":"--pf-t--color--gray--20","--pf-t--chart--color--black--300":"--pf-t--color--gray--30","--pf-t--chart--color--black--200":"--pf-t--color--gray--40","--pf-t--chart--color--black--100":"--pf-t--color--gray--50","--pf-t--chart--color--red-orange--500":"--pf-t--color--red-orange--10","--pf-t--chart--color--red-orange--400":"--pf-t--color--red-orange--20","--pf-t--chart--color--red-orange--300":"--pf-t--color--red-orange--30","--pf-t--chart--color--red-orange--200":"--pf-t--color--red-orange--40","--pf-t--chart--color--red-orange--100":"--pf-t--color--red-orange--50","--pf-t--chart--color--orange--500":"--pf-t--color--orange--10","--pf-t--chart--color--orange--400":"--pf-t--color--orange--20","--pf-t--chart--color--orange--300":"--pf-t--color--orange--30","--pf-t--chart--color--orange--200":"--pf-t--color--orange--40","--pf-t--chart--color--orange--100":"--pf-t--color--orange--50","--pf-t--chart--color--yellow--500":"--pf-t--color--yellow--10","--pf-t--chart--color--yellow--400":"--pf-t--color--yellow--20","--pf-t--chart--color--yellow--300":"--pf-t--color--yellow--30","--pf-t--chart--color--yellow--200":"--pf-t--color--yellow--40","--pf-t--chart--color--yellow--100":"--pf-t--color--yellow--50","--pf-t--chart--color--purple--500":"--pf-t--color--purple--20","--pf-t--chart--color--purple--400":"--pf-t--color--purple--30","--pf-t--chart--color--purple--300":"--pf-t--color--purple--40","--pf-t--chart--color--purple--200":"--pf-t--color--purple--50","--pf-t--chart--color--purple--100":"--pf-t--color--purple--60","--pf-t--chart--color--teal--500":"--pf-t--color--teal--10","--pf-t--chart--color--teal--400":"--pf-t--color--teal--20","--pf-t--chart--color--teal--300":"--pf-t--color--teal--30","--pf-t--chart--color--teal--200":"--pf-t--color--teal--40","--pf-t--chart--color--teal--100":"--pf-t--color--teal--50","--pf-t--chart--color--green--500":"--pf-t--color--green--10","--pf-t--chart--color--green--400":"--pf-t--color--green--20","--pf-t--chart--color--green--300":"--pf-t--color--green--30","--pf-t--chart--color--green--200":"--pf-t--color--green--40","--pf-t--chart--color--green--100":"--pf-t--color--green--50","--pf-t--chart--color--blue--500":"--pf-t--color--blue--10","--pf-t--chart--color--blue--400":"--pf-t--color--blue--20","--pf-t--chart--color--blue--300":"--pf-t--color--blue--30","--pf-t--chart--color--blue--200":"--pf-t--color--blue--40","--pf-t--chart--color--blue--100":"--pf-t--color--blue--50","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500":"--pf-t--chart--color--black--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200":"--pf-t--chart--color--purple--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000":"--pf-t--chart--color--yellow--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800":"--pf-t--chart--color--black--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500":"--pf-t--chart--color--purple--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100":"--pf-t--chart--color--black--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800":"--pf-t--chart--color--purple--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400":"--pf-t--chart--color--black--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100":"--pf-t--chart--color--purple--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800":"--pf-t--chart--color--blue--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700":"--pf-t--chart--color--black--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400":"--pf-t--chart--color--purple--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400":"--pf-t--chart--color--yellow--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600":"--pf-t--chart--color--blue--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--orange--colorscale--500":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--orange--colorscale--400":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--orange--colorscale--300":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--orange--colorscale--200":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--orange--colorscale--100":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--purple--colorscale--500":"--pf-t--chart--color--purple--400","--pf-t--chart--theme--colorscales--purple--colorscale--400":"--pf-t--chart--color--purple--200","--pf-t--chart--theme--colorscales--purple--colorscale--300":"--pf-t--chart--color--purple--500","--pf-t--chart--theme--colorscales--purple--colorscale--200":"--pf-t--chart--color--purple--100","--pf-t--chart--theme--colorscales--purple--colorscale--100":"--pf-t--chart--color--purple--300","--pf-t--chart--theme--colorscales--green--colorscale--500":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--green--colorscale--400":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--green--colorscale--300":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--green--colorscale--200":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--green--colorscale--100":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--gray--colorscale--500":"--pf-t--chart--color--black--400","--pf-t--chart--theme--colorscales--gray--colorscale--400":"--pf-t--chart--color--black--200","--pf-t--chart--theme--colorscales--gray--colorscale--300":"--pf-t--chart--color--black--500","--pf-t--chart--theme--colorscales--gray--colorscale--200":"--pf-t--chart--color--black--100","--pf-t--chart--theme--colorscales--gray--colorscale--100":"--pf-t--chart--color--black--300","--pf-t--chart--theme--colorscales--yellow--colorscale--500":"--pf-t--chart--color--yellow--400","--pf-t--chart--theme--colorscales--yellow--colorscale--400":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--yellow--colorscale--300":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--yellow--colorscale--200":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--yellow--colorscale--100":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--teal--colorscale--500":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--teal--colorscale--400":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--teal--colorscale--300":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--teal--colorscale--200":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--teal--colorscale--100":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--blue--colorscale--500":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--blue--colorscale--400":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--blue--colorscale--300":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--blue--colorscale--200":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--blue--colorscale--100":"--pf-t--chart--color--blue--300"} +{"--pf-t--color--red--70":"#5f0000","--pf-t--color--red--60":"#a60000","--pf-t--color--red--50":"#ee0000","--pf-t--color--red--40":"#f56e6e","--pf-t--color--red--30":"#f9a8a8","--pf-t--color--red--20":"#fbc5c5","--pf-t--color--red--10":"#fce3e3","--pf-t--color--purple--70":"#21134d","--pf-t--color--purple--60":"#3d2785","--pf-t--color--purple--50":"#5e40be","--pf-t--color--purple--40":"#876fd4","--pf-t--color--purple--30":"#b6a6e9","--pf-t--color--purple--20":"#d0c5f4","--pf-t--color--purple--10":"#ece6ff","--pf-t--color--red-orange--70":"#731f00","--pf-t--color--red-orange--60":"#b1380b","--pf-t--color--red-orange--50":"#f0561d","--pf-t--color--red-orange--40":"#f4784a","--pf-t--color--red-orange--30":"#f89b78","--pf-t--color--red-orange--20":"#fbbea8","--pf-t--color--red-orange--10":"#ffe3d9","--pf-t--color--orange--70":"#732e00","--pf-t--color--orange--60":"#9e4a06","--pf-t--color--orange--50":"#ca6c0f","--pf-t--color--orange--40":"#f5921b","--pf-t--color--orange--30":"#f8ae54","--pf-t--color--orange--20":"#fccb8f","--pf-t--color--orange--10":"#ffe8cc","--pf-t--color--green--70":"#204d00","--pf-t--color--green--60":"#3d7317","--pf-t--color--green--50":"#63993d","--pf-t--color--green--40":"#87bb62","--pf-t--color--green--30":"#afdc8f","--pf-t--color--green--20":"#d1f1bb","--pf-t--color--green--10":"#e9f7df","--pf-t--color--yellow--70":"#73480b","--pf-t--color--yellow--60":"#96640f","--pf-t--color--yellow--50":"#b98412","--pf-t--color--yellow--40":"#dca614","--pf-t--color--yellow--30":"#ffcc17","--pf-t--color--yellow--20":"#ffe072","--pf-t--color--yellow--10":"#fff4cc","--pf-t--color--teal--70":"#004d4d","--pf-t--color--teal--60":"#147878","--pf-t--color--teal--50":"#37a3a3","--pf-t--color--teal--40":"#63bdbd","--pf-t--color--teal--30":"#9ad8d8","--pf-t--color--teal--20":"#b9e5e5","--pf-t--color--teal--10":"#daf2f2","--pf-t--color--blue--70":"#003366","--pf-t--color--blue--60":"#004d99","--pf-t--color--blue--50":"#0066cc","--pf-t--color--blue--40":"#4394e5","--pf-t--color--blue--30":"#92c5f9","--pf-t--color--blue--20":"#b9dafc","--pf-t--color--blue--10":"#e0f0ff","--pf-t--color--black":"#000000","--pf-t--color--gray--95":"#151515","--pf-t--color--gray--90":"#1f1f1f","--pf-t--color--gray--80":"#292929","--pf-t--color--gray--70":"#383838","--pf-t--color--gray--60":"#4d4d4d","--pf-t--color--gray--50":"#707070","--pf-t--color--gray--40":"#a3a3a3","--pf-t--color--gray--30":"#c7c7c7","--pf-t--color--gray--20":"#e0e0e0","--pf-t--color--gray--10":"#f2f2f2","--pf-t--color--white":"#ffffff","--pf-t--global--timing-function--300":"cubic-bezier(0, 0, .2, 1)","--pf-t--global--timing-function--200":"cubic-bezier(.4, 0, .2, 1)","--pf-t--global--timing-function--100":"cubic-bezier(.4, 0, .7, .2)","--pf-t--global--delay--400":"7000ms","--pf-t--global--delay--300":"100ms","--pf-t--global--delay--200":"50ms","--pf-t--global--delay--100":"0ms","--pf-t--global--duration--600":"600ms","--pf-t--global--duration--500":"500ms","--pf-t--global--duration--400":"400ms","--pf-t--global--duration--300":"300ms","--pf-t--global--duration--200":"200ms","--pf-t--global--duration--100":"100ms","--pf-t--global--duration--50":"50ms","--pf-t--global--background--color--action--plain--default":"rgba(0, 0, 0, 0.0000)","--pf-t--global--background--color--600":"rgba(199, 199, 199, 0.2500)","--pf-t--global--background--color--500":"rgba(21, 21, 21, 0.2000)","--pf-t--global--breakpoint--600":"1450px","--pf-t--global--breakpoint--550":"1280px","--pf-t--global--breakpoint--500":"1200px","--pf-t--global--breakpoint--400":"992px","--pf-t--global--breakpoint--350":"960px","--pf-t--global--breakpoint--300":"768px","--pf-t--global--breakpoint--250":"640px","--pf-t--global--breakpoint--200":"576px","--pf-t--global--breakpoint--100":"0px","--pf-t--global--box-shadow--color--200":"rgba(0, 0, 0, 0.1200)","--pf-t--global--box-shadow--color--100":"rgba(0, 0, 0, 0.1600)","--pf-t--global--box-shadow--spread--100":"0px","--pf-t--global--box-shadow--blur--300":"24px","--pf-t--global--box-shadow--blur--200":"8px","--pf-t--global--box-shadow--blur--100":"2px","--pf-t--global--box-shadow--Y--700":"8px","--pf-t--global--box-shadow--Y--600":"4px","--pf-t--global--box-shadow--Y--500":"1px","--pf-t--global--box-shadow--Y--400":"0px","--pf-t--global--box-shadow--Y--300":"-1px","--pf-t--global--box-shadow--Y--200":"-4px","--pf-t--global--box-shadow--Y--100":"-8px","--pf-t--global--box-shadow--X--700":"8px","--pf-t--global--box-shadow--X--600":"4px","--pf-t--global--box-shadow--X--500":"1px","--pf-t--global--box-shadow--X--400":"0px","--pf-t--global--box-shadow--X--300":"-1px","--pf-t--global--box-shadow--X--200":"-4px","--pf-t--global--box-shadow--X--100":"-8px","--pf-t--global--z-index--600":"600","--pf-t--global--z-index--500":"500","--pf-t--global--z-index--400":"400","--pf-t--global--z-index--300":"300","--pf-t--global--z-index--200":"200","--pf-t--global--z-index--100":"100","--pf-t--global--font--size--800":"36px","--pf-t--global--font--size--700":"28px","--pf-t--global--font--size--600":"22px","--pf-t--global--font--size--500":"20px","--pf-t--global--font--size--400":"18px","--pf-t--global--font--size--300":"16px","--pf-t--global--font--size--200":"14px","--pf-t--global--font--size--100":"12px","--pf-t--global--font--line-height--figma-only--800":"46.79999923706055","--pf-t--global--font--line-height--figma-only--700":"36.400001525878906","--pf-t--global--font--line-height--figma-only--600":"28.600000381469727","--pf-t--global--font--line-height--figma-only--500":"26","--pf-t--global--font--line-height--figma-only--400":"23.399999618530273","--pf-t--global--font--line-height--figma-only--300":"24","--pf-t--global--font--line-height--figma-only--200":"21","--pf-t--global--font--line-height--figma-only--100":"18","--pf-t--global--font--line-height--200":"1.5","--pf-t--global--font--line-height--100":"1.2999999523162842","--pf-t--global--font--family--300":"Red Hat Mono VF","--pf-t--global--font--family--200":"Red Hat Display VF","--pf-t--global--font--family--100":"Red Hat Text VF","--pf-t--global--border--radius--500":"999px","--pf-t--global--border--radius--400":"24px","--pf-t--global--border--radius--300":"16px","--pf-t--global--border--radius--200":"6px","--pf-t--global--border--radius--100":"4px","--pf-t--global--border--radius--0":"0px","--pf-t--global--border--width--300":"3px","--pf-t--global--border--width--200":"2px","--pf-t--global--border--width--100":"1px","--pf-t--global--icon--size--500":"96px","--pf-t--global--icon--size--400":"56px","--pf-t--global--icon--size--300":"22px","--pf-t--global--icon--size--250":"16px","--pf-t--global--icon--size--200":"14px","--pf-t--global--icon--size--100":"12px","--pf-t--global--spacer--800":"80px","--pf-t--global--spacer--700":"64px","--pf-t--global--spacer--600":"48px","--pf-t--global--spacer--500":"32px","--pf-t--global--spacer--400":"24px","--pf-t--global--spacer--300":"16px","--pf-t--global--spacer--200":"8px","--pf-t--global--spacer--100":"4px","--pf-t--global--motion--timing-function--decelerate":"--pf-t--global--timing-function--300","--pf-t--global--motion--timing-function--default":"--pf-t--global--timing-function--200","--pf-t--global--motion--timing-function--accelerate":"--pf-t--global--timing-function--100","--pf-t--global--motion--delay--long":"--pf-t--global--delay--400","--pf-t--global--motion--delay--default":"--pf-t--global--delay--300","--pf-t--global--motion--delay--short":"--pf-t--global--delay--200","--pf-t--global--motion--delay--none":"--pf-t--global--delay--100","--pf-t--global--motion--duration--3xl":"--pf-t--global--duration--600","--pf-t--global--motion--duration--2xl":"--pf-t--global--duration--500","--pf-t--global--motion--duration--xl":"--pf-t--global--duration--400","--pf-t--global--motion--duration--lg":"--pf-t--global--duration--300","--pf-t--global--motion--duration--md":"--pf-t--global--duration--200","--pf-t--global--motion--duration--sm":"--pf-t--global--duration--100","--pf-t--global--motion--duration--xs":"--pf-t--global--duration--50","--pf-t--global--text--color--link--300":"--pf-t--color--purple--50","--pf-t--global--text--color--link--200":"--pf-t--color--blue--60","--pf-t--global--text--color--link--100":"--pf-t--color--blue--50","--pf-t--global--text--color--400":"--pf-t--color--red-orange--40","--pf-t--global--text--color--300":"--pf-t--color--white","--pf-t--global--text--color--200":"--pf-t--color--gray--60","--pf-t--global--text--color--100":"--pf-t--color--gray--90","--pf-t--global--color--nonstatus--gray--300":"--pf-t--color--gray--40","--pf-t--global--color--nonstatus--gray--200":"--pf-t--color--gray--30","--pf-t--global--color--nonstatus--gray--100":"--pf-t--color--gray--20","--pf-t--global--color--nonstatus--purple--300":"--pf-t--color--purple--40","--pf-t--global--color--nonstatus--purple--200":"--pf-t--color--purple--30","--pf-t--global--color--nonstatus--purple--100":"--pf-t--color--purple--20","--pf-t--global--color--nonstatus--blue--300":"--pf-t--color--blue--40","--pf-t--global--color--nonstatus--blue--200":"--pf-t--color--blue--30","--pf-t--global--color--nonstatus--blue--100":"--pf-t--color--blue--20","--pf-t--global--color--nonstatus--cyan--300":"--pf-t--color--teal--40","--pf-t--global--color--nonstatus--cyan--200":"--pf-t--color--teal--30","--pf-t--global--color--nonstatus--cyan--100":"--pf-t--color--teal--20","--pf-t--global--color--nonstatus--green--300":"--pf-t--color--green--40","--pf-t--global--color--nonstatus--green--200":"--pf-t--color--green--30","--pf-t--global--color--nonstatus--green--100":"--pf-t--color--green--20","--pf-t--global--color--nonstatus--gold--300":"--pf-t--color--yellow--40","--pf-t--global--color--nonstatus--gold--200":"--pf-t--color--yellow--30","--pf-t--global--color--nonstatus--gold--100":"--pf-t--color--yellow--20","--pf-t--global--color--nonstatus--orange--300":"--pf-t--color--orange--40","--pf-t--global--color--nonstatus--orange--200":"--pf-t--color--orange--30","--pf-t--global--color--nonstatus--orange--100":"--pf-t--color--orange--20","--pf-t--global--color--nonstatus--orangered--300":"--pf-t--color--red-orange--40","--pf-t--global--color--nonstatus--orangered--200":"--pf-t--color--red-orange--30","--pf-t--global--color--nonstatus--orangered--100":"--pf-t--color--red-orange--20","--pf-t--global--color--nonstatus--red--300":"--pf-t--color--red--40","--pf-t--global--color--nonstatus--red--200":"--pf-t--color--red--30","--pf-t--global--color--nonstatus--red--100":"--pf-t--color--red--20","--pf-t--global--color--severity--critical--100":"--pf-t--color--red-orange--60","--pf-t--global--color--severity--important--100":"--pf-t--color--orange--50","--pf-t--global--color--severity--moderate--100":"--pf-t--color--yellow--40","--pf-t--global--color--severity--minor--100":"--pf-t--color--gray--50","--pf-t--global--color--severity--none--100":"--pf-t--color--blue--40","--pf-t--global--color--severity--undefined--100":"--pf-t--color--gray--30","--pf-t--global--color--status--custom--200":"--pf-t--color--teal--70","--pf-t--global--color--status--custom--100":"--pf-t--color--teal--60","--pf-t--global--color--status--info--200":"--pf-t--color--purple--60","--pf-t--global--color--status--info--100":"--pf-t--color--purple--50","--pf-t--global--color--status--danger--300":"--pf-t--color--red-orange--70","--pf-t--global--color--status--danger--200":"--pf-t--color--red-orange--70","--pf-t--global--color--status--danger--100":"--pf-t--color--red-orange--60","--pf-t--global--color--status--warning--300":"--pf-t--color--yellow--50","--pf-t--global--color--status--warning--200":"--pf-t--color--yellow--40","--pf-t--global--color--status--warning--100":"--pf-t--color--yellow--30","--pf-t--global--color--status--success--200":"--pf-t--color--green--70","--pf-t--global--color--status--success--100":"--pf-t--color--green--60","--pf-t--global--color--favorite--200":"--pf-t--color--yellow--40","--pf-t--global--color--favorite--100":"--pf-t--color--yellow--30","--pf-t--global--color--disabled--300":"--pf-t--color--gray--60","--pf-t--global--color--disabled--200":"--pf-t--color--gray--40","--pf-t--global--color--disabled--100":"--pf-t--color--gray--30","--pf-t--global--color--brand--300":"--pf-t--color--blue--60","--pf-t--global--color--brand--200":"--pf-t--color--blue--50","--pf-t--global--color--brand--100":"--pf-t--color--blue--40","--pf-t--global--background--color--backdrop--default":"--pf-t--global--dark--background--color--500","--pf-t--global--background--color--action--plain--clicked":"--pf-t--global--dark--background--color--600","--pf-t--global--background--color--action--plain--hover":"--pf-t--global--dark--background--color--600","--pf-t--global--background--color--highlight--200":"--pf-t--color--yellow--40","--pf-t--global--background--color--highlight--100":"--pf-t--color--yellow--30","--pf-t--global--background--color--400":"--pf-t--color--gray--80","--pf-t--global--background--color--300":"--pf-t--color--gray--20","--pf-t--global--background--color--200":"--pf-t--color--gray--10","--pf-t--global--background--color--100":"--pf-t--color--white","--pf-t--global--breakpoint--height--2xl":"--pf-t--global--breakpoint--550","--pf-t--global--breakpoint--height--xl":"--pf-t--global--breakpoint--350","--pf-t--global--breakpoint--height--lg":"--pf-t--global--breakpoint--300","--pf-t--global--breakpoint--height--md":"--pf-t--global--breakpoint--250","--pf-t--global--breakpoint--height--sm":"--pf-t--global--breakpoint--100","--pf-t--global--breakpoint--2xl":"--pf-t--global--breakpoint--600","--pf-t--global--breakpoint--xl":"--pf-t--global--breakpoint--500","--pf-t--global--breakpoint--lg":"--pf-t--global--breakpoint--400","--pf-t--global--breakpoint--md":"--pf-t--global--breakpoint--300","--pf-t--global--breakpoint--sm":"--pf-t--global--breakpoint--200","--pf-t--global--breakpoint--xs":"--pf-t--global--breakpoint--100","--pf-t--global--box-shadow--color--lg":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--color--md":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--color--sm":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--spread--lg":"--pf-t--global--box-shadow--spread--100","--pf-t--global--box-shadow--spread--md":"--pf-t--global--box-shadow--spread--100","--pf-t--global--box-shadow--spread--sm":"--pf-t--global--box-shadow--spread--100","--pf-t--global--box-shadow--blur--lg":"--pf-t--global--box-shadow--blur--300","--pf-t--global--box-shadow--blur--md":"--pf-t--global--box-shadow--blur--200","--pf-t--global--box-shadow--blur--sm":"--pf-t--global--box-shadow--blur--100","--pf-t--global--box-shadow--Y--lg--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--lg--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--lg--bottom":"--pf-t--global--box-shadow--Y--700","--pf-t--global--box-shadow--Y--lg--top":"--pf-t--global--box-shadow--Y--100","--pf-t--global--box-shadow--Y--lg--default":"--pf-t--global--box-shadow--Y--700","--pf-t--global--box-shadow--Y--md--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--md--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--md--bottom":"--pf-t--global--box-shadow--Y--600","--pf-t--global--box-shadow--Y--md--top":"--pf-t--global--box-shadow--Y--200","--pf-t--global--box-shadow--Y--md--default":"--pf-t--global--box-shadow--Y--600","--pf-t--global--box-shadow--Y--sm--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--sm--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--sm--bottom":"--pf-t--global--box-shadow--Y--500","--pf-t--global--box-shadow--Y--sm--top":"--pf-t--global--box-shadow--Y--300","--pf-t--global--box-shadow--Y--sm--default":"--pf-t--global--box-shadow--Y--500","--pf-t--global--box-shadow--X--lg--right":"--pf-t--global--box-shadow--X--700","--pf-t--global--box-shadow--X--lg--left":"--pf-t--global--box-shadow--X--100","--pf-t--global--box-shadow--X--lg--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--lg--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--lg--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--right":"--pf-t--global--box-shadow--X--600","--pf-t--global--box-shadow--X--md--left":"--pf-t--global--box-shadow--X--200","--pf-t--global--box-shadow--X--md--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--right":"--pf-t--global--box-shadow--X--500","--pf-t--global--box-shadow--X--sm--left":"--pf-t--global--box-shadow--X--300","--pf-t--global--box-shadow--X--sm--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--z-index--2xl":"--pf-t--global--z-index--600","--pf-t--global--z-index--xl":"--pf-t--global--z-index--500","--pf-t--global--z-index--lg":"--pf-t--global--z-index--400","--pf-t--global--z-index--md":"--pf-t--global--z-index--300","--pf-t--global--z-index--sm":"--pf-t--global--z-index--200","--pf-t--global--z-index--xs":"--pf-t--global--z-index--100","--pf-t--global--font--size--4xl":"--pf-t--global--font--size--800","--pf-t--global--font--size--3xl":"--pf-t--global--font--size--700","--pf-t--global--font--size--2xl":"--pf-t--global--font--size--600","--pf-t--global--font--size--xl":"--pf-t--global--font--size--500","--pf-t--global--font--size--lg":"--pf-t--global--font--size--400","--pf-t--global--font--size--md":"--pf-t--global--font--size--300","--pf-t--global--font--size--sm":"--pf-t--global--font--size--200","--pf-t--global--font--size--xs":"--pf-t--global--font--size--100","--pf-t--global--font--line-height--heading":"--pf-t--global--font--line-height--200","--pf-t--global--font--line-height--body":"--pf-t--global--font--line-height--100","--pf-t--global--font--line-height--figma-only--heading--2xl":"--pf-t--global--font--line-height--figma-only--800","--pf-t--global--font--line-height--figma-only--heading--xl":"--pf-t--global--font--line-height--figma-only--700","--pf-t--global--font--line-height--figma-only--heading--lg":"--pf-t--global--font--line-height--figma-only--600","--pf-t--global--font--line-height--figma-only--heading--md":"--pf-t--global--font--line-height--figma-only--500","--pf-t--global--font--line-height--figma-only--heading--sm":"--pf-t--global--font--line-height--figma-only--400","--pf-t--global--font--line-height--figma-only--heading--xs":"--pf-t--global--font--line-height--figma-only--300","--pf-t--global--font--line-height--figma-only--body--large":"--pf-t--global--font--line-height--figma-only--300","--pf-t--global--font--line-height--figma-only--body--default":"--pf-t--global--font--line-height--figma-only--200","--pf-t--global--font--line-height--figma-only--body--small":"--pf-t--global--font--line-height--figma-only--100","--pf-t--global--font--weight--heading":"{global.font.weight.heading.100}","--pf-t--global--font--weight--body":"{global.font.weight.body.100}","--pf-t--global--font--family--mono":"--pf-t--global--font--family--300","--pf-t--global--font--family--heading":"--pf-t--global--font--family--200","--pf-t--global--font--family--body":"--pf-t--global--font--family--100","--pf-t--global--border--color--300":"--pf-t--color--gray--50","--pf-t--global--border--color--200":"--pf-t--color--gray--40","--pf-t--global--border--color--100":"--pf-t--color--gray--30","--pf-t--global--border--radius--pill":"--pf-t--global--border--radius--500","--pf-t--global--border--radius--large":"--pf-t--global--border--radius--400","--pf-t--global--border--radius--medium":"--pf-t--global--border--radius--300","--pf-t--global--border--radius--small":"--pf-t--global--border--radius--200","--pf-t--global--border--radius--tiny":"--pf-t--global--border--radius--100","--pf-t--global--border--radius--sharp":"--pf-t--global--border--radius--0","--pf-t--global--border--width--control--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--control--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--control--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--button--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--button--hover":"--pf-t--global--border--width--200","--pf-t--global--border--width--button--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--box--status--read":"--pf-t--global--border--width--100","--pf-t--global--border--width--box--status--default":"--pf-t--global--border--width--200","--pf-t--global--border--width--box--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--box--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--box--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--extra-strong":"--pf-t--global--border--width--300","--pf-t--global--border--width--strong":"--pf-t--global--border--width--200","--pf-t--global--border--width--divider--clicked":"--pf-t--global--border--width--100","--pf-t--global--border--width--divider--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--divider--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--regular":"--pf-t--global--border--width--100","--pf-t--global--icon--color--300":"--pf-t--color--white","--pf-t--global--icon--color--200":"--pf-t--color--gray--50","--pf-t--global--icon--color--100":"--pf-t--color--gray--90","--pf-t--global--icon--size--3xl":"--pf-t--global--icon--size--500","--pf-t--global--icon--size--2xl":"--pf-t--global--icon--size--400","--pf-t--global--icon--size--xl":"--pf-t--global--icon--size--300","--pf-t--global--icon--size--lg":"--pf-t--global--icon--size--250","--pf-t--global--icon--size--md":"--pf-t--global--icon--size--200","--pf-t--global--icon--size--sm":"--pf-t--global--icon--size--100","--pf-t--global--spacer--button--vertical--compact":"--pf-t--global--spacer--100","--pf-t--global--spacer--button--horizontal--compact":"--pf-t--global--spacer--300","--pf-t--global--spacer--control--horizontal--compact":"--pf-t--global--spacer--200","--pf-t--global--spacer--control--vertical--compact":"--pf-t--global--spacer--100","--pf-t--global--spacer--4xl":"--pf-t--global--spacer--800","--pf-t--global--spacer--3xl":"--pf-t--global--spacer--700","--pf-t--global--spacer--2xl":"--pf-t--global--spacer--600","--pf-t--global--spacer--xl":"--pf-t--global--spacer--500","--pf-t--global--spacer--lg":"--pf-t--global--spacer--400","--pf-t--global--spacer--md":"--pf-t--global--spacer--300","--pf-t--global--spacer--sm":"--pf-t--global--spacer--200","--pf-t--global--spacer--xs":"--pf-t--global--spacer--100","--pf-t--global--motion--duration--icon--long":"--pf-t--global--motion--duration--md","--pf-t--global--motion--duration--icon--default":"--pf-t--global--motion--duration--sm","--pf-t--global--motion--duration--icon--short":"--pf-t--global--motion--duration--xs","--pf-t--global--motion--duration--slide-in--long":"--pf-t--global--motion--duration--2xl","--pf-t--global--motion--duration--slide-in--default":"--pf-t--global--motion--duration--xl","--pf-t--global--motion--duration--slide-in--short":"--pf-t--global--motion--duration--lg","--pf-t--global--motion--duration--slide-out--long":"--pf-t--global--motion--duration--2xl","--pf-t--global--motion--duration--slide-out--default":"--pf-t--global--motion--duration--xl","--pf-t--global--motion--duration--slide-out--short":"--pf-t--global--motion--duration--lg","--pf-t--global--motion--duration--fade--long":"--pf-t--global--motion--duration--lg","--pf-t--global--motion--duration--fade--default":"--pf-t--global--motion--duration--md","--pf-t--global--motion--duration--fade--short":"--pf-t--global--motion--duration--sm","--pf-t--global--text--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--text--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--text--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--text--color--on-highlight":"--pf-t--global--dark--text--color--300","--pf-t--global--text--color--required":"--pf-t--global--dark--text--color--400","--pf-t--global--text--color--on-disabled":"--pf-t--global--dark--color--disabled--300","--pf-t--global--text--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--text--color--inverse":"--pf-t--global--dark--text--color--300","--pf-t--global--text--color--subtle":"--pf-t--global--dark--text--color--200","--pf-t--global--text--color--regular":"--pf-t--global--dark--text--color--100","--pf-t--global--text--color--link--visited":"--pf-t--global--dark--text--color--link--300","--pf-t--global--text--color--link--hover":"--pf-t--global--dark--text--color--link--200","--pf-t--global--text--color--link--default":"--pf-t--global--dark--text--color--link--100","--pf-t--global--color--nonstatus--teal--clicked":"--pf-t--global--dark--color--nonstatus--cyan--200","--pf-t--global--color--nonstatus--teal--hover":"--pf-t--global--dark--color--nonstatus--cyan--200","--pf-t--global--color--nonstatus--teal--default":"--pf-t--global--dark--color--nonstatus--cyan--100","--pf-t--global--color--nonstatus--yellow--clicked":"--pf-t--global--dark--color--nonstatus--gold--200","--pf-t--global--color--nonstatus--yellow--hover":"--pf-t--global--dark--color--nonstatus--gold--200","--pf-t--global--color--nonstatus--yellow--default":"--pf-t--global--dark--color--nonstatus--gold--100","--pf-t--global--color--nonstatus--gray--clicked":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--color--nonstatus--gray--hover":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--color--nonstatus--gray--default":"--pf-t--global--dark--color--nonstatus--gray--100","--pf-t--global--color--nonstatus--purple--clicked":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--color--nonstatus--purple--hover":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--color--nonstatus--purple--default":"--pf-t--global--dark--color--nonstatus--purple--100","--pf-t--global--color--nonstatus--blue--clicked":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--color--nonstatus--blue--hover":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--color--nonstatus--blue--default":"--pf-t--global--dark--color--nonstatus--blue--100","--pf-t--global--color--nonstatus--green--clicked":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--color--nonstatus--green--hover":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--color--nonstatus--green--default":"--pf-t--global--dark--color--nonstatus--green--100","--pf-t--global--color--nonstatus--orange--clicked":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--color--nonstatus--orange--hover":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--color--nonstatus--orange--default":"--pf-t--global--dark--color--nonstatus--orange--100","--pf-t--global--color--nonstatus--orangered--clicked":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--color--nonstatus--orangered--hover":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--color--nonstatus--orangered--default":"--pf-t--global--dark--color--nonstatus--orangered--100","--pf-t--global--color--nonstatus--red--clicked":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--color--nonstatus--red--hover":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--color--nonstatus--red--default":"--pf-t--global--dark--color--nonstatus--red--100","--pf-t--global--color--status--custom--clicked":"--pf-t--global--dark--color--status--custom--200","--pf-t--global--color--status--custom--hover":"--pf-t--global--dark--color--status--custom--200","--pf-t--global--color--status--custom--default":"--pf-t--global--dark--color--status--custom--100","--pf-t--global--color--status--info--clicked":"--pf-t--global--dark--color--status--info--200","--pf-t--global--color--status--info--hover":"--pf-t--global--dark--color--status--info--200","--pf-t--global--color--status--info--default":"--pf-t--global--dark--color--status--info--100","--pf-t--global--color--status--danger--clicked":"--pf-t--global--dark--color--status--danger--200","--pf-t--global--color--status--danger--hover":"--pf-t--global--dark--color--status--danger--200","--pf-t--global--color--status--danger--default":"--pf-t--global--dark--color--status--danger--100","--pf-t--global--color--status--warning--clicked":"--pf-t--global--dark--color--status--warning--200","--pf-t--global--color--status--warning--hover":"--pf-t--global--dark--color--status--warning--200","--pf-t--global--color--status--warning--default":"--pf-t--global--dark--color--status--warning--100","--pf-t--global--color--status--success--clicked":"--pf-t--global--dark--color--status--success--200","--pf-t--global--color--status--success--hover":"--pf-t--global--dark--color--status--success--200","--pf-t--global--color--status--success--default":"--pf-t--global--dark--color--status--success--100","--pf-t--global--color--favorite--clicked":"--pf-t--global--dark--color--favorite--200","--pf-t--global--color--favorite--hover":"--pf-t--global--dark--color--favorite--200","--pf-t--global--color--favorite--default":"--pf-t--global--dark--color--favorite--100","--pf-t--global--color--brand--clicked":"--pf-t--global--dark--color--brand--200","--pf-t--global--color--brand--hover":"--pf-t--global--dark--color--brand--200","--pf-t--global--color--brand--default":"--pf-t--global--dark--color--brand--100","--pf-t--global--background--color--disabled--default":"--pf-t--global--dark--color--disabled--100","--pf-t--global--background--color--inverse--default":"--pf-t--global--dark--background--color--400","--pf-t--global--background--color--action--plain--alt--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--action--plain--alt--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--floating--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--floating--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--floating--default":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--secondary--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--secondary--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--secondary--default":"--pf-t--global--dark--background--color--100","--pf-t--global--background--color--primary--clicked":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--primary--hover":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--primary--default":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--highlight--clicked":"--pf-t--global--dark--background--color--highlight--200","--pf-t--global--background--color--highlight--default":"--pf-t--global--dark--background--color--highlight--100","--pf-t--global--font--size--heading--h6":"--pf-t--global--font--size--md","--pf-t--global--font--size--heading--h5":"--pf-t--global--font--size--md","--pf-t--global--font--size--heading--h4":"--pf-t--global--font--size--md","--pf-t--global--font--size--heading--h3":"--pf-t--global--font--size--lg","--pf-t--global--font--size--heading--h2":"--pf-t--global--font--size--xl","--pf-t--global--font--size--heading--h1":"--pf-t--global--font--size--2xl","--pf-t--global--font--size--body--lg":"--pf-t--global--font--size--md","--pf-t--global--font--size--body--default":"--pf-t--global--font--size--sm","--pf-t--global--font--size--body--sm":"--pf-t--global--font--size--xs","--pf-t--global--border--color--nonstatus--gray--clicked":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--border--color--nonstatus--gray--hover":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--border--color--nonstatus--gray--default":"--pf-t--global--dark--color--nonstatus--gray--100","--pf-t--global--border--color--nonstatus--purple--clicked":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--border--color--nonstatus--purple--hover":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--border--color--nonstatus--purple--default":"--pf-t--global--dark--color--nonstatus--purple--100","--pf-t--global--border--color--nonstatus--blue--clicked":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--border--color--nonstatus--blue--hover":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--border--color--nonstatus--blue--default":"--pf-t--global--dark--color--nonstatus--blue--100","--pf-t--global--border--color--nonstatus--teal--clicked":"--pf-t--global--dark--color--nonstatus--cyan--200","--pf-t--global--border--color--nonstatus--teal--hover":"--pf-t--global--dark--color--nonstatus--cyan--200","--pf-t--global--border--color--nonstatus--teal--default":"--pf-t--global--dark--color--nonstatus--cyan--100","--pf-t--global--border--color--nonstatus--green--clicked":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--border--color--nonstatus--green--hover":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--border--color--nonstatus--green--default":"--pf-t--global--dark--color--nonstatus--green--100","--pf-t--global--border--color--nonstatus--yellow--clicked":"--pf-t--global--dark--color--nonstatus--gold--200","--pf-t--global--border--color--nonstatus--yellow--hover":"--pf-t--global--dark--color--nonstatus--gold--200","--pf-t--global--border--color--nonstatus--yellow--default":"--pf-t--global--dark--color--nonstatus--gold--100","--pf-t--global--border--color--nonstatus--orange--clicked":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--border--color--nonstatus--orange--hover":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--border--color--nonstatus--orange--default":"--pf-t--global--dark--color--nonstatus--orange--100","--pf-t--global--border--color--nonstatus--orangered--clicked":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--border--color--nonstatus--orangered--hover":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--border--color--nonstatus--orangered--default":"--pf-t--global--dark--color--nonstatus--orangered--100","--pf-t--global--border--color--nonstatus--red--clicked":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--border--color--nonstatus--red--hover":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--border--color--nonstatus--red--default":"--pf-t--global--dark--color--nonstatus--red--100","--pf-t--global--border--color--on-secondary":"--pf-t--global--dark--border--color--200","--pf-t--global--border--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--border--color--clicked":"--pf-t--global--dark--color--brand--200","--pf-t--global--border--color--hover":"--pf-t--global--dark--color--brand--100","--pf-t--global--border--color--default":"--pf-t--global--dark--border--color--200","--pf-t--global--border--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--border--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--border--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--icon--color--severity--critical--default":"--pf-t--global--dark--color--severity--critical--100","--pf-t--global--icon--color--severity--important--default":"--pf-t--global--dark--color--severity--important--100","--pf-t--global--icon--color--severity--moderate--default":"--pf-t--global--dark--color--severity--moderate--100","--pf-t--global--icon--color--severity--minor--default":"--pf-t--global--dark--color--severity--minor--100","--pf-t--global--icon--color--severity--none--default":"--pf-t--global--dark--color--severity--none--100","--pf-t--global--icon--color--severity--undefined--default":"--pf-t--global--dark--color--severity--undefined--100","--pf-t--global--icon--color--on-disabled":"--pf-t--global--dark--color--disabled--300","--pf-t--global--icon--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--icon--color--inverse":"--pf-t--global--dark--icon--color--300","--pf-t--global--icon--color--subtle":"--pf-t--global--dark--icon--color--200","--pf-t--global--icon--color--regular":"--pf-t--global--dark--icon--color--100","--pf-t--global--icon--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--icon--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--icon--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--icon--size--font--4xl":"--pf-t--global--font--size--4xl","--pf-t--global--icon--size--font--3xl":"--pf-t--global--font--size--3xl","--pf-t--global--icon--size--font--2xl":"--pf-t--global--font--size--2xl","--pf-t--global--icon--size--font--xl":"--pf-t--global--font--size--xl","--pf-t--global--icon--size--font--lg":"--pf-t--global--font--size--lg","--pf-t--global--icon--size--font--md":"--pf-t--global--font--size--md","--pf-t--global--icon--size--font--sm":"--pf-t--global--font--size--sm","--pf-t--global--icon--size--font--xs":"--pf-t--global--font--size--xs","--pf-t--global--spacer--action--horizontal--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--action--horizontal--default":"--pf-t--global--spacer--lg","--pf-t--global--spacer--action--vertical--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--action--vertical--default":"--pf-t--global--spacer--sm","--pf-t--global--spacer--gap--action-to-action--plain":"--pf-t--global--spacer--xs","--pf-t--global--spacer--gap--action-to-action--default":"--pf-t--global--spacer--md","--pf-t--global--spacer--gap--group-to-group--vertical":"--pf-t--global--spacer--lg","--pf-t--global--spacer--gap--group-to-group--horizontal":"--pf-t--global--spacer--2xl","--pf-t--global--spacer--gap--group--horizontal":"--pf-t--global--spacer--md","--pf-t--global--spacer--gap--group--vertical":"--pf-t--global--spacer--sm","--pf-t--global--spacer--gap--control-to-control--default":"--pf-t--global--spacer--xs","--pf-t--global--spacer--gap--text-to-element--default":"--pf-t--global--spacer--sm","--pf-t--global--spacer--control--horizontal--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--control--horizontal--default":"--pf-t--global--spacer--md","--pf-t--global--spacer--control--vertical--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--control--vertical--default":"--pf-t--global--spacer--sm","--pf-t--global--text--color--nonstatus--on-gray--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gray--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gray--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-blue--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-blue--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-blue--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-teal--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-teal--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-teal--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-yellow--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-yellow--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-yellow--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-attention--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-attention--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-attention--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-custom--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-custom--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-custom--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--text--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--text--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--text--color--status--on-info--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-info--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-info--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--text--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--text--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--text--color--status--on-danger--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-danger--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-danger--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--danger--clicked":"--pf-t--global--dark--color--status--danger--300","--pf-t--global--text--color--status--danger--hover":"--pf-t--global--dark--color--status--danger--300","--pf-t--global--text--color--status--danger--default":"--pf-t--global--dark--color--status--danger--250","--pf-t--global--text--color--status--on-warning--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-warning--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-warning--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--text--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--text--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--text--color--brand--clicked":"--pf-t--global--dark--color--brand--300","--pf-t--global--text--color--brand--hover":"--pf-t--global--dark--color--brand--300","--pf-t--global--text--color--brand--default":"--pf-t--global--dark--color--brand--200","--pf-t--global--text--color--placeholder":"--pf-t--global--text--color--subtle","--pf-t--global--text--color--on-brand--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--on-brand--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--on-brand--default":"--pf-t--global--text--color--inverse","--pf-t--global--color--status--read--on-primary":"--pf-t--global--background--color--secondary--default","--pf-t--global--color--status--unread--attention--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--color--status--unread--attention--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--color--status--unread--attention--default":"--pf-t--global--color--status--danger--default","--pf-t--global--color--status--unread--default--clicked":"--pf-t--global--color--brand--clicked","--pf-t--global--color--status--unread--default--hover":"--pf-t--global--color--brand--hover","--pf-t--global--color--status--unread--default--default":"--pf-t--global--color--brand--default","--pf-t--global--background--color--control--default":"--pf-t--global--dark--background--color--300","--pf-t--global--border--color--alt":"--pf-t--global--background--color--primary--default","--pf-t--global--border--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--border--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--border--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--border--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--border--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--border--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--border--color--status--danger--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--border--color--status--danger--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--border--color--status--danger--default":"--pf-t--global--color--status--danger--default","--pf-t--global--border--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--border--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--border--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--border--color--brand--clicked":"--pf-t--global--color--brand--clicked","--pf-t--global--border--color--brand--hover":"--pf-t--global--color--brand--hover","--pf-t--global--border--color--brand--default":"--pf-t--global--color--brand--default","--pf-t--global--icon--color--nonstatus--on-gray--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gray--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gray--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-blue--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-blue--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-blue--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-teal--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-teal--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-teal--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-yellow--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-yellow--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-yellow--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-attention--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-attention--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-attention--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-custom--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-custom--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-custom--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--icon--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--icon--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--icon--color--status--on-info--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-info--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-info--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--icon--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--icon--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--icon--color--status--on-danger--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-danger--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-danger--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--danger--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--icon--color--status--danger--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--icon--color--status--danger--default":"--pf-t--global--color--status--danger--default","--pf-t--global--icon--color--status--on-warning--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-warning--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-warning--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--icon--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--icon--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--icon--color--favorite--clicked":"--pf-t--global--color--favorite--clicked","--pf-t--global--icon--color--favorite--hover":"--pf-t--global--color--favorite--hover","--pf-t--global--icon--color--favorite--default":"--pf-t--global--color--favorite--default","--pf-t--global--icon--color--on-brand--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--on-brand--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--on-brand--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--brand--clicked":"--pf-t--global--dark--color--brand--300","--pf-t--global--icon--color--brand--hover":"--pf-t--global--dark--color--brand--300","--pf-t--global--icon--color--brand--default":"--pf-t--global--dark--color--brand--200","--pf-t--global--icon--size--font--heading--h6":"--pf-t--global--font--size--heading--h6","--pf-t--global--icon--size--font--heading--h5":"--pf-t--global--font--size--heading--h5","--pf-t--global--icon--size--font--heading--h4":"--pf-t--global--font--size--heading--h4","--pf-t--global--icon--size--font--heading--h3":"--pf-t--global--font--size--heading--h3","--pf-t--global--icon--size--font--heading--h2":"--pf-t--global--font--size--heading--h2","--pf-t--global--icon--size--font--heading--h1":"--pf-t--global--font--size--heading--h1","--pf-t--global--icon--size--font--body--lg":"--pf-t--global--font--size--body--lg","--pf-t--global--icon--size--font--body--default":"--pf-t--global--font--size--body--default","--pf-t--global--icon--size--font--body--sm":"--pf-t--global--font--size--body--sm","--pf-t--global--color--status--read--on-secondary":"--pf-t--global--background--color--control--default","--pf-t--global--dark--box-shadow--color--100":"rgba(0, 0, 0, 0.5000)","--pf-t--global--dark--background--color--600":"rgba(199, 199, 199, 0.1500)","--pf-t--global--dark--background--color--500":"rgba(21, 21, 21, 0.8000)","--pf-t--global--dark--icon--color--300":"--pf-t--color--gray--90","--pf-t--global--dark--icon--color--200":"--pf-t--color--gray--40","--pf-t--global--dark--icon--color--100":"--pf-t--color--gray--10","--pf-t--global--dark--text--color--link--300":"--pf-t--color--purple--30","--pf-t--global--dark--text--color--link--200":"--pf-t--color--blue--10","--pf-t--global--dark--text--color--link--100":"--pf-t--color--blue--20","--pf-t--global--dark--text--color--400":"--pf-t--color--red-orange--30","--pf-t--global--dark--text--color--300":"--pf-t--color--gray--90","--pf-t--global--dark--text--color--200":"--pf-t--color--gray--30","--pf-t--global--dark--text--color--100":"--pf-t--color--gray--10","--pf-t--global--dark--border--color--200":"--pf-t--color--gray--40","--pf-t--global--dark--border--color--100":"--pf-t--color--gray--50","--pf-t--global--dark--color--nonstatus--gray--300":"--pf-t--color--gray--10","--pf-t--global--dark--color--nonstatus--gray--200":"--pf-t--color--gray--20","--pf-t--global--dark--color--nonstatus--gray--100":"--pf-t--color--gray--30","--pf-t--global--dark--color--nonstatus--purple--300":"--pf-t--color--purple--10","--pf-t--global--dark--color--nonstatus--purple--200":"--pf-t--color--purple--20","--pf-t--global--dark--color--nonstatus--purple--100":"--pf-t--color--purple--30","--pf-t--global--dark--color--nonstatus--blue--300":"--pf-t--color--blue--10","--pf-t--global--dark--color--nonstatus--blue--200":"--pf-t--color--blue--20","--pf-t--global--dark--color--nonstatus--blue--100":"--pf-t--color--blue--30","--pf-t--global--dark--color--nonstatus--cyan--300":"--pf-t--color--teal--10","--pf-t--global--dark--color--nonstatus--cyan--200":"--pf-t--color--teal--20","--pf-t--global--dark--color--nonstatus--cyan--100":"--pf-t--color--teal--30","--pf-t--global--dark--color--nonstatus--green--300":"--pf-t--color--green--10","--pf-t--global--dark--color--nonstatus--green--200":"--pf-t--color--green--20","--pf-t--global--dark--color--nonstatus--green--100":"--pf-t--color--green--30","--pf-t--global--dark--color--nonstatus--gold--300":"--pf-t--color--yellow--10","--pf-t--global--dark--color--nonstatus--gold--200":"--pf-t--color--yellow--20","--pf-t--global--dark--color--nonstatus--gold--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--nonstatus--orange--300":"--pf-t--color--orange--10","--pf-t--global--dark--color--nonstatus--orange--200":"--pf-t--color--orange--20","--pf-t--global--dark--color--nonstatus--orange--100":"--pf-t--color--orange--30","--pf-t--global--dark--color--nonstatus--orangered--300":"--pf-t--color--red-orange--10","--pf-t--global--dark--color--nonstatus--orangered--200":"--pf-t--color--red-orange--20","--pf-t--global--dark--color--nonstatus--orangered--100":"--pf-t--color--red-orange--30","--pf-t--global--dark--color--nonstatus--red--300":"--pf-t--color--red--10","--pf-t--global--dark--color--nonstatus--red--200":"--pf-t--color--red--20","--pf-t--global--dark--color--nonstatus--red--100":"--pf-t--color--red--30","--pf-t--global--dark--color--status--custom--200":"--pf-t--color--teal--30","--pf-t--global--dark--color--status--custom--100":"--pf-t--color--teal--40","--pf-t--global--dark--color--status--info--200":"--pf-t--color--purple--20","--pf-t--global--dark--color--status--info--100":"--pf-t--color--purple--30","--pf-t--global--dark--color--status--danger--300":"--pf-t--color--red-orange--20","--pf-t--global--dark--color--status--danger--250":"--pf-t--color--red-orange--30","--pf-t--global--dark--color--status--danger--200":"--pf-t--color--red-orange--40","--pf-t--global--dark--color--status--danger--100":"--pf-t--color--red-orange--50","--pf-t--global--dark--color--status--warning--200":"--pf-t--color--yellow--20","--pf-t--global--dark--color--status--warning--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--status--success--200":"--pf-t--color--green--30","--pf-t--global--dark--color--status--success--100":"--pf-t--color--green--40","--pf-t--global--dark--color--severity--critical--100":"--pf-t--color--red-orange--50","--pf-t--global--dark--color--severity--important--100":"--pf-t--color--orange--40","--pf-t--global--dark--color--severity--moderate--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--severity--minor--100":"--pf-t--color--gray--30","--pf-t--global--dark--color--severity--none--100":"--pf-t--color--blue--30","--pf-t--global--dark--color--severity--undefined--100":"--pf-t--color--gray--40","--pf-t--global--dark--color--favorite--200":"--pf-t--color--yellow--20","--pf-t--global--dark--color--favorite--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--disabled--300":"--pf-t--color--gray--70","--pf-t--global--dark--color--disabled--200":"--pf-t--color--gray--50","--pf-t--global--dark--color--disabled--100":"--pf-t--color--gray--40","--pf-t--global--dark--color--brand--300":"--pf-t--color--blue--10","--pf-t--global--dark--color--brand--200":"--pf-t--color--blue--20","--pf-t--global--dark--color--brand--100":"--pf-t--color--blue--30","--pf-t--global--dark--background--color--highlight--200":"--pf-t--color--yellow--30","--pf-t--global--dark--background--color--highlight--100":"--pf-t--color--yellow--20","--pf-t--global--dark--background--color--400":"--pf-t--color--gray--10","--pf-t--global--dark--background--color--300":"--pf-t--color--gray--70","--pf-t--global--dark--background--color--200":"--pf-t--color--gray--80","--pf-t--global--dark--background--color--100":"--pf-t--color--gray--95","--pf-t--chart--global--stroke-line-join":"round","--pf-t--chart--global--layout--width":"450","--pf-t--chart--global--layout--height":"300","--pf-t--chart--global--layout--padding":"50","--pf-t--chart--global--label--text-anchor":"middle","--pf-t--chart--global--label--stroke":"transparent","--pf-t--chart--global--label--margin":"8","--pf-t--chart--global--label--padding":"10","--pf-t--chart--global--stroke-line-cap":"round","--pf-t--chart--global--letter-spacing":"normal","--pf-t--chart--global--FontSize--2xl":"22","--pf-t--chart--global--FontSize--lg":"18","--pf-t--chart--global--FontSize--sm":"14","--pf-t--chart--global--FontSize--xs":"12","--pf-t--chart--global--stroke--width--sm":"2","--pf-t--chart--global--stroke--width--xs":"1","--pf-t--chart--global--BorderWidth--lg":"8","--pf-t--chart--global--BorderWidth--sm":"2","--pf-t--chart--global--BorderWidth--xs":"1","--pf-t--chart--global--label--fill":"--pf-t--color--white","--pf-t--chart--global--danger--color--100":"--pf-t--color--red-orange--50","--pf-t--chart--global--success--color--100":"--pf-t--color--blue--30","--pf-t--chart--global--warning--color--200":"--pf-t--color--yellow--30","--pf-t--chart--global--warning--color--100":"--pf-t--color--orange--30","--pf-t--chart--global--fill--color--white":"--pf-t--color--white","--pf-t--chart--global--fill--color--900":"--pf-t--color--white","--pf-t--chart--global--fill--color--700":"--pf-t--color--gray--10","--pf-t--chart--global--fill--color--500":"--pf-t--color--gray--20","--pf-t--chart--global--fill--color--400":"--pf-t--color--gray--30","--pf-t--chart--global--fill--color--300":"--pf-t--color--gray--40","--pf-t--chart--global--fill--color--200":"--pf-t--color--gray--50","--pf-t--chart--global--fill--color--100":"--pf-t--color--gray--60","--pf-t--chart--color--black--500":"--pf-t--color--gray--10","--pf-t--chart--color--black--400":"--pf-t--color--gray--20","--pf-t--chart--color--black--300":"--pf-t--color--gray--30","--pf-t--chart--color--black--200":"--pf-t--color--gray--40","--pf-t--chart--color--black--100":"--pf-t--color--gray--50","--pf-t--chart--color--red-orange--500":"--pf-t--color--red-orange--10","--pf-t--chart--color--red-orange--400":"--pf-t--color--red-orange--20","--pf-t--chart--color--red-orange--300":"--pf-t--color--red-orange--30","--pf-t--chart--color--red-orange--200":"--pf-t--color--red-orange--40","--pf-t--chart--color--red-orange--100":"--pf-t--color--red-orange--50","--pf-t--chart--color--orange--500":"--pf-t--color--orange--10","--pf-t--chart--color--orange--400":"--pf-t--color--orange--20","--pf-t--chart--color--orange--300":"--pf-t--color--orange--30","--pf-t--chart--color--orange--200":"--pf-t--color--orange--40","--pf-t--chart--color--orange--100":"--pf-t--color--orange--50","--pf-t--chart--color--yellow--500":"--pf-t--color--yellow--10","--pf-t--chart--color--yellow--400":"--pf-t--color--yellow--20","--pf-t--chart--color--yellow--300":"--pf-t--color--yellow--30","--pf-t--chart--color--yellow--200":"--pf-t--color--yellow--40","--pf-t--chart--color--yellow--100":"--pf-t--color--yellow--50","--pf-t--chart--color--purple--500":"--pf-t--color--purple--20","--pf-t--chart--color--purple--400":"--pf-t--color--purple--30","--pf-t--chart--color--purple--300":"--pf-t--color--purple--40","--pf-t--chart--color--purple--200":"--pf-t--color--purple--50","--pf-t--chart--color--purple--100":"--pf-t--color--purple--60","--pf-t--chart--color--teal--500":"--pf-t--color--teal--10","--pf-t--chart--color--teal--400":"--pf-t--color--teal--20","--pf-t--chart--color--teal--300":"--pf-t--color--teal--30","--pf-t--chart--color--teal--200":"--pf-t--color--teal--40","--pf-t--chart--color--teal--100":"--pf-t--color--teal--50","--pf-t--chart--color--green--500":"--pf-t--color--green--10","--pf-t--chart--color--green--400":"--pf-t--color--green--20","--pf-t--chart--color--green--300":"--pf-t--color--green--30","--pf-t--chart--color--green--200":"--pf-t--color--green--40","--pf-t--chart--color--green--100":"--pf-t--color--green--50","--pf-t--chart--color--blue--500":"--pf-t--color--blue--10","--pf-t--chart--color--blue--400":"--pf-t--color--blue--20","--pf-t--chart--color--blue--300":"--pf-t--color--blue--30","--pf-t--chart--color--blue--200":"--pf-t--color--blue--40","--pf-t--chart--color--blue--100":"--pf-t--color--blue--50","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500":"--pf-t--chart--color--black--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200":"--pf-t--chart--color--purple--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000":"--pf-t--chart--color--yellow--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800":"--pf-t--chart--color--black--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500":"--pf-t--chart--color--purple--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100":"--pf-t--chart--color--black--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800":"--pf-t--chart--color--purple--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400":"--pf-t--chart--color--black--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100":"--pf-t--chart--color--purple--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800":"--pf-t--chart--color--blue--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700":"--pf-t--chart--color--black--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400":"--pf-t--chart--color--purple--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400":"--pf-t--chart--color--yellow--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600":"--pf-t--chart--color--blue--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--orange--colorscale--500":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--orange--colorscale--400":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--orange--colorscale--300":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--orange--colorscale--200":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--orange--colorscale--100":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--purple--colorscale--500":"--pf-t--chart--color--purple--400","--pf-t--chart--theme--colorscales--purple--colorscale--400":"--pf-t--chart--color--purple--200","--pf-t--chart--theme--colorscales--purple--colorscale--300":"--pf-t--chart--color--purple--500","--pf-t--chart--theme--colorscales--purple--colorscale--200":"--pf-t--chart--color--purple--100","--pf-t--chart--theme--colorscales--purple--colorscale--100":"--pf-t--chart--color--purple--300","--pf-t--chart--theme--colorscales--green--colorscale--500":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--green--colorscale--400":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--green--colorscale--300":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--green--colorscale--200":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--green--colorscale--100":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--gray--colorscale--500":"--pf-t--chart--color--black--400","--pf-t--chart--theme--colorscales--gray--colorscale--400":"--pf-t--chart--color--black--200","--pf-t--chart--theme--colorscales--gray--colorscale--300":"--pf-t--chart--color--black--500","--pf-t--chart--theme--colorscales--gray--colorscale--200":"--pf-t--chart--color--black--100","--pf-t--chart--theme--colorscales--gray--colorscale--100":"--pf-t--chart--color--black--300","--pf-t--chart--theme--colorscales--yellow--colorscale--500":"--pf-t--chart--color--yellow--400","--pf-t--chart--theme--colorscales--yellow--colorscale--400":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--yellow--colorscale--300":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--yellow--colorscale--200":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--yellow--colorscale--100":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--teal--colorscale--500":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--teal--colorscale--400":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--teal--colorscale--300":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--teal--colorscale--200":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--teal--colorscale--100":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--blue--colorscale--500":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--blue--colorscale--400":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--blue--colorscale--300":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--blue--colorscale--200":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--blue--colorscale--100":"--pf-t--chart--color--blue--300"} From aa4fb1a51c813f3c6df5c5fd3a54d9246ff99ec6 Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 14 Jun 2024 11:01:37 -0400 Subject: [PATCH 02/23] chore(table): pass in tokenJson to TokenTable --- .../patternfly-docs/content/all-patternfly-tokens.md | 7 +++++-- packages/module/patternfly-docs/content/tokensTable.js | 5 ++--- .../generated/tokens/all-patternfly-tokens/tokens.js | 9 +++++++-- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/packages/module/patternfly-docs/content/all-patternfly-tokens.md b/packages/module/patternfly-docs/content/all-patternfly-tokens.md index 31db6f4..4ac3ecb 100644 --- a/packages/module/patternfly-docs/content/all-patternfly-tokens.md +++ b/packages/module/patternfly-docs/content/all-patternfly-tokens.md @@ -3,7 +3,10 @@ section: tokens id: All PatternFly tokens --- - +import * as defaultTokens from './all-tokens-default.json'; +import * as darkTokens from './all-tokens-dark.json'; import { TokensTable } from './tokensTable.js'; - + + + diff --git a/packages/module/patternfly-docs/content/tokensTable.js b/packages/module/patternfly-docs/content/tokensTable.js index 40f5c29..efea90a 100644 --- a/packages/module/patternfly-docs/content/tokensTable.js +++ b/packages/module/patternfly-docs/content/tokensTable.js @@ -54,9 +54,8 @@ const showTokenChain = (tokenData) => { ); }; -export const TokensTable = () => { - // const scssVariables = Object.keys(scssAsJson); - const tokens = Object.entries(defaultTokens); +export const TokensTable = ({ tokenJson }) => { + const tokens = Object.entries(tokenJson); const [searchValue, setSearchValue] = React.useState(''); const [expandedTokens, setExpandedTokens] = React.useState([]); const setExpanded = (tokenName, isExpanding = true) => diff --git a/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js b/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js index 8def49e..5520491 100644 --- a/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js +++ b/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js @@ -1,5 +1,7 @@ import React from 'react'; import { AutoLinkHeader, Example, Link as PatternflyThemeLink } from '@patternfly/documentation-framework/components'; +import * as defaultTokens from '../../../content/./all-tokens-default.json'; +import * as darkTokens from '../../../content/./all-tokens-dark.json'; import { TokensTable } from '../../../content/./tokensTable.js'; const pageData = { "id": "All PatternFly tokens", @@ -16,16 +18,19 @@ const pageData = { "relPath": "packages/module/patternfly-docs/content/all-patternfly-tokens.md" }; pageData.liveContext = { + defaultTokens, + darkTokens, TokensTable }; -pageData.relativeImports = "import { TokensTable } from 'content/./tokensTable.js';" +pageData.relativeImports = "import * as defaultTokens from 'content/./all-tokens-default.json';,import * as darkTokens from 'content/./all-tokens-dark.json';,import { TokensTable } from 'content/./tokensTable.js';" pageData.examples = { }; const Component = () => ( - + + ); Component.displayName = 'TokensAllPatternflyTokensTokensDocs'; From 6ea03900c12c0de177862364f36b7457c1107ba1 Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 14 Jun 2024 16:54:41 -0400 Subject: [PATCH 03/23] chore(docs): multiple theme values & token chains --- .../content/all-patternfly-tokens.md | 4 +- .../patternfly-docs/content/tokensTable.js | 98 ++++++++++++++----- .../tokens/all-patternfly-tokens/tokens.js | 3 +- 3 files changed, 74 insertions(+), 31 deletions(-) diff --git a/packages/module/patternfly-docs/content/all-patternfly-tokens.md b/packages/module/patternfly-docs/content/all-patternfly-tokens.md index 4ac3ecb..e89a466 100644 --- a/packages/module/patternfly-docs/content/all-patternfly-tokens.md +++ b/packages/module/patternfly-docs/content/all-patternfly-tokens.md @@ -7,6 +7,4 @@ import * as defaultTokens from './all-tokens-default.json'; import * as darkTokens from './all-tokens-dark.json'; import { TokensTable } from './tokensTable.js'; - - - + diff --git a/packages/module/patternfly-docs/content/tokensTable.js b/packages/module/patternfly-docs/content/tokensTable.js index efea90a..0c8f06a 100644 --- a/packages/module/patternfly-docs/content/tokensTable.js +++ b/packages/module/patternfly-docs/content/tokensTable.js @@ -1,5 +1,5 @@ -import React from 'react'; -import { SearchInput, Toolbar, ToolbarItem, ToolbarContent } from '@patternfly/react-core'; +import React, { useMemo } from 'react'; +import { SearchInput, Toolbar, ToolbarItem, ToolbarContent, capitalize } from '@patternfly/react-core'; import { Table, Thead, @@ -16,12 +16,29 @@ import { import global_spacer_md from '@patternfly/react-tokens/dist/esm/global_spacer_md'; import LevelUpAltIcon from '@patternfly/react-icons/dist/esm/icons/level-up-alt-icon'; -import * as defaultTokens from './all-tokens-default.json'; -import * as darkTokens from './all-tokens-dark.json'; +// Used to combine data grouped by theme under each token name +const combineObjects = (objectsArr) => { + let combined = {}; + const addToCombined = (obj, objName) => { + for (let key in obj) { + if (obj.hasOwnProperty(key)) { + if (!combined.hasOwnProperty(key)) { + combined[key] = {}; + } + combined[key][objName] = obj[key]; + } + } + }; + Object.entries(objectsArr).forEach(([key, value]) => { + addToCombined(value, key); + }); + + return combined; +}; -const getTokenChain = (tokenData) => { +const getTokenChain = (themeTokenData) => { let tokenChain = []; - let referenceToken = tokenData?.references?.[0]; + let referenceToken = themeTokenData?.references?.[0]; while (referenceToken && referenceToken !== undefined) { tokenChain = [...tokenChain, referenceToken.name]; if (referenceToken?.references?.[0]) { @@ -34,28 +51,39 @@ const getTokenChain = (tokenData) => { return tokenChain; }; -const showTokenChain = (tokenData) => { - const tokenChain = getTokenChain(tokenData); - +const showTokenChain = (themeTokenData) => { + const tokenChain = getTokenChain(themeTokenData); return (
{tokenChain.map((nextValue, index) => (
- {nextValue} + {nextValue}
))}
); }; -export const TokensTable = ({ tokenJson }) => { - const tokens = Object.entries(tokenJson); +export const TokensTable = ({ tokenJson, formatThemeText = capitalize }) => { + // combine all themes/tokens into one object + const themeKeys = Object.keys(tokenJson); + const tokensByTheme = useMemo( + () => + themeKeys.reduce((allTokensObj, curTheme) => { + // transform from modules + const themeTokens = JSON.parse(JSON.stringify(tokenJson[curTheme])); + allTokensObj[curTheme] = themeTokens; + return allTokensObj; + }, {}), + [tokenJson] + ); + const combinedTokens = combineObjects(tokensByTheme); const [searchValue, setSearchValue] = React.useState(''); const [expandedTokens, setExpandedTokens] = React.useState([]); const setExpanded = (tokenName, isExpanding = true) => @@ -88,24 +116,35 @@ export const TokensTable = ({ tokenJson }) => { Name - Value + {themeKeys.map((theme) => ( + {`${formatThemeText(theme)} Theme`} + ))} Description - {tokens.map(([tokenName, tokenData], rowIndex) => { + {Object.entries(combinedTokens).map(([tokenName, themesDataObj], rowIndex) => { + const searchTerm = searchValue.toLowerCase(); if (tokenName === 'default') { return undefined; } else if ( searchValue !== '' && !( - tokenName.includes(searchValue) || - tokenData?.description?.includes(searchValue) || - tokenData?.value?.toString().includes(searchValue) + tokenName.toLowerCase().includes(searchTerm) || + themesDataObj.some( + (theme) => + theme?.value?.toString().toLowerCase().includes(searchTerm) || + theme?.description?.toLowerCase().includes(searchTerm) + ) ) ) { return undefined; } else { - const isResolved = tokenData.references == undefined; + const themesDataArr = Object.entries(themesDataObj); + const isResolved = themesDataArr.every( + ([_themeName, themeTokenData]) => themeTokenData.references == undefined + ); + // Tokens share a description across themes + const description = themesDataArr.find(([_themeName, themeTokenData]) => themeTokenData.description); return ( @@ -121,16 +160,23 @@ export const TokensTable = ({ tokenJson }) => { : undefined } /> - {tokenName} - {tokenData.value} - {tokenData.description ?? ''} + + {tokenName} + {description &&
{description[1].description}
} + + {themeKeys.map((theme) => ( + {tokensByTheme[theme][tokenName]?.value ?? '-'} + ))} {!isResolved && ( - - {showTokenChain(tokenData)} - + + {themesDataArr.map(([themeName, themeTokenData]) => ( + + {showTokenChain(themeTokenData)} + + ))} )} diff --git a/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js b/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js index 5520491..2bc0543 100644 --- a/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js +++ b/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js @@ -29,8 +29,7 @@ pageData.examples = { const Component = () => ( - - + ); Component.displayName = 'TokensAllPatternflyTokensTokensDocs'; From b0784c3513e3773d39c3ab4cca70bfe59604105c Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 14 Jun 2024 18:56:21 -0400 Subject: [PATCH 04/23] chore(docs): adding more token data to view --- .../module/patternfly-docs/content/tokensTable.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/module/patternfly-docs/content/tokensTable.js b/packages/module/patternfly-docs/content/tokensTable.js index 0c8f06a..3aee475 100644 --- a/packages/module/patternfly-docs/content/tokensTable.js +++ b/packages/module/patternfly-docs/content/tokensTable.js @@ -120,6 +120,11 @@ export const TokensTable = ({ tokenJson, formatThemeText = capitalize }) => { {`${formatThemeText(theme)} Theme`} ))} Description + Category + Type + Item + Subitem + State {Object.entries(combinedTokens).map(([tokenName, themesDataObj], rowIndex) => { @@ -162,11 +167,16 @@ export const TokensTable = ({ tokenJson, formatThemeText = capitalize }) => { /> {tokenName} - {description &&
{description[1].description}
} {themeKeys.map((theme) => ( {tokensByTheme[theme][tokenName]?.value ?? '-'} ))} + {description && description[1].description} + {console.log(themesDataArr[0])} + + + + {!isResolved && ( From 69d06c09c58cb91b56fd9a53f35605d173363ffc Mon Sep 17 00:00:00 2001 From: Evan Wilkinson Date: Tue, 18 Jun 2024 15:42:34 -0400 Subject: [PATCH 05/23] chore(docs): build out new tokens table implementation --- packages/module/build.js | 50 + .../module/build/css/tokens-charts-dark.scss | 2 +- packages/module/build/css/tokens-charts.scss | 2 +- packages/module/build/css/tokens-dark.scss | 50 +- packages/module/build/css/tokens-default.scss | 104 +- packages/module/build/css/tokens-palette.scss | 2 +- packages/module/config.semantic.dark.json | 20 + packages/module/config.semantic.json | 19 + .../content/all-patternfly-tokens.md | 10 +- .../content/all-tokens-dark.json | 5885 +- .../content/all-tokens-default.json | 6243 +- .../content/semantic-tokens-dark.json | 58147 ++++++++++++++++ .../content/semantic-tokens-default.json | 54106 ++++++++++++++ .../patternfly-docs/content/tokensTable.js | 56 +- .../content/tokensTableCategories.js | 263 + .../tokens/all-patternfly-tokens/tokens.js | 12 +- .../module/patternfly-docs/scssAsJson.json | 2 +- packages/module/tokens/dark/base.dark.json | 4 +- .../module/tokens/dark/semantic.dark.json | 389 +- .../module/tokens/default/base.dimension.json | 70 +- packages/module/tokens/default/base.json | 6 +- .../tokens/default/semantic.dimension.json | 274 +- packages/module/tokens/default/semantic.json | 389 +- .../tokens/default/semantic.motion.json | 26 + 24 files changed, 120574 insertions(+), 5557 deletions(-) create mode 100644 packages/module/config.semantic.dark.json create mode 100644 packages/module/config.semantic.json create mode 100644 packages/module/patternfly-docs/content/semantic-tokens-dark.json create mode 100644 packages/module/patternfly-docs/content/semantic-tokens-default.json create mode 100644 packages/module/patternfly-docs/content/tokensTableCategories.js diff --git a/packages/module/build.js b/packages/module/build.js index 083d90b..bacbbfc 100644 --- a/packages/module/build.js +++ b/packages/module/build.js @@ -3,6 +3,18 @@ const StyleDictionary = require('style-dictionary'); const build = (selector) => { const { fileHeader, formattedVariables, sortByName, sortByReference } = StyleDictionary.formatHelpers; + const getTokenLayer = ({ filePath }) => { + if (filePath.includes('semantic.json')) return ['semantic', 'colors']; + if (filePath.includes('semantic.dark.json')) return ['semantic', 'colors']; + if (filePath.includes('semantic.dimension.json')) return ['semantic', 'dimension']; + if (filePath.includes('semantic.motion.json')) return ['semantic', 'motion']; + if (filePath.includes('base.json')) return ['base', 'colors']; + if (filePath.includes('base.dark.json')) return ['base', 'colors']; + if (filePath.includes('base.dimension.json')) return ['base', 'dimension']; + if (filePath.includes('base.motion.json')) return ['base', 'motion']; + if (filePath.includes('palette.color.json')) return ['palette']; + return ['palette']; + }; console.log('Build started...'); console.log('\n============================'); @@ -37,6 +49,40 @@ const build = (selector) => { } }); + StyleDictionary.registerFormat({ + name: 'json/flat-categories', + formatter: function (dictionary) { + let tokens = { + semantic: { + colors: {}, + dimension: {}, + motion: {} + }, + base: { + colors: {}, + dimension: {}, + motion: {} + }, + palette: {} + }; + dictionary.allTokens.map((token) => { + // determine token type based on tokens filepath + const layer = getTokenLayer(token); + let insertLayer = tokens; + while (layer.length) { + insertLayer = insertLayer[layer.shift()]; + } + // assign each token object to token.name + insertLayer[token.name] = token; + // attach references to build token chain + if (dictionary.usesReference(token.original.value)) { + token.references = dictionary.getReferences(token.original.value); + } + }); + return JSON.stringify(tokens, null, 2); + } + }); + // Register custom transforms StyleDictionary.registerTransform({ name: 'patternfly/global/px', @@ -90,6 +136,8 @@ const build = (selector) => { const chartsDarkExtendedSD = StyleDictionary.extend(__dirname + '/config.charts.dark.json'); const allDefaultSD = StyleDictionary.extend(__dirname + '/config.all.default.json'); const allDarkSD = StyleDictionary.extend(__dirname + '/config.all.dark.json'); + const semanticSD = StyleDictionary.extend(__dirname + '/config.semantic.json'); + const semanticDarkSD = StyleDictionary.extend(__dirname + '/config.semantic.dark.json'); // Build all defaultExtendedSD.buildAllPlatforms(); @@ -99,6 +147,8 @@ const build = (selector) => { chartsDarkExtendedSD.buildAllPlatforms(); allDefaultSD.buildAllPlatforms(); allDarkSD.buildAllPlatforms(); + semanticSD.buildAllPlatforms(); + semanticDarkSD.buildAllPlatforms(); console.log('\n============================'); console.log('\nBuild completed.'); diff --git a/packages/module/build/css/tokens-charts-dark.scss b/packages/module/build/css/tokens-charts-dark.scss index c902993..c9f4957 100644 --- a/packages/module/build/css/tokens-charts-dark.scss +++ b/packages/module/build/css/tokens-charts-dark.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Thu, 13 Jun 2024 20:36:47 GMT +// Generated on Tue, 18 Jun 2024 19:21:34 GMT :root { --pf-t--chart--global--stroke-line-join: round; diff --git a/packages/module/build/css/tokens-charts.scss b/packages/module/build/css/tokens-charts.scss index cfc9406..e8bcfd9 100644 --- a/packages/module/build/css/tokens-charts.scss +++ b/packages/module/build/css/tokens-charts.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Thu, 13 Jun 2024 20:36:47 GMT +// Generated on Tue, 18 Jun 2024 19:21:34 GMT :root { --pf-t--chart--global--stroke-line-join: round; diff --git a/packages/module/build/css/tokens-dark.scss b/packages/module/build/css/tokens-dark.scss index f1a6b30..7778565 100644 --- a/packages/module/build/css/tokens-dark.scss +++ b/packages/module/build/css/tokens-dark.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Thu, 13 Jun 2024 20:36:47 GMT +// Generated on Tue, 18 Jun 2024 19:21:34 GMT :root { --pf-t--global--background--color--action--plain--default: rgba(0, 0, 0, 0.0000); @@ -34,15 +34,15 @@ --pf-t--global--dark--color--nonstatus--blue--300: var(--pf-t--color--blue--10); --pf-t--global--dark--color--nonstatus--blue--200: var(--pf-t--color--blue--20); --pf-t--global--dark--color--nonstatus--blue--100: var(--pf-t--color--blue--30); - --pf-t--global--dark--color--nonstatus--cyan--300: var(--pf-t--color--teal--10); - --pf-t--global--dark--color--nonstatus--cyan--200: var(--pf-t--color--teal--20); - --pf-t--global--dark--color--nonstatus--cyan--100: var(--pf-t--color--teal--30); + --pf-t--global--dark--color--nonstatus--teal--300: var(--pf-t--color--teal--10); + --pf-t--global--dark--color--nonstatus--teal--200: var(--pf-t--color--teal--20); + --pf-t--global--dark--color--nonstatus--teal--100: var(--pf-t--color--teal--30); --pf-t--global--dark--color--nonstatus--green--300: var(--pf-t--color--green--10); --pf-t--global--dark--color--nonstatus--green--200: var(--pf-t--color--green--20); --pf-t--global--dark--color--nonstatus--green--100: var(--pf-t--color--green--30); - --pf-t--global--dark--color--nonstatus--gold--300: var(--pf-t--color--yellow--10); - --pf-t--global--dark--color--nonstatus--gold--200: var(--pf-t--color--yellow--20); - --pf-t--global--dark--color--nonstatus--gold--100: var(--pf-t--color--yellow--30); + --pf-t--global--dark--color--nonstatus--yellow--300: var(--pf-t--color--yellow--10); + --pf-t--global--dark--color--nonstatus--yellow--200: var(--pf-t--color--yellow--20); + --pf-t--global--dark--color--nonstatus--yellow--100: var(--pf-t--color--yellow--30); --pf-t--global--dark--color--nonstatus--orange--300: var(--pf-t--color--orange--10); --pf-t--global--dark--color--nonstatus--orange--200: var(--pf-t--color--orange--20); --pf-t--global--dark--color--nonstatus--orange--100: var(--pf-t--color--orange--30); @@ -89,14 +89,14 @@ --pf-t--global--text--color--status--danger--default: var(--pf-t--global--dark--color--status--danger--250); --pf-t--global--text--color--on-highlight: var(--pf-t--global--dark--text--color--300); --pf-t--global--text--color--required: var(--pf-t--global--dark--text--color--400); - --pf-t--global--text--color--brand--clicked: var(--pf-t--global--dark--color--brand--300); - --pf-t--global--text--color--brand--hover: var(--pf-t--global--dark--color--brand--300); - --pf-t--global--text--color--brand--default: var(--pf-t--global--dark--color--brand--200); --pf-t--global--text--color--on-disabled: var(--pf-t--global--dark--color--disabled--300); --pf-t--global--text--color--disabled: var(--pf-t--global--dark--color--disabled--200); --pf-t--global--text--color--inverse: var(--pf-t--global--dark--text--color--300); --pf-t--global--text--color--subtle: var(--pf-t--global--dark--text--color--200); --pf-t--global--text--color--regular: var(--pf-t--global--dark--text--color--100); + --pf-t--global--text--color--brand--clicked: var(--pf-t--global--dark--color--brand--300); + --pf-t--global--text--color--brand--hover: var(--pf-t--global--dark--color--brand--300); + --pf-t--global--text--color--brand--default: var(--pf-t--global--dark--color--brand--200); --pf-t--global--text--color--link--visited: var(--pf-t--global--dark--text--color--link--300); --pf-t--global--text--color--link--hover: var(--pf-t--global--dark--text--color--link--200); --pf-t--global--text--color--link--default: var(--pf-t--global--dark--text--color--link--100); @@ -109,15 +109,15 @@ --pf-t--global--border--color--nonstatus--blue--clicked: var(--pf-t--global--dark--color--nonstatus--blue--200); --pf-t--global--border--color--nonstatus--blue--hover: var(--pf-t--global--dark--color--nonstatus--blue--200); --pf-t--global--border--color--nonstatus--blue--default: var(--pf-t--global--dark--color--nonstatus--blue--100); - --pf-t--global--border--color--nonstatus--teal--clicked: var(--pf-t--global--dark--color--nonstatus--cyan--200); - --pf-t--global--border--color--nonstatus--teal--hover: var(--pf-t--global--dark--color--nonstatus--cyan--200); - --pf-t--global--border--color--nonstatus--teal--default: var(--pf-t--global--dark--color--nonstatus--cyan--100); + --pf-t--global--border--color--nonstatus--teal--clicked: var(--pf-t--global--dark--color--nonstatus--teal--200); + --pf-t--global--border--color--nonstatus--teal--hover: var(--pf-t--global--dark--color--nonstatus--teal--200); + --pf-t--global--border--color--nonstatus--teal--default: var(--pf-t--global--dark--color--nonstatus--teal--100); --pf-t--global--border--color--nonstatus--green--clicked: var(--pf-t--global--dark--color--nonstatus--green--200); --pf-t--global--border--color--nonstatus--green--hover: var(--pf-t--global--dark--color--nonstatus--green--200); --pf-t--global--border--color--nonstatus--green--default: var(--pf-t--global--dark--color--nonstatus--green--100); - --pf-t--global--border--color--nonstatus--yellow--clicked: var(--pf-t--global--dark--color--nonstatus--gold--200); - --pf-t--global--border--color--nonstatus--yellow--hover: var(--pf-t--global--dark--color--nonstatus--gold--200); - --pf-t--global--border--color--nonstatus--yellow--default: var(--pf-t--global--dark--color--nonstatus--gold--100); + --pf-t--global--border--color--nonstatus--yellow--clicked: var(--pf-t--global--dark--color--nonstatus--yellow--200); + --pf-t--global--border--color--nonstatus--yellow--hover: var(--pf-t--global--dark--color--nonstatus--yellow--200); + --pf-t--global--border--color--nonstatus--yellow--default: var(--pf-t--global--dark--color--nonstatus--yellow--100); --pf-t--global--border--color--nonstatus--orange--clicked: var(--pf-t--global--dark--color--nonstatus--orange--200); --pf-t--global--border--color--nonstatus--orange--hover: var(--pf-t--global--dark--color--nonstatus--orange--200); --pf-t--global--border--color--nonstatus--orange--default: var(--pf-t--global--dark--color--nonstatus--orange--100); @@ -155,15 +155,15 @@ --pf-t--global--color--nonstatus--blue--clicked: var(--pf-t--global--dark--color--nonstatus--blue--200); --pf-t--global--color--nonstatus--blue--hover: var(--pf-t--global--dark--color--nonstatus--blue--200); --pf-t--global--color--nonstatus--blue--default: var(--pf-t--global--dark--color--nonstatus--blue--100); - --pf-t--global--color--nonstatus--teal--clicked: var(--pf-t--global--dark--color--nonstatus--cyan--200); - --pf-t--global--color--nonstatus--teal--hover: var(--pf-t--global--dark--color--nonstatus--cyan--200); - --pf-t--global--color--nonstatus--teal--default: var(--pf-t--global--dark--color--nonstatus--cyan--100); + --pf-t--global--color--nonstatus--teal--clicked: var(--pf-t--global--dark--color--nonstatus--teal--200); + --pf-t--global--color--nonstatus--teal--hover: var(--pf-t--global--dark--color--nonstatus--teal--200); + --pf-t--global--color--nonstatus--teal--default: var(--pf-t--global--dark--color--nonstatus--teal--100); --pf-t--global--color--nonstatus--green--clicked: var(--pf-t--global--dark--color--nonstatus--green--200); --pf-t--global--color--nonstatus--green--hover: var(--pf-t--global--dark--color--nonstatus--green--200); --pf-t--global--color--nonstatus--green--default: var(--pf-t--global--dark--color--nonstatus--green--100); - --pf-t--global--color--nonstatus--yellow--clicked: var(--pf-t--global--dark--color--nonstatus--gold--200); - --pf-t--global--color--nonstatus--yellow--hover: var(--pf-t--global--dark--color--nonstatus--gold--200); - --pf-t--global--color--nonstatus--yellow--default: var(--pf-t--global--dark--color--nonstatus--gold--100); + --pf-t--global--color--nonstatus--yellow--clicked: var(--pf-t--global--dark--color--nonstatus--yellow--200); + --pf-t--global--color--nonstatus--yellow--hover: var(--pf-t--global--dark--color--nonstatus--yellow--200); + --pf-t--global--color--nonstatus--yellow--default: var(--pf-t--global--dark--color--nonstatus--yellow--100); --pf-t--global--color--nonstatus--orangered--clicked: var(--pf-t--global--dark--color--nonstatus--orangered--200); --pf-t--global--color--nonstatus--orangered--hover: var(--pf-t--global--dark--color--nonstatus--orangered--200); --pf-t--global--color--nonstatus--orangered--default: var(--pf-t--global--dark--color--nonstatus--orangered--100); @@ -367,7 +367,7 @@ --pf-t--global--color--status--unread--attention--hover: var(--pf-t--global--color--status--danger--hover); --pf-t--global--color--status--unread--attention--clicked: var(--pf-t--global--color--status--danger--clicked); --pf-t--global--color--status--unread--attention--default: var(--pf-t--global--color--status--danger--default); - --pf-t--global--color--status--unread--default--clicked: var(--pf-t--global--color--brand--clicked); - --pf-t--global--color--status--unread--default--hover: var(--pf-t--global--color--brand--hover); - --pf-t--global--color--status--unread--default--default: var(--pf-t--global--color--brand--default); + --pf-t--global--color--status--unread--clicked: var(--pf-t--global--color--brand--clicked); + --pf-t--global--color--status--unread--hover: var(--pf-t--global--color--brand--hover); + --pf-t--global--color--status--unread--default: var(--pf-t--global--color--brand--default); } diff --git a/packages/module/build/css/tokens-default.scss b/packages/module/build/css/tokens-default.scss index 045a12f..c9593aa 100644 --- a/packages/module/build/css/tokens-default.scss +++ b/packages/module/build/css/tokens-default.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Thu, 13 Jun 2024 20:36:47 GMT +// Generated on Tue, 18 Jun 2024 19:21:34 GMT :root { --pf-t--global--timing-function--300: cubic-bezier(0, 0, .2, 1); @@ -34,7 +34,7 @@ --pf-t--global--box-shadow--spread--100: 0px; --pf-t--global--box-shadow--blur--300: 24px; --pf-t--global--box-shadow--blur--200: 8px; - --pf-t--global--box-shadow--blur--100: 2px; + --pf-t--global--box-shadow--blur--100: 4px; --pf-t--global--box-shadow--Y--700: 8px; --pf-t--global--box-shadow--Y--600: 4px; --pf-t--global--box-shadow--Y--500: 1px; @@ -63,16 +63,12 @@ --pf-t--global--font--size--300: 16px; --pf-t--global--font--size--200: 14px; --pf-t--global--font--size--100: 12px; - --pf-t--global--font--line-height--figma-only--800: 46.79999923706055; - --pf-t--global--font--line-height--figma-only--700: 36.400001525878906; - --pf-t--global--font--line-height--figma-only--600: 28.600000381469727; - --pf-t--global--font--line-height--figma-only--500: 26; - --pf-t--global--font--line-height--figma-only--400: 23.399999618530273; - --pf-t--global--font--line-height--figma-only--300: 24; - --pf-t--global--font--line-height--figma-only--200: 21; - --pf-t--global--font--line-height--figma-only--100: 18; --pf-t--global--font--line-height--200: 1.5; --pf-t--global--font--line-height--100: 1.2999999523162842; + --pf-t--global--font--weight--400: 700; + --pf-t--global--font--weight--300: 700; + --pf-t--global--font--weight--200: 500; + --pf-t--global--font--weight--100: 400; --pf-t--global--font--family--300: Red Hat Mono VF; --pf-t--global--font--family--200: Red Hat Display VF; --pf-t--global--font--family--100: Red Hat Text VF; @@ -119,7 +115,7 @@ --pf-t--global--text--color--400: var(--pf-t--color--red-orange--40); --pf-t--global--text--color--300: var(--pf-t--color--white); --pf-t--global--text--color--200: var(--pf-t--color--gray--60); - --pf-t--global--text--color--100: var(--pf-t--color--gray--90); + --pf-t--global--text--color--100: var(--pf-t--color--gray--95); --pf-t--global--color--nonstatus--gray--300: var(--pf-t--color--gray--40); --pf-t--global--color--nonstatus--gray--200: var(--pf-t--color--gray--30); --pf-t--global--color--nonstatus--gray--100: var(--pf-t--color--gray--20); @@ -129,15 +125,15 @@ --pf-t--global--color--nonstatus--blue--300: var(--pf-t--color--blue--40); --pf-t--global--color--nonstatus--blue--200: var(--pf-t--color--blue--30); --pf-t--global--color--nonstatus--blue--100: var(--pf-t--color--blue--20); - --pf-t--global--color--nonstatus--cyan--300: var(--pf-t--color--teal--40); - --pf-t--global--color--nonstatus--cyan--200: var(--pf-t--color--teal--30); - --pf-t--global--color--nonstatus--cyan--100: var(--pf-t--color--teal--20); + --pf-t--global--color--nonstatus--teal--300: var(--pf-t--color--teal--40); + --pf-t--global--color--nonstatus--teal--200: var(--pf-t--color--teal--30); + --pf-t--global--color--nonstatus--teal--100: var(--pf-t--color--teal--20); --pf-t--global--color--nonstatus--green--300: var(--pf-t--color--green--40); --pf-t--global--color--nonstatus--green--200: var(--pf-t--color--green--30); --pf-t--global--color--nonstatus--green--100: var(--pf-t--color--green--20); - --pf-t--global--color--nonstatus--gold--300: var(--pf-t--color--yellow--40); - --pf-t--global--color--nonstatus--gold--200: var(--pf-t--color--yellow--30); - --pf-t--global--color--nonstatus--gold--100: var(--pf-t--color--yellow--20); + --pf-t--global--color--nonstatus--yellow--300: var(--pf-t--color--yellow--40); + --pf-t--global--color--nonstatus--yellow--200: var(--pf-t--color--yellow--30); + --pf-t--global--color--nonstatus--yellow--100: var(--pf-t--color--yellow--20); --pf-t--global--color--nonstatus--orange--300: var(--pf-t--color--orange--40); --pf-t--global--color--nonstatus--orange--200: var(--pf-t--color--orange--30); --pf-t--global--color--nonstatus--orange--100: var(--pf-t--color--orange--20); @@ -248,17 +244,8 @@ --pf-t--global--font--size--xs: var(--pf-t--global--font--size--100); --pf-t--global--font--line-height--heading: var(--pf-t--global--font--line-height--200); --pf-t--global--font--line-height--body: var(--pf-t--global--font--line-height--100); - --pf-t--global--font--line-height--figma-only--heading--2xl: var(--pf-t--global--font--line-height--figma-only--800); - --pf-t--global--font--line-height--figma-only--heading--xl: var(--pf-t--global--font--line-height--figma-only--700); - --pf-t--global--font--line-height--figma-only--heading--lg: var(--pf-t--global--font--line-height--figma-only--600); - --pf-t--global--font--line-height--figma-only--heading--md: var(--pf-t--global--font--line-height--figma-only--500); - --pf-t--global--font--line-height--figma-only--heading--sm: var(--pf-t--global--font--line-height--figma-only--400); - --pf-t--global--font--line-height--figma-only--heading--xs: var(--pf-t--global--font--line-height--figma-only--300); - --pf-t--global--font--line-height--figma-only--body--large: var(--pf-t--global--font--line-height--figma-only--300); - --pf-t--global--font--line-height--figma-only--body--default: var(--pf-t--global--font--line-height--figma-only--200); - --pf-t--global--font--line-height--figma-only--body--small: var(--pf-t--global--font--line-height--figma-only--100); - --pf-t--global--font--weight--heading: {global.font.weight.heading.100}; - --pf-t--global--font--weight--body: {global.font.weight.body.100}; + --pf-t--global--font--weight--heading: var(--pf-t--global--font--weight--300); + --pf-t--global--font--weight--body: var(--pf-t--global--font--weight--100); --pf-t--global--font--family--mono: var(--pf-t--global--font--family--300); --pf-t--global--font--family--heading: var(--pf-t--global--font--family--200); --pf-t--global--font--family--body: var(--pf-t--global--font--family--100); @@ -274,9 +261,9 @@ --pf-t--global--border--width--control--clicked: var(--pf-t--global--border--width--200); --pf-t--global--border--width--control--hover: var(--pf-t--global--border--width--100); --pf-t--global--border--width--control--default: var(--pf-t--global--border--width--100); - --pf-t--global--border--width--button--clicked: var(--pf-t--global--border--width--200); - --pf-t--global--border--width--button--hover: var(--pf-t--global--border--width--200); - --pf-t--global--border--width--button--default: var(--pf-t--global--border--width--100); + --pf-t--global--border--width--action--clicked: var(--pf-t--global--border--width--200); + --pf-t--global--border--width--action--hover: var(--pf-t--global--border--width--200); + --pf-t--global--border--width--action--default: var(--pf-t--global--border--width--100); --pf-t--global--border--width--box--status--read: var(--pf-t--global--border--width--100); --pf-t--global--border--width--box--status--default: var(--pf-t--global--border--width--200); --pf-t--global--border--width--box--clicked: var(--pf-t--global--border--width--200); @@ -297,10 +284,6 @@ --pf-t--global--icon--size--lg: var(--pf-t--global--icon--size--250); --pf-t--global--icon--size--md: var(--pf-t--global--icon--size--200); --pf-t--global--icon--size--sm: var(--pf-t--global--icon--size--100); - --pf-t--global--spacer--button--vertical--compact: var(--pf-t--global--spacer--100); - --pf-t--global--spacer--button--horizontal--compact: var(--pf-t--global--spacer--300); - --pf-t--global--spacer--control--horizontal--compact: var(--pf-t--global--spacer--200); - --pf-t--global--spacer--control--vertical--compact: var(--pf-t--global--spacer--100); --pf-t--global--spacer--4xl: var(--pf-t--global--spacer--800); --pf-t--global--spacer--3xl: var(--pf-t--global--spacer--700); --pf-t--global--spacer--2xl: var(--pf-t--global--spacer--600); @@ -334,12 +317,6 @@ --pf-t--global--text--color--link--visited: var(--pf-t--global--text--color--link--300); --pf-t--global--text--color--link--hover: var(--pf-t--global--text--color--link--200); --pf-t--global--text--color--link--default: var(--pf-t--global--text--color--link--100); - --pf-t--global--color--nonstatus--teal--clicked: var(--pf-t--global--color--nonstatus--cyan--200); - --pf-t--global--color--nonstatus--teal--hover: var(--pf-t--global--color--nonstatus--cyan--200); - --pf-t--global--color--nonstatus--teal--default: var(--pf-t--global--color--nonstatus--cyan--100); - --pf-t--global--color--nonstatus--yellow--clicked: var(--pf-t--global--color--nonstatus--gold--200); - --pf-t--global--color--nonstatus--yellow--hover: var(--pf-t--global--color--nonstatus--gold--200); - --pf-t--global--color--nonstatus--yellow--default: var(--pf-t--global--color--nonstatus--gold--100); --pf-t--global--color--nonstatus--gray--clicked: var(--pf-t--global--color--nonstatus--gray--200); --pf-t--global--color--nonstatus--gray--hover: var(--pf-t--global--color--nonstatus--gray--200); --pf-t--global--color--nonstatus--gray--default: var(--pf-t--global--color--nonstatus--gray--100); @@ -349,9 +326,15 @@ --pf-t--global--color--nonstatus--blue--clicked: var(--pf-t--global--color--nonstatus--blue--200); --pf-t--global--color--nonstatus--blue--hover: var(--pf-t--global--color--nonstatus--blue--200); --pf-t--global--color--nonstatus--blue--default: var(--pf-t--global--color--nonstatus--blue--100); + --pf-t--global--color--nonstatus--teal--clicked: var(--pf-t--global--color--nonstatus--teal--200); + --pf-t--global--color--nonstatus--teal--hover: var(--pf-t--global--color--nonstatus--teal--200); + --pf-t--global--color--nonstatus--teal--default: var(--pf-t--global--color--nonstatus--teal--100); --pf-t--global--color--nonstatus--green--clicked: var(--pf-t--global--color--nonstatus--green--200); --pf-t--global--color--nonstatus--green--hover: var(--pf-t--global--color--nonstatus--green--200); --pf-t--global--color--nonstatus--green--default: var(--pf-t--global--color--nonstatus--green--100); + --pf-t--global--color--nonstatus--yellow--clicked: var(--pf-t--global--color--nonstatus--yellow--200); + --pf-t--global--color--nonstatus--yellow--hover: var(--pf-t--global--color--nonstatus--yellow--200); + --pf-t--global--color--nonstatus--yellow--default: var(--pf-t--global--color--nonstatus--yellow--100); --pf-t--global--color--nonstatus--orange--clicked: var(--pf-t--global--color--nonstatus--orange--200); --pf-t--global--color--nonstatus--orange--hover: var(--pf-t--global--color--nonstatus--orange--200); --pf-t--global--color--nonstatus--orange--default: var(--pf-t--global--color--nonstatus--orange--100); @@ -415,15 +398,15 @@ --pf-t--global--border--color--nonstatus--blue--clicked: var(--pf-t--global--color--nonstatus--blue--300); --pf-t--global--border--color--nonstatus--blue--hover: var(--pf-t--global--color--nonstatus--blue--300); --pf-t--global--border--color--nonstatus--blue--default: var(--pf-t--global--color--nonstatus--blue--200); - --pf-t--global--border--color--nonstatus--teal--clicked: var(--pf-t--global--color--nonstatus--cyan--300); - --pf-t--global--border--color--nonstatus--teal--hover: var(--pf-t--global--color--nonstatus--cyan--300); - --pf-t--global--border--color--nonstatus--teal--default: var(--pf-t--global--color--nonstatus--cyan--200); + --pf-t--global--border--color--nonstatus--teal--clicked: var(--pf-t--global--color--nonstatus--teal--300); + --pf-t--global--border--color--nonstatus--teal--hover: var(--pf-t--global--color--nonstatus--teal--300); + --pf-t--global--border--color--nonstatus--teal--default: var(--pf-t--global--color--nonstatus--teal--200); --pf-t--global--border--color--nonstatus--green--clicked: var(--pf-t--global--color--nonstatus--green--300); --pf-t--global--border--color--nonstatus--green--hover: var(--pf-t--global--color--nonstatus--green--300); --pf-t--global--border--color--nonstatus--green--default: var(--pf-t--global--color--nonstatus--green--200); - --pf-t--global--border--color--nonstatus--yellow--clicked: var(--pf-t--global--color--nonstatus--gold--300); - --pf-t--global--border--color--nonstatus--yellow--hover: var(--pf-t--global--color--nonstatus--gold--300); - --pf-t--global--border--color--nonstatus--yellow--default: var(--pf-t--global--color--nonstatus--gold--200); + --pf-t--global--border--color--nonstatus--yellow--clicked: var(--pf-t--global--color--nonstatus--yellow--300); + --pf-t--global--border--color--nonstatus--yellow--hover: var(--pf-t--global--color--nonstatus--yellow--300); + --pf-t--global--border--color--nonstatus--yellow--default: var(--pf-t--global--color--nonstatus--yellow--200); --pf-t--global--border--color--nonstatus--orange--clicked: var(--pf-t--global--color--nonstatus--orange--300); --pf-t--global--border--color--nonstatus--orange--hover: var(--pf-t--global--color--nonstatus--orange--300); --pf-t--global--border--color--nonstatus--orange--default: var(--pf-t--global--color--nonstatus--orange--200); @@ -463,10 +446,12 @@ --pf-t--global--icon--size--font--md: var(--pf-t--global--font--size--md); --pf-t--global--icon--size--font--sm: var(--pf-t--global--font--size--sm); --pf-t--global--icon--size--font--xs: var(--pf-t--global--font--size--xs); + --pf-t--global--spacer--action--vertical--spacious: var(--pf-t--global--spacer--md); + --pf-t--global--spacer--action--vertical--compact: var(--pf-t--global--spacer--xs); + --pf-t--global--spacer--action--horizontal--spacious: var(--pf-t--global--spacer--xl); + --pf-t--global--spacer--action--horizontal--compact: var(--pf-t--global--spacer--md); --pf-t--global--spacer--action--horizontal--plain: var(--pf-t--global--spacer--sm); --pf-t--global--spacer--action--horizontal--default: var(--pf-t--global--spacer--lg); - --pf-t--global--spacer--action--vertical--plain: var(--pf-t--global--spacer--sm); - --pf-t--global--spacer--action--vertical--default: var(--pf-t--global--spacer--sm); --pf-t--global--spacer--gap--action-to-action--plain: var(--pf-t--global--spacer--xs); --pf-t--global--spacer--gap--action-to-action--default: var(--pf-t--global--spacer--md); --pf-t--global--spacer--gap--group-to-group--vertical: var(--pf-t--global--spacer--lg); @@ -475,9 +460,12 @@ --pf-t--global--spacer--gap--group--vertical: var(--pf-t--global--spacer--sm); --pf-t--global--spacer--gap--control-to-control--default: var(--pf-t--global--spacer--xs); --pf-t--global--spacer--gap--text-to-element--default: var(--pf-t--global--spacer--sm); + --pf-t--global--spacer--control--horizontal--spacious: var(--pf-t--global--spacer--lg); + --pf-t--global--spacer--control--horizontal--compact: var(--pf-t--global--spacer--sm); --pf-t--global--spacer--control--horizontal--plain: var(--pf-t--global--spacer--sm); --pf-t--global--spacer--control--horizontal--default: var(--pf-t--global--spacer--md); --pf-t--global--spacer--control--vertical--plain: var(--pf-t--global--spacer--sm); + --pf-t--global--spacer--control--vertical--compact: var(--pf-t--global--spacer--xs); --pf-t--global--spacer--control--vertical--default: var(--pf-t--global--spacer--sm); --pf-t--global--text--color--nonstatus--on-gray--clicked: var(--pf-t--global--text--color--regular); --pf-t--global--text--color--nonstatus--on-gray--hover: var(--pf-t--global--text--color--regular); @@ -539,20 +527,20 @@ --pf-t--global--text--color--status--success--clicked: var(--pf-t--global--color--status--success--clicked); --pf-t--global--text--color--status--success--hover: var(--pf-t--global--color--status--success--hover); --pf-t--global--text--color--status--success--default: var(--pf-t--global--color--status--success--default); - --pf-t--global--text--color--brand--clicked: var(--pf-t--global--color--brand--clicked); - --pf-t--global--text--color--brand--hover: var(--pf-t--global--color--brand--hover); - --pf-t--global--text--color--brand--default: var(--pf-t--global--color--brand--default); --pf-t--global--text--color--placeholder: var(--pf-t--global--text--color--subtle); --pf-t--global--text--color--on-brand--clicked: var(--pf-t--global--text--color--inverse); --pf-t--global--text--color--on-brand--hover: var(--pf-t--global--text--color--inverse); --pf-t--global--text--color--on-brand--default: var(--pf-t--global--text--color--inverse); + --pf-t--global--text--color--brand--clicked: var(--pf-t--global--color--brand--clicked); + --pf-t--global--text--color--brand--hover: var(--pf-t--global--color--brand--hover); + --pf-t--global--text--color--brand--default: var(--pf-t--global--color--brand--default); --pf-t--global--color--status--read--on-primary: var(--pf-t--global--background--color--secondary--default); --pf-t--global--color--status--unread--attention--hover: var(--pf-t--global--color--status--danger--hover); --pf-t--global--color--status--unread--attention--clicked: var(--pf-t--global--color--status--danger--clicked); --pf-t--global--color--status--unread--attention--default: var(--pf-t--global--color--status--danger--default); - --pf-t--global--color--status--unread--default--clicked: var(--pf-t--global--color--brand--clicked); - --pf-t--global--color--status--unread--default--hover: var(--pf-t--global--color--brand--hover); - --pf-t--global--color--status--unread--default--default: var(--pf-t--global--color--brand--default); + --pf-t--global--color--status--unread--clicked: var(--pf-t--global--color--brand--clicked); + --pf-t--global--color--status--unread--hover: var(--pf-t--global--color--brand--hover); + --pf-t--global--color--status--unread--default: var(--pf-t--global--color--brand--default); --pf-t--global--background--color--control--default: var(--pf-t--global--background--color--primary--default); --pf-t--global--border--color--alt: var(--pf-t--global--background--color--primary--default); --pf-t--global--border--color--status--custom--clicked: var(--pf-t--global--color--status--custom--clicked); @@ -639,14 +627,14 @@ --pf-t--global--icon--color--brand--clicked: var(--pf-t--global--color--brand--clicked); --pf-t--global--icon--color--brand--hover: var(--pf-t--global--color--brand--hover); --pf-t--global--icon--color--brand--default: var(--pf-t--global--color--brand--default); + --pf-t--global--icon--size--font--body--lg: var(--pf-t--global--font--size--body--lg); + --pf-t--global--icon--size--font--body--default: var(--pf-t--global--font--size--body--default); + --pf-t--global--icon--size--font--body--sm: var(--pf-t--global--font--size--body--sm); --pf-t--global--icon--size--font--heading--h6: var(--pf-t--global--font--size--heading--h6); --pf-t--global--icon--size--font--heading--h5: var(--pf-t--global--font--size--heading--h5); --pf-t--global--icon--size--font--heading--h4: var(--pf-t--global--font--size--heading--h4); --pf-t--global--icon--size--font--heading--h3: var(--pf-t--global--font--size--heading--h3); --pf-t--global--icon--size--font--heading--h2: var(--pf-t--global--font--size--heading--h2); --pf-t--global--icon--size--font--heading--h1: var(--pf-t--global--font--size--heading--h1); - --pf-t--global--icon--size--font--body--lg: var(--pf-t--global--font--size--body--lg); - --pf-t--global--icon--size--font--body--default: var(--pf-t--global--font--size--body--default); - --pf-t--global--icon--size--font--body--sm: var(--pf-t--global--font--size--body--sm); --pf-t--global--color--status--read--on-secondary: var(--pf-t--global--background--color--control--default); } diff --git a/packages/module/build/css/tokens-palette.scss b/packages/module/build/css/tokens-palette.scss index a8fba5b..7d721c0 100644 --- a/packages/module/build/css/tokens-palette.scss +++ b/packages/module/build/css/tokens-palette.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Thu, 13 Jun 2024 20:36:47 GMT +// Generated on Tue, 18 Jun 2024 19:21:34 GMT :root { --pf-t--color--red--70: #5f0000; diff --git a/packages/module/config.semantic.dark.json b/packages/module/config.semantic.dark.json new file mode 100644 index 0000000..1da17f9 --- /dev/null +++ b/packages/module/config.semantic.dark.json @@ -0,0 +1,20 @@ +{ + "include": ["tokens/default/*.json"], + "source": ["tokens/dark/*.json"], + "platforms": { + "json/default": { + "transformGroup": "patternfly/css", + "buildPath": "patternfly-docs/content/", + "prefix": "pf-t", + "files": [ + { + "destination": "semantic-tokens-dark.json", + "format": "json/flat-categories", + "options": { + "outputReferences": false + } + } + ] + } + } +} diff --git a/packages/module/config.semantic.json b/packages/module/config.semantic.json new file mode 100644 index 0000000..169ab9e --- /dev/null +++ b/packages/module/config.semantic.json @@ -0,0 +1,19 @@ +{ + "source": ["tokens/default/*.json"], + "platforms": { + "json/default": { + "transformGroup": "patternfly/css", + "buildPath": "patternfly-docs/content/", + "prefix": "pf-t", + "files": [ + { + "destination": "semantic-tokens-default.json", + "format": "json/flat-categories", + "options": { + "outputReferences": false + } + } + ] + } + } +} diff --git a/packages/module/patternfly-docs/content/all-patternfly-tokens.md b/packages/module/patternfly-docs/content/all-patternfly-tokens.md index e89a466..b52f683 100644 --- a/packages/module/patternfly-docs/content/all-patternfly-tokens.md +++ b/packages/module/patternfly-docs/content/all-patternfly-tokens.md @@ -3,8 +3,12 @@ section: tokens id: All PatternFly tokens --- -import * as defaultTokens from './all-tokens-default.json'; -import * as darkTokens from './all-tokens-dark.json'; + +import * as defaultTokens from './semantic-tokens-default.json'; +import * as darkTokens from './semantic-tokens-dark.json'; import { TokensTable } from './tokensTable.js'; +import { TokensTableCategories } from './tokensTableCategories.js'; + + - + diff --git a/packages/module/patternfly-docs/content/all-tokens-dark.json b/packages/module/patternfly-docs/content/all-tokens-dark.json index 96535eb..d644e15 100644 --- a/packages/module/patternfly-docs/content/all-tokens-dark.json +++ b/packages/module/patternfly-docs/content/all-tokens-dark.json @@ -168,11 +168,13 @@ ] }, "pf-t--global--spacer--xs": { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "{global.spacer.100}" }, @@ -212,11 +214,13 @@ ] }, "pf-t--global--spacer--sm": { + "description": "Use for small spaces between elements.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for small spaces between elements.", "type": "number", "value": "{global.spacer.200}" }, @@ -256,11 +260,13 @@ ] }, "pf-t--global--spacer--md": { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "{global.spacer.300}" }, @@ -300,11 +306,13 @@ ] }, "pf-t--global--spacer--lg": { + "description": "Use for large spaces between elements.", "type": "number", "value": "24px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for large spaces between elements.", "type": "number", "value": "{global.spacer.400}" }, @@ -344,11 +352,13 @@ ] }, "pf-t--global--spacer--xl": { + "description": "Use for extra large spaces between elements.", "type": "number", "value": "32px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for extra large spaces between elements.", "type": "number", "value": "{global.spacer.500}" }, @@ -388,11 +398,13 @@ ] }, "pf-t--global--spacer--2xl": { + "description": "Use for double extra large spaces spacing between elements.", "type": "number", "value": "48px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for double extra large spaces spacing between elements.", "type": "number", "value": "{global.spacer.600}" }, @@ -432,11 +444,13 @@ ] }, "pf-t--global--spacer--3xl": { + "description": "Use for triple extra large spaces between elements.", "type": "number", "value": "64px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for triple extra large spaces between elements.", "type": "number", "value": "{global.spacer.700}" }, @@ -476,11 +490,13 @@ ] }, "pf-t--global--spacer--4xl": { + "description": "Use for quadruple extra large spaces between elements.", "type": "number", "value": "80px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for quadruple extra large spaces between elements.", "type": "number", "value": "{global.spacer.800}" }, @@ -520,11 +536,13 @@ ] }, "pf-t--global--spacer--control--vertical--default": { + "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", "type": "number", "value": "{global.spacer.sm}" }, @@ -545,11 +563,13 @@ ], "references": [ { + "description": "Use for small spaces between elements.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for small spaces between elements.", "type": "number", "value": "{global.spacer.200}" }, @@ -591,13 +611,15 @@ ] }, "pf-t--global--spacer--control--vertical--compact": { + "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "{global.spacer.100}" + "value": "{global.spacer.xs}" }, "name": "pf-t--global--spacer--control--vertical--compact", "attributes": { @@ -616,34 +638,61 @@ ], "references": [ { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "4px", - "filePath": "tokens/default/base.dimension.json", + "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for extra small spaces between elements.", "type": "number", - "value": 4 + "value": "{global.spacer.100}" }, - "name": "pf-t--global--spacer--100", + "name": "pf-t--global--spacer--xs", "attributes": { "category": "global", "type": "spacer", - "item": "100" + "item": "xs" }, "path": [ "global", "spacer", - "100" + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } ] } ] }, "pf-t--global--spacer--control--vertical--plain": { + "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", "type": "number", "value": "{global.spacer.sm}" }, @@ -664,11 +713,13 @@ ], "references": [ { + "description": "Use for small spaces between elements.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for small spaces between elements.", "type": "number", "value": "{global.spacer.200}" }, @@ -710,11 +761,13 @@ ] }, "pf-t--global--spacer--control--horizontal--default": { + "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", "type": "number", "value": "{global.spacer.md}" }, @@ -735,11 +788,13 @@ ], "references": [ { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "{global.spacer.300}" }, @@ -780,85 +835,116 @@ } ] }, - "pf-t--global--spacer--control--horizontal--compact": { + "pf-t--global--spacer--control--horizontal--plain": { + "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "{global.spacer.200}" + "value": "{global.spacer.sm}" }, - "name": "pf-t--global--spacer--control--horizontal--compact", + "name": "pf-t--global--spacer--control--horizontal--plain", "attributes": { "category": "global", "type": "spacer", "item": "control", "subitem": "horizontal", - "state": "compact" + "state": "plain" }, "path": [ "global", "spacer", "control", "horizontal", - "compact" + "plain" ], "references": [ { + "description": "Use for small spaces between elements.", "type": "number", "value": "8px", - "filePath": "tokens/default/base.dimension.json", + "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": 8 + "value": "{global.spacer.200}" }, - "name": "pf-t--global--spacer--200", + "name": "pf-t--global--spacer--sm", "attributes": { "category": "global", "type": "spacer", - "item": "200" + "item": "sm" }, "path": [ "global", "spacer", - "200" + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } ] } ] }, - "pf-t--global--spacer--control--horizontal--plain": { + "pf-t--global--spacer--control--horizontal--compact": { + "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", "value": "{global.spacer.sm}" }, - "name": "pf-t--global--spacer--control--horizontal--plain", + "name": "pf-t--global--spacer--control--horizontal--compact", "attributes": { "category": "global", "type": "spacer", "item": "control", "subitem": "horizontal", - "state": "plain" + "state": "compact" }, "path": [ "global", "spacer", "control", "horizontal", - "plain" + "compact" ], "references": [ { + "description": "Use for small spaces between elements.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for small spaces between elements.", "type": "number", "value": "{global.spacer.200}" }, @@ -899,12 +985,89 @@ } ] }, + "pf-t--global--spacer--control--horizontal--spacious": { + "description": "Use to set the horizontal padding in large/display controls.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding in large/display controls.", + "type": "number", + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--control--horizontal--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "spacious" + ], + "references": [ + { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + }, "pf-t--global--spacer--gap--text-to-element--default": { + "description": "Use to space an element, like an icon or badge, inline with text", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to space an element, like an icon or badge, inline with text", "type": "number", "value": "{global.spacer.sm}" }, @@ -925,11 +1088,13 @@ ], "references": [ { + "description": "Use for small spaces between elements.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for small spaces between elements.", "type": "number", "value": "{global.spacer.200}" }, @@ -971,11 +1136,13 @@ ] }, "pf-t--global--spacer--gap--control-to-control--default": { + "description": "Use to set the space between controls, like in input groups or filter groups", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the space between controls, like in input groups or filter groups", "type": "number", "value": "{global.spacer.xs}" }, @@ -996,11 +1163,13 @@ ], "references": [ { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "{global.spacer.100}" }, @@ -1042,11 +1211,13 @@ ] }, "pf-t--global--spacer--gap--group--vertical": { + "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", "type": "number", "value": "{global.spacer.sm}" }, @@ -1067,11 +1238,13 @@ ], "references": [ { + "description": "Use for small spaces between elements.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for small spaces between elements.", "type": "number", "value": "{global.spacer.200}" }, @@ -1113,11 +1286,13 @@ ] }, "pf-t--global--spacer--gap--group--horizontal": { + "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", "type": "number", "value": "{global.spacer.md}" }, @@ -1138,11 +1313,13 @@ ], "references": [ { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "{global.spacer.300}" }, @@ -1184,11 +1361,13 @@ ] }, "pf-t--global--spacer--gap--group-to-group--horizontal": { + "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", "type": "number", "value": "48px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", "type": "number", "value": "{global.spacer.2xl}" }, @@ -1209,11 +1388,13 @@ ], "references": [ { + "description": "Use for double extra large spaces spacing between elements.", "type": "number", "value": "48px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for double extra large spaces spacing between elements.", "type": "number", "value": "{global.spacer.600}" }, @@ -1255,11 +1436,13 @@ ] }, "pf-t--global--spacer--gap--group-to-group--vertical": { + "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", "type": "number", "value": "24px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", "type": "number", "value": "{global.spacer.lg}" }, @@ -1280,11 +1463,13 @@ ], "references": [ { + "description": "Use for large spaces between elements.", "type": "number", "value": "24px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for large spaces between elements.", "type": "number", "value": "{global.spacer.400}" }, @@ -1326,11 +1511,13 @@ ] }, "pf-t--global--spacer--gap--action-to-action--default": { + "description": "Use to set the space between actions, like in an action list group.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the space between actions, like in an action list group.", "type": "number", "value": "{global.spacer.md}" }, @@ -1351,11 +1538,13 @@ ], "references": [ { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "{global.spacer.300}" }, @@ -1397,11 +1586,13 @@ ] }, "pf-t--global--spacer--gap--action-to-action--plain": { + "description": "Use to set the space between plain actions, like in an action list group.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the space between plain actions, like in an action list group.", "type": "number", "value": "{global.spacer.xs}" }, @@ -1422,11 +1613,13 @@ ], "references": [ { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "{global.spacer.100}" }, @@ -1467,154 +1660,14 @@ } ] }, - "pf-t--global--spacer--action--vertical--default": { - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--action--vertical--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "vertical", - "state": "default" - }, - "path": [ - "global", - "spacer", - "action", - "vertical", - "default" - ], - "references": [ - { - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--action--vertical--plain": { - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--action--vertical--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "vertical", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "action", - "vertical", - "plain" - ], - "references": [ - { - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, "pf-t--global--spacer--action--horizontal--default": { + "description": "Use to set the horizontal padding inside a default action, like buttons.", "type": "number", "value": "24px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the horizontal padding inside a default action, like buttons.", "type": "number", "value": "{global.spacer.lg}" }, @@ -1635,11 +1688,13 @@ ], "references": [ { + "description": "Use for large spaces between elements.", "type": "number", "value": "24px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for large spaces between elements.", "type": "number", "value": "{global.spacer.400}" }, @@ -1681,13 +1736,29 @@ ] }, "pf-t--global--spacer--action--horizontal--plain": { + "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", "type": "number", "value": "8px", + "compact": { + "description": "Use to set the horizontal padding inside a compact, plain action/button.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false + }, "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", "type": "number", - "value": "{global.spacer.sm}" + "value": "{global.spacer.sm}", + "compact": { + "description": "Use to set the horizontal padding inside a compact, plain action/button.", + "type": "number", + "value": "{global.spacer.xs}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false + } }, "name": "pf-t--global--spacer--action--horizontal--plain", "attributes": { @@ -1706,11 +1777,13 @@ ], "references": [ { + "description": "Use for small spaces between elements.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for small spaces between elements.", "type": "number", "value": "{global.spacer.200}" }, @@ -1751,98 +1824,302 @@ } ] }, - "pf-t--global--spacer--button--horizontal--compact": { + "pf-t--global--spacer--action--horizontal--compact": { + "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", "type": "number", - "value": "{global.spacer.300}" + "value": "{global.spacer.md}" }, - "name": "pf-t--global--spacer--button--horizontal--compact", + "name": "pf-t--global--spacer--action--horizontal--compact", "attributes": { "category": "global", "type": "spacer", - "item": "button", + "item": "action", "subitem": "horizontal", "state": "compact" }, "path": [ "global", "spacer", - "button", + "action", "horizontal", "compact" ], "references": [ { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "16px", - "filePath": "tokens/default/base.dimension.json", + "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": 16 + "value": "{global.spacer.300}" }, - "name": "pf-t--global--spacer--300", + "name": "pf-t--global--spacer--md", "attributes": { "category": "global", "type": "spacer", - "item": "300" + "item": "md" }, "path": [ "global", "spacer", - "300" + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--horizontal--spacious": { + "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", + "type": "number", + "value": "32px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", + "type": "number", + "value": "{global.spacer.xl}" + }, + "name": "pf-t--global--spacer--action--horizontal--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "spacious" + ], + "references": [ + { + "description": "Use for extra large spaces between elements.", + "type": "number", + "value": "32px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra large spaces between elements.", + "type": "number", + "value": "{global.spacer.500}" + }, + "name": "pf-t--global--spacer--xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xl" + }, + "path": [ + "global", + "spacer", + "xl" + ], + "references": [ + { + "type": "number", + "value": "32px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + } ] } ] }, - "pf-t--global--spacer--button--vertical--compact": { + "pf-t--global--spacer--action--vertical--compact": { + "description": "Use to set the vertical padding inside a compact action, like compact buttons.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to set the vertical padding inside a compact action, like compact buttons.", "type": "number", - "value": "{global.spacer.100}" + "value": "{global.spacer.xs}" }, - "name": "pf-t--global--spacer--button--vertical--compact", + "name": "pf-t--global--spacer--action--vertical--compact", "attributes": { "category": "global", "type": "spacer", - "item": "button", + "item": "action", "subitem": "vertical", "state": "compact" }, "path": [ "global", "spacer", - "button", + "action", "vertical", "compact" ], "references": [ { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "4px", - "filePath": "tokens/default/base.dimension.json", + "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for extra small spaces between elements.", "type": "number", - "value": 4 + "value": "{global.spacer.100}" }, - "name": "pf-t--global--spacer--100", + "name": "pf-t--global--spacer--xs", "attributes": { "category": "global", "type": "spacer", - "item": "100" + "item": "xs" }, "path": [ "global", "spacer", - "100" + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--vertical--spacious": { + "description": "Use to set the vertical padding inside a large/display action, like CTAs.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the vertical padding inside a large/display action, like CTAs.", + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--action--vertical--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "vertical", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "action", + "vertical", + "spacious" + ], + "references": [ + { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } ] } ] @@ -1986,11 +2263,13 @@ ] }, "pf-t--global--icon--size--sm": { + "description": "Use for small icons.", "type": "number", "value": "12px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for small icons.", "type": "number", "value": "{global.icon.size.100}" }, @@ -2034,11 +2313,13 @@ ] }, "pf-t--global--icon--size--md": { + "description": "Use for medium icons.", "type": "number", "value": "14px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for medium icons.", "type": "number", "value": "{global.icon.size.200}" }, @@ -2082,11 +2363,13 @@ ] }, "pf-t--global--icon--size--lg": { + "description": "Use for large icons.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for large icons.", "type": "number", "value": "{global.icon.size.250}" }, @@ -2130,11 +2413,13 @@ ] }, "pf-t--global--icon--size--xl": { + "description": "Use for extra large icons.", "type": "number", "value": "22px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for extra large icons.", "type": "number", "value": "{global.icon.size.300}" }, @@ -2178,11 +2463,13 @@ ] }, "pf-t--global--icon--size--2xl": { + "description": "Use for double extra large icons.", "type": "number", "value": "56px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for double extra large icons.", "type": "number", "value": "{global.icon.size.400}" }, @@ -2226,11 +2513,13 @@ ] }, "pf-t--global--icon--size--3xl": { + "description": "Use for triple extra large icons.", "type": "number", "value": "96px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for triple extra large icons.", "type": "number", "value": "{global.icon.size.500}" }, @@ -2273,101 +2562,107 @@ } ] }, - "pf-t--global--icon--size--font--body--sm": { + "pf-t--global--icon--size--font--heading--h1": { + "description": "Use for icons that are placed inline with first level headings", "type": "number", - "value": "12px", + "value": "22px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for icons that are placed inline with first level headings", "type": "number", - "value": "{global.font.size.body.sm}" + "value": "{global.font.size.heading.h1}" }, - "name": "pf-t--global--icon--size--font--body--sm", + "name": "pf-t--global--icon--size--font--heading--h1", "attributes": { "category": "global", "type": "icon", "item": "size", "subitem": "font", - "state": "body" + "state": "heading" }, "path": [ "global", "icon", "size", "font", - "body", - "sm" + "heading", + "h1" ], "references": [ { + "description": "Use as the font size for first level headings.", "type": "number", - "value": "12px", + "value": "22px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for first level headings.", "type": "number", - "value": "{global.font.size.xs}" + "value": "{global.font.size.2xl}" }, - "name": "pf-t--global--font--size--body--sm", + "name": "pf-t--global--font--size--heading--h1", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "body", - "state": "sm" + "subitem": "heading", + "state": "h1" }, "path": [ "global", "font", "size", - "body", - "sm" + "heading", + "h1" ], "references": [ { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "12px", + "value": "22px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.100}" + "value": "{global.font.size.600}" }, - "name": "pf-t--global--font--size--xs", + "name": "pf-t--global--font--size--2xl", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "xs" + "subitem": "2xl" }, "path": [ "global", "font", "size", - "xs" + "2xl" ], "references": [ { "type": "number", - "value": "12px", + "value": "22px", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { "type": "number", - "value": 12 + "value": 22 }, - "name": "pf-t--global--font--size--100", + "name": "pf-t--global--font--size--600", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "100" + "subitem": "600" }, "path": [ "global", "font", "size", - "100" + "600" ] } ] @@ -2376,101 +2671,107 @@ } ] }, - "pf-t--global--icon--size--font--body--default": { + "pf-t--global--icon--size--font--heading--h2": { + "description": "Use for icons that are placed inline with second level headings", "type": "number", - "value": "14px", + "value": "20px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for icons that are placed inline with second level headings", "type": "number", - "value": "{global.font.size.body.default}" + "value": "{global.font.size.heading.h2}" }, - "name": "pf-t--global--icon--size--font--body--default", + "name": "pf-t--global--icon--size--font--heading--h2", "attributes": { "category": "global", "type": "icon", "item": "size", "subitem": "font", - "state": "body" + "state": "heading" }, "path": [ "global", "icon", "size", "font", - "body", - "default" + "heading", + "h2" ], "references": [ { + "description": "Use as the font size for second level headings.", "type": "number", - "value": "14px", + "value": "20px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for second level headings.", "type": "number", - "value": "{global.font.size.sm}" + "value": "{global.font.size.xl}" }, - "name": "pf-t--global--font--size--body--default", + "name": "pf-t--global--font--size--heading--h2", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "body", - "state": "default" + "subitem": "heading", + "state": "h2" }, "path": [ "global", "font", "size", - "body", - "default" + "heading", + "h2" ], "references": [ { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "20px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.200}" + "value": "{global.font.size.500}" }, - "name": "pf-t--global--font--size--sm", + "name": "pf-t--global--font--size--xl", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "sm" + "subitem": "xl" }, "path": [ "global", "font", "size", - "sm" + "xl" ], "references": [ { "type": "number", - "value": "14px", + "value": "20px", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { "type": "number", - "value": 14 + "value": 20 }, - "name": "pf-t--global--font--size--200", + "name": "pf-t--global--font--size--500", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "200" + "subitem": "500" }, "path": [ "global", "font", "size", - "200" + "500" ] } ] @@ -2479,63 +2780,178 @@ } ] }, - "pf-t--global--icon--size--font--body--lg": { + "pf-t--global--icon--size--font--heading--h3": { + "description": "Use for icons that are placed inline with third level headings", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with third level headings", + "type": "number", + "value": "{global.font.size.heading.h3}" + }, + "name": "pf-t--global--icon--size--font--heading--h3", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h3" + ], + "references": [ + { + "description": "Use as the font size for third level headings.", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for third level headings.", + "type": "number", + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--font--size--heading--h3", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h3" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h3" + ], + "references": [ + { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h4": { + "description": "Use for icons that are placed inline with fourth level headings", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for icons that are placed inline with fourth level headings", "type": "number", - "value": "{global.font.size.body.lg}" + "value": "{global.font.size.heading.h4}" }, - "name": "pf-t--global--icon--size--font--body--lg", + "name": "pf-t--global--icon--size--font--heading--h4", "attributes": { "category": "global", "type": "icon", "item": "size", "subitem": "font", - "state": "body" + "state": "heading" }, "path": [ "global", "icon", "size", "font", - "body", - "lg" + "heading", + "h4" ], "references": [ { + "description": "Use as the font size for fourth-level headings.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for fourth-level headings.", "type": "number", "value": "{global.font.size.md}" }, - "name": "pf-t--global--font--size--body--lg", + "name": "pf-t--global--font--size--heading--h4", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "body", - "state": "lg" + "subitem": "heading", + "state": "h4" }, "path": [ "global", "font", "size", - "body", - "lg" + "heading", + "h4" ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.300}" }, @@ -2582,119 +2998,18 @@ } ] }, - "pf-t--global--icon--size--font--heading--h1": { - "type": "number", - "value": "22px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.size.heading.h1}" - }, - "name": "pf-t--global--icon--size--font--heading--h1", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h1" - ], - "references": [ - { - "type": "number", - "value": "22px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.size.2xl}" - }, - "name": "pf-t--global--font--size--heading--h1", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h1" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h1" - ], - "references": [ - { - "type": "number", - "value": "22px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "22px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--heading--h2": { + "pf-t--global--icon--size--font--heading--h5": { + "description": "Use for icons that are placed inline with fifth level headings", "type": "number", - "value": "20px", + "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for icons that are placed inline with fifth level headings", "type": "number", - "value": "{global.font.size.heading.h2}" + "value": "{global.font.size.heading.h5}" }, - "name": "pf-t--global--icon--size--font--heading--h2", + "name": "pf-t--global--icon--size--font--heading--h5", "attributes": { "category": "global", "type": "icon", @@ -2708,78 +3023,82 @@ "size", "font", "heading", - "h2" + "h5" ], "references": [ { + "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "20px", + "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "{global.font.size.xl}" + "value": "{global.font.size.md}" }, - "name": "pf-t--global--font--size--heading--h2", + "name": "pf-t--global--font--size--heading--h5", "attributes": { "category": "global", "type": "font", "item": "size", "subitem": "heading", - "state": "h2" + "state": "h5" }, "path": [ "global", "font", "size", "heading", - "h2" + "h5" ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.500}" + "value": "{global.font.size.300}" }, - "name": "pf-t--global--font--size--xl", + "name": "pf-t--global--font--size--md", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "xl" + "subitem": "md" }, "path": [ "global", "font", "size", - "xl" + "md" ], "references": [ { "type": "number", - "value": "20px", + "value": "16px", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { "type": "number", - "value": 20 + "value": 16 }, - "name": "pf-t--global--font--size--500", + "name": "pf-t--global--font--size--300", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "500" + "subitem": "300" }, "path": [ "global", "font", "size", - "500" + "300" ] } ] @@ -2788,16 +3107,18 @@ } ] }, - "pf-t--global--icon--size--font--heading--h3": { + "pf-t--global--icon--size--font--heading--h6": { + "description": "Use for icons that are placed inline with sixth level headings", "type": "number", - "value": "18px", + "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for icons that are placed inline with sixth level headings", "type": "number", - "value": "{global.font.size.heading.h3}" + "value": "{global.font.size.heading.h6}" }, - "name": "pf-t--global--icon--size--font--heading--h3", + "name": "pf-t--global--icon--size--font--heading--h6", "attributes": { "category": "global", "type": "icon", @@ -2811,78 +3132,82 @@ "size", "font", "heading", - "h3" + "h6" ], "references": [ { + "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "18px", + "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "{global.font.size.lg}" + "value": "{global.font.size.md}" }, - "name": "pf-t--global--font--size--heading--h3", + "name": "pf-t--global--font--size--heading--h6", "attributes": { "category": "global", "type": "font", "item": "size", "subitem": "heading", - "state": "h3" + "state": "h6" }, "path": [ "global", "font", "size", "heading", - "h3" + "h6" ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.400}" + "value": "{global.font.size.300}" }, - "name": "pf-t--global--font--size--lg", + "name": "pf-t--global--font--size--md", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "lg" + "subitem": "md" }, "path": [ "global", "font", "size", - "lg" + "md" ], "references": [ { "type": "number", - "value": "18px", + "value": "16px", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { "type": "number", - "value": 18 + "value": 16 }, - "name": "pf-t--global--font--size--400", + "name": "pf-t--global--font--size--300", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "400" + "subitem": "300" }, "path": [ "global", "font", "size", - "400" + "300" ] } ] @@ -2891,101 +3216,105 @@ } ] }, - "pf-t--global--icon--size--font--heading--h4": { + "pf-t--global--icon--size--font--body--sm": { + "description": "Use for icons that are placed inline with small body text", "type": "number", - "value": "16px", + "value": "12px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for icons that are placed inline with small body text", "type": "number", - "value": "{global.font.size.heading.h4}" + "value": "{global.font.size.body.sm}" }, - "name": "pf-t--global--icon--size--font--heading--h4", + "name": "pf-t--global--icon--size--font--body--sm", "attributes": { "category": "global", "type": "icon", "item": "size", "subitem": "font", - "state": "heading" + "state": "body" }, "path": [ "global", "icon", "size", "font", - "heading", - "h4" + "body", + "sm" ], "references": [ { + "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "16px", + "value": "12px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "{global.font.size.md}" + "value": "{global.font.size.xs}" }, - "name": "pf-t--global--font--size--heading--h4", + "name": "pf-t--global--font--size--body--sm", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "heading", - "state": "h4" + "subitem": "body", + "state": "sm" }, "path": [ "global", "font", "size", - "heading", - "h4" + "body", + "sm" ], "references": [ { "type": "number", - "value": "16px", + "value": "12px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { "type": "number", - "value": "{global.font.size.300}" + "value": "{global.font.size.100}" }, - "name": "pf-t--global--font--size--md", + "name": "pf-t--global--font--size--xs", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "md" + "subitem": "xs" }, "path": [ "global", "font", "size", - "md" + "xs" ], "references": [ { "type": "number", - "value": "16px", + "value": "12px", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { "type": "number", - "value": 16 + "value": 12 }, - "name": "pf-t--global--font--size--300", + "name": "pf-t--global--font--size--100", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "300" + "subitem": "100" }, "path": [ "global", "font", "size", - "300" + "100" ] } ] @@ -2994,101 +3323,107 @@ } ] }, - "pf-t--global--icon--size--font--heading--h5": { + "pf-t--global--icon--size--font--body--default": { + "description": "Use for icons that are placed inline with default body text", "type": "number", - "value": "16px", + "value": "14px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for icons that are placed inline with default body text", "type": "number", - "value": "{global.font.size.heading.h5}" + "value": "{global.font.size.body.default}" }, - "name": "pf-t--global--icon--size--font--heading--h5", + "name": "pf-t--global--icon--size--font--body--default", "attributes": { "category": "global", "type": "icon", "item": "size", "subitem": "font", - "state": "heading" + "state": "body" }, "path": [ "global", "icon", "size", "font", - "heading", - "h5" + "body", + "default" ], "references": [ { + "description": "Use as the default font size in body sections.", "type": "number", - "value": "16px", + "value": "14px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the default font size in body sections.", "type": "number", - "value": "{global.font.size.md}" + "value": "{global.font.size.sm}" }, - "name": "pf-t--global--font--size--heading--h5", + "name": "pf-t--global--font--size--body--default", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "heading", - "state": "h5" + "subitem": "body", + "state": "default" }, "path": [ "global", "font", "size", - "heading", - "h5" + "body", + "default" ], "references": [ { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "14px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" + "value": "{global.font.size.200}" }, - "name": "pf-t--global--font--size--md", + "name": "pf-t--global--font--size--sm", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "md" + "subitem": "sm" }, "path": [ "global", "font", "size", - "md" + "sm" ], "references": [ { "type": "number", - "value": "16px", + "value": "14px", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { "type": "number", - "value": 16 + "value": 14 }, - "name": "pf-t--global--font--size--300", + "name": "pf-t--global--font--size--200", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "300" + "subitem": "200" }, "path": [ "global", "font", "size", - "300" + "200" ] } ] @@ -3097,63 +3432,69 @@ } ] }, - "pf-t--global--icon--size--font--heading--h6": { + "pf-t--global--icon--size--font--body--lg": { + "description": "Use for icons that are placed inline with large body text", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for icons that are placed inline with large body text", "type": "number", - "value": "{global.font.size.heading.h6}" + "value": "{global.font.size.body.lg}" }, - "name": "pf-t--global--icon--size--font--heading--h6", + "name": "pf-t--global--icon--size--font--body--lg", "attributes": { "category": "global", "type": "icon", "item": "size", "subitem": "font", - "state": "heading" + "state": "body" }, "path": [ "global", "icon", "size", "font", - "heading", - "h6" + "body", + "lg" ], "references": [ { + "description": "Use for a larger font size in body sections.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for a larger font size in body sections.", "type": "number", "value": "{global.font.size.md}" }, - "name": "pf-t--global--font--size--heading--h6", + "name": "pf-t--global--font--size--body--lg", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "heading", - "state": "h6" + "subitem": "body", + "state": "lg" }, "path": [ "global", "font", "size", - "heading", - "h6" + "body", + "lg" ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.300}" }, @@ -3201,11 +3542,13 @@ ] }, "pf-t--global--icon--size--font--xs": { + "description": "Use for icons that are placed inline with font–size–xs text", "type": "number", "value": "12px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for icons that are placed inline with font–size–xs text", "type": "number", "value": "{global.font.size.xs}" }, @@ -3276,11 +3619,13 @@ ] }, "pf-t--global--icon--size--font--sm": { + "description": "Use for icons that are placed inline with font–size–sm text", "type": "number", "value": "14px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for icons that are placed inline with font–size–sm text", "type": "number", "value": "{global.font.size.sm}" }, @@ -3301,11 +3646,13 @@ ], "references": [ { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", "value": "14px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.200}" }, @@ -3351,11 +3698,13 @@ ] }, "pf-t--global--icon--size--font--md": { + "description": "Use for icons that are placed inline with font–size–md text", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for icons that are placed inline with font–size–md text", "type": "number", "value": "{global.font.size.md}" }, @@ -3376,11 +3725,13 @@ ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.300}" }, @@ -3426,11 +3777,13 @@ ] }, "pf-t--global--icon--size--font--lg": { + "description": "Use for icons that are placed inline with font–size–lg text", "type": "number", "value": "18px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for icons that are placed inline with font–size–lg text", "type": "number", "value": "{global.font.size.lg}" }, @@ -3451,11 +3804,13 @@ ], "references": [ { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", "value": "18px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.400}" }, @@ -3501,11 +3856,13 @@ ] }, "pf-t--global--icon--size--font--xl": { + "description": "Use for icons that are placed inline with font–size–xl text", "type": "number", "value": "20px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for icons that are placed inline with font–size–xl text", "type": "number", "value": "{global.font.size.xl}" }, @@ -3526,11 +3883,13 @@ ], "references": [ { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", "value": "20px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.500}" }, @@ -3576,11 +3935,13 @@ ] }, "pf-t--global--icon--size--font--2xl": { + "description": "Use for icons that are placed inline with font–size–2xl text", "type": "number", "value": "22px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for icons that are placed inline with font–size–2xl text", "type": "number", "value": "{global.font.size.2xl}" }, @@ -3601,11 +3962,13 @@ ], "references": [ { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", "value": "22px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.600}" }, @@ -3651,11 +4014,13 @@ ] }, "pf-t--global--icon--size--font--3xl": { + "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", "value": "28px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", "value": "{global.font.size.3xl}" }, @@ -3676,11 +4041,13 @@ ], "references": [ { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "28px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.700}" }, @@ -3726,11 +4093,13 @@ ] }, "pf-t--global--icon--size--font--4xl": { + "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", "value": "36px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", "value": "{global.font.size.4xl}" }, @@ -3751,11 +4120,13 @@ ], "references": [ { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "36px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.800}" }, @@ -3937,11 +4308,13 @@ ] }, "pf-t--global--icon--color--brand--default": { + "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "{global.dark.color.brand.200}" }, @@ -4012,11 +4385,13 @@ ] }, "pf-t--global--icon--color--brand--hover": { + "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "#e0f0ff", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "{global.dark.color.brand.300}" }, @@ -4087,11 +4462,13 @@ ] }, "pf-t--global--icon--color--brand--clicked": { + "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "#e0f0ff", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "{global.dark.color.brand.300}" }, @@ -4162,11 +4539,13 @@ ] }, "pf-t--global--icon--color--on-brand--default": { + "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -4187,11 +4566,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -4262,11 +4643,13 @@ ] }, "pf-t--global--icon--color--on-brand--hover": { + "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -4287,11 +4670,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -4362,11 +4747,13 @@ ] }, "pf-t--global--icon--color--on-brand--clicked": { + "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -4387,11 +4774,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -4462,11 +4851,13 @@ ] }, "pf-t--global--icon--color--favorite--default": { + "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "#ffcc17", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "{global.color.favorite.default}" }, @@ -4487,11 +4878,13 @@ ], "references": [ { + "description": "Use as the default color for elements that have been favorited", "type": "color", "value": "#ffcc17", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for elements that have been favorited", "type": "color", "value": "{global.dark.color.favorite.100}" }, @@ -4562,11 +4955,13 @@ ] }, "pf-t--global--icon--color--favorite--hover": { + "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "{global.color.favorite.hover}" }, @@ -4587,11 +4982,13 @@ ], "references": [ { + "description": "Use as the hover state for elements that have been favorited", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for elements that have been favorited", "type": "color", "value": "{global.dark.color.favorite.200}" }, @@ -4662,11 +5059,13 @@ ] }, "pf-t--global--icon--color--favorite--clicked": { + "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "{global.color.favorite.clicked}" }, @@ -4687,11 +5086,13 @@ ], "references": [ { + "description": "Use as the clicked state for elements that have been favorited", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for elements that have been favorited", "type": "color", "value": "{global.dark.color.favorite.200}" }, @@ -4762,11 +5163,13 @@ ] }, "pf-t--global--icon--color--status--success--default": { + "description": "Use as the default color for text that communicates a success status.", "type": "color", "value": "#87bb62", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that communicates a success status.", "type": "color", "value": "{global.color.status.success.default}" }, @@ -4788,11 +5191,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "#87bb62", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.success.100}" }, @@ -4866,11 +5271,13 @@ ] }, "pf-t--global--icon--color--status--success--hover": { + "description": "Use as the hover state color for text that communicates a success status.", "type": "color", "value": "#afdc8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that communicates a success status.", "type": "color", "value": "{global.color.status.success.hover}" }, @@ -4892,11 +5299,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "#afdc8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "{global.dark.color.status.success.200}" }, @@ -4970,11 +5379,13 @@ ] }, "pf-t--global--icon--color--status--success--clicked": { + "description": "Use as the clicked state color for text that communicates a success status.", "type": "color", "value": "#afdc8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that communicates a success status.", "type": "color", "value": "{global.color.status.success.clicked}" }, @@ -4996,11 +5407,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "#afdc8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "{global.dark.color.status.success.200}" }, @@ -5074,11 +5487,13 @@ ] }, "pf-t--global--icon--color--status--on-success--default": { + "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -5100,11 +5515,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -5175,11 +5592,13 @@ ] }, "pf-t--global--icon--color--status--on-success--hover": { + "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -5201,11 +5620,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -5276,11 +5697,13 @@ ] }, "pf-t--global--icon--color--status--on-success--clicked": { + "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -5302,11 +5725,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -5377,11 +5802,13 @@ ] }, "pf-t--global--icon--color--status--warning--default": { + "description": "Use as the default color for text that communicates a warning status.", "type": "color", "value": "#ffcc17", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that communicates a warning status.", "type": "color", "value": "{global.color.status.warning.default}" }, @@ -5403,11 +5830,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", "value": "#ffcc17", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.warning.100}" }, @@ -5481,11 +5910,13 @@ ] }, "pf-t--global--icon--color--status--warning--hover": { + "description": "Use as the hover state color for text that communicates a warning status.", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that communicates a warning status.", "type": "color", "value": "{global.color.status.warning.hover}" }, @@ -5507,11 +5938,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", "value": "{global.dark.color.status.warning.200}" }, @@ -5585,11 +6018,13 @@ ] }, "pf-t--global--icon--color--status--warning--clicked": { + "description": "Use as the clicked state color for text that communicates a warning status.", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that communicates a warning status.", "type": "color", "value": "{global.color.status.warning.clicked}" }, @@ -5611,11 +6046,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", "value": "{global.dark.color.status.warning.200}" }, @@ -5689,11 +6126,13 @@ ] }, "pf-t--global--icon--color--status--on-warning--default": { + "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -5715,11 +6154,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -5790,11 +6231,13 @@ ] }, "pf-t--global--icon--color--status--on-warning--hover": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -5816,11 +6259,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -5891,11 +6336,13 @@ ] }, "pf-t--global--icon--color--status--on-warning--clicked": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -5917,11 +6364,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -5992,11 +6441,13 @@ ] }, "pf-t--global--icon--color--status--danger--default": { + "description": "Use as the default color for icons that convey danger, like in alerts or banners.", "type": "color", "value": "#f0561d", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that convey danger, like in alerts or banners.", "type": "color", "value": "{global.color.status.danger.default}" }, @@ -6018,11 +6469,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "#f0561d", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.danger.100}" }, @@ -6096,11 +6549,13 @@ ] }, "pf-t--global--icon--color--status--danger--hover": { + "description": "Use as the hover state for icons that indicate danger.", "type": "color", "value": "#f4784a", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for icons that indicate danger.", "type": "color", "value": "{global.color.status.danger.hover}" }, @@ -6122,11 +6577,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "#f4784a", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "{global.dark.color.status.danger.200}" }, @@ -6200,11 +6657,13 @@ ] }, "pf-t--global--icon--color--status--danger--clicked": { + "description": "Use as the clicked state for icons that indicate danger.", "type": "color", "value": "#f4784a", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for icons that indicate danger.", "type": "color", "value": "{global.color.status.danger.clicked}" }, @@ -6226,11 +6685,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "#f4784a", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "{global.dark.color.status.danger.200}" }, @@ -6304,11 +6765,13 @@ ] }, "pf-t--global--icon--color--status--on-danger--default": { + "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -6330,11 +6793,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -6405,11 +6870,13 @@ ] }, "pf-t--global--icon--color--status--on-danger--hover": { + "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -6431,11 +6898,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -6506,11 +6975,13 @@ ] }, "pf-t--global--icon--color--status--on-danger--clicked": { + "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -6532,11 +7003,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -6607,11 +7080,13 @@ ] }, "pf-t--global--icon--color--status--info--default": { + "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", "type": "color", "value": "#b6a6e9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", "type": "color", "value": "{global.color.status.info.default}" }, @@ -6633,11 +7108,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "#b6a6e9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.info.100}" }, @@ -6711,11 +7188,13 @@ ] }, "pf-t--global--icon--color--status--info--hover": { + "description": "Use as the hover state for icons that identify informational messages.", "type": "color", "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for icons that identify informational messages.", "type": "color", "value": "{global.color.status.info.hover}" }, @@ -6737,11 +7216,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "{global.dark.color.status.info.200}" }, @@ -6815,11 +7296,13 @@ ] }, "pf-t--global--icon--color--status--info--clicked": { + "description": "Use as the clicked state for icons that identify informational messages.", "type": "color", "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for icons that identify informational messages.", "type": "color", "value": "{global.color.status.info.clicked}" }, @@ -6841,11 +7324,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "{global.dark.color.status.info.200}" }, @@ -6919,11 +7404,13 @@ ] }, "pf-t--global--icon--color--status--on-info--default": { + "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -6945,11 +7432,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -7020,11 +7509,13 @@ ] }, "pf-t--global--icon--color--status--on-info--hover": { + "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -7046,11 +7537,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -7121,11 +7614,13 @@ ] }, "pf-t--global--icon--color--status--on-info--clicked": { + "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -7147,11 +7642,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -7222,11 +7719,13 @@ ] }, "pf-t--global--icon--color--status--custom--default": { + "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", "type": "color", "value": "#63bdbd", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.default}" }, @@ -7248,11 +7747,13 @@ ], "references": [ { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#63bdbd", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.dark.color.status.custom.100}" }, @@ -7326,11 +7827,13 @@ ] }, "pf-t--global--icon--color--status--custom--hover": { + "description": "Use as the hover state for icons that convey generic status with no associated severity.", "type": "color", "value": "#9ad8d8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for icons that convey generic status with no associated severity.", "type": "color", "value": "{global.color.status.custom.hover}" }, @@ -7352,11 +7855,13 @@ ], "references": [ { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#9ad8d8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.dark.color.status.custom.200}" }, @@ -7430,11 +7935,13 @@ ] }, "pf-t--global--icon--color--status--custom--clicked": { + "description": "Use as the clicked state for icons that convey generic status with no associated severity.", "type": "color", "value": "#9ad8d8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for icons that convey generic status with no associated severity.", "type": "color", "value": "{global.color.status.custom.clicked}" }, @@ -7456,11 +7963,13 @@ ], "references": [ { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#9ad8d8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.dark.color.status.custom.200}" }, @@ -7534,11 +8043,13 @@ ] }, "pf-t--global--icon--color--status--on-custom--default": { + "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -7560,11 +8071,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -7635,11 +8148,13 @@ ] }, "pf-t--global--icon--color--status--on-custom--hover": { + "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -7661,11 +8176,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -7736,11 +8253,13 @@ ] }, "pf-t--global--icon--color--status--on-custom--clicked": { + "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -7762,11 +8281,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -7837,11 +8358,13 @@ ] }, "pf-t--global--icon--color--status--unread--on-default--default": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -7864,11 +8387,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -7939,11 +8464,13 @@ ] }, "pf-t--global--icon--color--status--unread--on-default--hover": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -7966,11 +8493,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -8041,11 +8570,13 @@ ] }, "pf-t--global--icon--color--status--unread--on-default--clicked": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -8068,11 +8599,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -8143,11 +8676,13 @@ ] }, "pf-t--global--icon--color--status--unread--on-attention--default": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -8170,11 +8705,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -8245,11 +8782,13 @@ ] }, "pf-t--global--icon--color--status--unread--on-attention--hover": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -8272,11 +8811,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -8347,11 +8888,13 @@ ] }, "pf-t--global--icon--color--status--unread--on-attention--clicked": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -8374,11 +8917,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -8449,11 +8994,13 @@ ] }, "pf-t--global--icon--color--regular": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#f2f2f2", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.dark.icon.color.100}" }, @@ -8522,11 +9069,13 @@ ] }, "pf-t--global--icon--color--subtle": { + "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", "type": "color", "value": "#a3a3a3", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", "type": "color", "value": "{global.dark.icon.color.200}" }, @@ -8595,11 +9144,13 @@ ] }, "pf-t--global--icon--color--inverse": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -8668,13 +9219,13 @@ ] }, "pf-t--global--icon--color--disabled": { - "description": "for use without disabled background color", + "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", "type": "color", "value": "#707070", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { - "description": "for use without disabled background color", + "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", "type": "color", "value": "{global.dark.color.disabled.200}" }, @@ -8743,13 +9294,13 @@ ] }, "pf-t--global--icon--color--on-disabled": { - "description": "pair with disabled background color", + "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", "type": "color", "value": "#383838", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { - "description": "pair with disabled background color", + "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", "type": "color", "value": "{global.dark.color.disabled.300}" }, @@ -8818,11 +9369,13 @@ ] }, "pf-t--global--icon--color--severity--undefined--default": { + "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", "type": "color", "value": "#a3a3a3", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", "type": "color", "value": "{global.dark.color.severity.undefined.100}" }, @@ -8895,11 +9448,13 @@ ] }, "pf-t--global--icon--color--severity--none--default": { + "description": "Use as the default color for severity icons that identify no issues.", "type": "color", "value": "#92c5f9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for severity icons that identify no issues.", "type": "color", "value": "{global.dark.color.severity.none.100}" }, @@ -8972,11 +9527,13 @@ ] }, "pf-t--global--icon--color--severity--minor--default": { + "description": "Use as the default color for severity icons that identify issues of minor severity.", "type": "color", "value": "#c7c7c7", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for severity icons that identify issues of minor severity.", "type": "color", "value": "{global.dark.color.severity.minor.100}" }, @@ -9049,11 +9606,13 @@ ] }, "pf-t--global--icon--color--severity--moderate--default": { + "description": "Use as the default color for severity icons that identify issues of moderate severity.", "type": "color", "value": "#ffcc17", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for severity icons that identify issues of moderate severity.", "type": "color", "value": "{global.dark.color.severity.moderate.100}" }, @@ -9126,11 +9685,13 @@ ] }, "pf-t--global--icon--color--severity--important--default": { + "description": "Use as the default color for severity icons that identify issues of important severity.", "type": "color", "value": "#f5921b", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for severity icons that identify issues of important severity.", "type": "color", "value": "{global.dark.color.severity.important.100}" }, @@ -9203,11 +9764,13 @@ ] }, "pf-t--global--icon--color--severity--critical--default": { + "description": "Use as the default color for severity icons that identify issues of critical severity.", "type": "color", "value": "#f0561d", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for severity icons that identify issues of critical severity.", "type": "color", "value": "{global.dark.color.severity.critical.100}" }, @@ -9280,11 +9843,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-red--default": { + "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -9306,11 +9871,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -9381,11 +9948,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-red--hover": { + "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -9407,11 +9976,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -9482,11 +10053,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-red--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -9508,11 +10081,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -9583,11 +10158,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-orangered--default": { + "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -9609,11 +10186,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -9684,11 +10263,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-orangered--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -9710,11 +10291,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -9785,11 +10368,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-orangered--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -9811,11 +10396,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -9886,11 +10473,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-orange--default": { + "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -9912,11 +10501,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -9987,11 +10578,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-orange--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -10013,11 +10606,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -10088,11 +10683,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-orange--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -10114,11 +10711,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -10189,11 +10788,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-yellow--default": { + "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -10215,11 +10816,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -10290,11 +10893,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-yellow--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -10316,11 +10921,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -10391,11 +10998,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-yellow--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -10417,11 +11026,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -10492,11 +11103,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-green--default": { + "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -10518,11 +11131,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -10593,11 +11208,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-green--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -10619,11 +11236,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -10694,11 +11313,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-green--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -10720,11 +11341,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -10795,11 +11418,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-teal--default": { + "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -10821,11 +11446,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -10896,11 +11523,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-teal--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -10922,11 +11551,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -10997,11 +11628,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-teal--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -11023,11 +11656,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -11098,11 +11733,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-blue--default": { + "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -11124,11 +11761,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -11199,11 +11838,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-blue--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -11225,11 +11866,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -11300,11 +11943,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-blue--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -11326,11 +11971,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -11401,11 +12048,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-purple--default": { + "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -11427,11 +12076,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -11502,11 +12153,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-purple--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -11528,11 +12181,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -11603,11 +12258,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-purple--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -11629,11 +12286,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -11704,11 +12363,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-gray--default": { + "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -11730,11 +12391,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -11805,11 +12468,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-gray--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -11831,11 +12496,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -11906,11 +12573,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-gray--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -11932,11 +12601,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, @@ -12076,11 +12747,13 @@ ] }, "pf-t--global--border--width--regular": { + "description": "Use as the default border width for elements.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the default border width for elements.", "type": "number", "value": "{global.border.width.100}" }, @@ -12124,11 +12797,13 @@ ] }, "pf-t--global--border--width--divider--default": { + "description": "Use as the default border width for dividers.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the default border width for dividers.", "type": "number", "value": "{global.border.width.100}" }, @@ -12174,11 +12849,13 @@ ] }, "pf-t--global--border--width--divider--hover": { + "description": "Use as the border width hover state for dividers.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the border width hover state for dividers.", "type": "number", "value": "{global.border.width.100}" }, @@ -12224,11 +12901,13 @@ ] }, "pf-t--global--border--width--divider--clicked": { + "description": "Use as the border width clicked state for dividers.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the border width clicked state for dividers.", "type": "number", "value": "{global.border.width.100}" }, @@ -12274,11 +12953,13 @@ ] }, "pf-t--global--border--width--strong": { + "description": "Use as a stronger/wider border width for elements.", "type": "number", "value": "2px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as a stronger/wider border width for elements.", "type": "number", "value": "{global.border.width.200}" }, @@ -12322,11 +13003,13 @@ ] }, "pf-t--global--border--width--extra-strong": { + "description": "Use as the strongest/widest border width for elements.", "type": "number", "value": "3px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the strongest/widest border width for elements.", "type": "number", "value": "{global.border.width.300}" }, @@ -12370,11 +13053,13 @@ ] }, "pf-t--global--border--width--box--default": { + "description": "Use as the default border width for containers like cards, panels, code editors, etc.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the default border width for containers like cards, panels, code editors, etc.", "type": "number", "value": "{global.border.width.100}" }, @@ -12420,11 +13105,13 @@ ] }, "pf-t--global--border--width--box--hover": { + "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", "type": "number", "value": "{global.border.width.100}" }, @@ -12470,11 +13157,13 @@ ] }, "pf-t--global--border--width--box--clicked": { + "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", "type": "number", "value": "2px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", "type": "number", "value": "{global.border.width.200}" }, @@ -12520,11 +13209,13 @@ ] }, "pf-t--global--border--width--box--status--default": { + "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", "type": "number", "value": "2px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", "type": "number", "value": "{global.border.width.200}" }, @@ -12571,11 +13262,13 @@ ] }, "pf-t--global--border--width--box--status--read": { + "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", "type": "number", "value": "{global.border.width.100}" }, @@ -12621,28 +13314,30 @@ } ] }, - "pf-t--global--border--width--button--default": { + "pf-t--global--border--width--action--default": { + "description": "Use as the default border width for actions like secondary and tertiary buttons", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the default border width for actions like secondary and tertiary buttons", "type": "number", "value": "{global.border.width.100}" }, - "name": "pf-t--global--border--width--button--default", + "name": "pf-t--global--border--width--action--default", "attributes": { "category": "global", "type": "border", "item": "width", - "subitem": "button", + "subitem": "action", "state": "default" }, "path": [ "global", "border", "width", - "button", + "action", "default" ], "references": [ @@ -12671,28 +13366,30 @@ } ] }, - "pf-t--global--border--width--button--hover": { + "pf-t--global--border--width--action--hover": { + "description": "Use as the hover state border width for actions like secondary and tertiary buttons", "type": "number", "value": "2px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the hover state border width for actions like secondary and tertiary buttons", "type": "number", "value": "{global.border.width.200}" }, - "name": "pf-t--global--border--width--button--hover", + "name": "pf-t--global--border--width--action--hover", "attributes": { "category": "global", "type": "border", "item": "width", - "subitem": "button", + "subitem": "action", "state": "hover" }, "path": [ "global", "border", "width", - "button", + "action", "hover" ], "references": [ @@ -12721,28 +13418,30 @@ } ] }, - "pf-t--global--border--width--button--clicked": { + "pf-t--global--border--width--action--clicked": { + "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", "type": "number", "value": "2px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", "type": "number", "value": "{global.border.width.200}" }, - "name": "pf-t--global--border--width--button--clicked", + "name": "pf-t--global--border--width--action--clicked", "attributes": { "category": "global", "type": "border", "item": "width", - "subitem": "button", + "subitem": "action", "state": "clicked" }, "path": [ "global", "border", "width", - "button", + "action", "clicked" ], "references": [ @@ -12772,11 +13471,13 @@ ] }, "pf-t--global--border--width--control--default": { + "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", "type": "number", "value": "{global.border.width.100}" }, @@ -12822,11 +13523,13 @@ ] }, "pf-t--global--border--width--control--hover": { + "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", "type": "number", "value": "{global.border.width.100}" }, @@ -12872,11 +13575,13 @@ ] }, "pf-t--global--border--width--control--clicked": { + "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", "type": "number", "value": "2px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", "type": "number", "value": "{global.border.width.200}" }, @@ -13060,11 +13765,13 @@ ] }, "pf-t--global--border--radius--sharp": { + "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", "type": "number", "value": "{global.border.radius.0}" }, @@ -13108,11 +13815,13 @@ ] }, "pf-t--global--border--radius--tiny": { + "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", "type": "number", "value": "{global.border.radius.100}" }, @@ -13156,11 +13865,13 @@ ] }, "pf-t--global--border--radius--small": { + "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", "type": "number", "value": "6px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", "type": "number", "value": "{global.border.radius.200}" }, @@ -13204,11 +13915,13 @@ ] }, "pf-t--global--border--radius--medium": { + "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", "type": "number", "value": "{global.border.radius.300}" }, @@ -13252,11 +13965,13 @@ ] }, "pf-t--global--border--radius--large": { + "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", "type": "number", "value": "24px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", "type": "number", "value": "{global.border.radius.400}" }, @@ -13300,11 +14015,13 @@ ] }, "pf-t--global--border--radius--pill": { + "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", "type": "number", "value": "999px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", "type": "number", "value": "{global.border.radius.500}" }, @@ -13486,11 +14203,13 @@ ] }, "pf-t--global--border--color--brand--default": { + "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "#92c5f9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "{global.color.brand.default}" }, @@ -13511,11 +14230,13 @@ ], "references": [ { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", "value": "#92c5f9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", "value": "{global.dark.color.brand.100}" }, @@ -13586,11 +14307,13 @@ ] }, "pf-t--global--border--color--brand--hover": { + "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "{global.color.brand.hover}" }, @@ -13611,11 +14334,13 @@ ], "references": [ { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", "value": "{global.dark.color.brand.200}" }, @@ -13686,11 +14411,13 @@ ] }, "pf-t--global--border--color--brand--clicked": { + "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "{global.color.brand.clicked}" }, @@ -13711,11 +14438,13 @@ ], "references": [ { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", "value": "{global.dark.color.brand.200}" }, @@ -13786,11 +14515,13 @@ ] }, "pf-t--global--border--color--status--success--default": { + "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", "type": "color", "value": "#87bb62", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.success.default}" }, @@ -13812,11 +14543,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "#87bb62", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.success.100}" }, @@ -13890,11 +14623,13 @@ ] }, "pf-t--global--border--color--status--success--hover": { + "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", "value": "#afdc8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", "value": "{global.color.status.success.hover}" }, @@ -13916,11 +14651,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "#afdc8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "{global.dark.color.status.success.200}" }, @@ -13994,11 +14731,13 @@ ] }, "pf-t--global--border--color--status--success--clicked": { + "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", "value": "#afdc8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", "value": "{global.color.status.success.clicked}" }, @@ -14020,11 +14759,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "#afdc8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "{global.dark.color.status.success.200}" }, @@ -14098,11 +14839,13 @@ ] }, "pf-t--global--border--color--status--warning--default": { + "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "#ffcc17", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.warning.default}" }, @@ -14124,11 +14867,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", "value": "#ffcc17", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.warning.100}" }, @@ -14202,11 +14947,13 @@ ] }, "pf-t--global--border--color--status--warning--hover": { + "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.warning.hover}" }, @@ -14228,11 +14975,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", "value": "{global.dark.color.status.warning.200}" }, @@ -14306,11 +15055,13 @@ ] }, "pf-t--global--border--color--status--warning--clicked": { + "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.warning.clicked}" }, @@ -14332,11 +15083,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", "value": "{global.dark.color.status.warning.200}" }, @@ -14410,11 +15163,13 @@ ] }, "pf-t--global--border--color--status--danger--default": { + "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "#f0561d", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.danger.default}" }, @@ -14436,11 +15191,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "#f0561d", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.danger.100}" }, @@ -14514,11 +15271,13 @@ ] }, "pf-t--global--border--color--status--danger--hover": { + "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "#f4784a", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.danger.hover}" }, @@ -14540,11 +15299,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "#f4784a", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "{global.dark.color.status.danger.200}" }, @@ -14618,11 +15379,13 @@ ] }, "pf-t--global--border--color--status--danger--clicked": { + "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "#f4784a", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.danger.clicked}" }, @@ -14644,11 +15407,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "#f4784a", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "{global.dark.color.status.danger.200}" }, @@ -14722,11 +15487,13 @@ ] }, "pf-t--global--border--color--status--info--default": { + "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "#b6a6e9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.info.default}" }, @@ -14748,11 +15515,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "#b6a6e9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.info.100}" }, @@ -14826,11 +15595,13 @@ ] }, "pf-t--global--border--color--status--info--hover": { + "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.info.hover}" }, @@ -14852,11 +15623,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "{global.dark.color.status.info.200}" }, @@ -14930,11 +15703,13 @@ ] }, "pf-t--global--border--color--status--info--clicked": { + "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.info.clicked}" }, @@ -14956,11 +15731,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "{global.dark.color.status.info.200}" }, @@ -15034,11 +15811,13 @@ ] }, "pf-t--global--border--color--status--custom--default": { + "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "#63bdbd", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.custom.default}" }, @@ -15060,11 +15839,13 @@ ], "references": [ { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#63bdbd", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.dark.color.status.custom.100}" }, @@ -15138,11 +15919,13 @@ ] }, "pf-t--global--border--color--status--custom--hover": { + "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "#9ad8d8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.custom.hover}" }, @@ -15164,11 +15947,13 @@ ], "references": [ { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#9ad8d8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.dark.color.status.custom.200}" }, @@ -15242,11 +16027,13 @@ ] }, "pf-t--global--border--color--status--custom--clicked": { + "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "#9ad8d8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.custom.clicked}" }, @@ -15268,11 +16055,13 @@ ], "references": [ { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#9ad8d8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.dark.color.status.custom.200}" }, @@ -15346,11 +16135,13 @@ ] }, "pf-t--global--border--color--default": { + "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "#a3a3a3", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "{global.dark.border.color.200}" }, @@ -15419,11 +16210,13 @@ ] }, "pf-t--global--border--color--hover": { + "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "#92c5f9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "{global.dark.color.brand.100}" }, @@ -15492,11 +16285,13 @@ ] }, "pf-t--global--border--color--clicked": { + "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "{global.dark.color.brand.200}" }, @@ -15565,11 +16360,13 @@ ] }, "pf-t--global--border--color--disabled": { + "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "#707070", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "{global.dark.color.disabled.200}" }, @@ -15638,11 +16435,13 @@ ] }, "pf-t--global--border--color--alt": { + "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", "type": "color", "value": "#292929", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", "type": "color", "value": "{global.background.color.primary.default}" }, @@ -15740,11 +16539,13 @@ ] }, "pf-t--global--border--color--on-secondary": { + "description": "Use on borders/dividers that are placed on a secondary bkg color.", "type": "color", "value": "#a3a3a3", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use on borders/dividers that are placed on a secondary bkg color.", "type": "color", "value": "{global.dark.border.color.200}" }, @@ -15813,11 +16614,13 @@ ] }, "pf-t--global--border--color--nonstatus--red--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "#f9a8a8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.dark.color.nonstatus.red.100}" }, @@ -15890,11 +16693,13 @@ ] }, "pf-t--global--border--color--nonstatus--red--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", "value": "#fbc5c5", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.red.200}" }, @@ -15967,11 +16772,13 @@ ] }, "pf-t--global--border--color--nonstatus--red--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", "value": "#fbc5c5", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.red.200}" }, @@ -16044,11 +16851,13 @@ ] }, "pf-t--global--border--color--nonstatus--orangered--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "#f89b78", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.orangered.100}" }, @@ -16121,11 +16930,13 @@ ] }, "pf-t--global--border--color--nonstatus--orangered--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "#fbbea8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.orangered.200}" }, @@ -16198,11 +17009,13 @@ ] }, "pf-t--global--border--color--nonstatus--orangered--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "#fbbea8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.orangered.200}" }, @@ -16275,11 +17088,13 @@ ] }, "pf-t--global--border--color--nonstatus--orange--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "#f8ae54", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.orange.100}" }, @@ -16352,11 +17167,13 @@ ] }, "pf-t--global--border--color--nonstatus--orange--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "#fccb8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.orange.200}" }, @@ -16429,11 +17246,13 @@ ] }, "pf-t--global--border--color--nonstatus--orange--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "#fccb8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.orange.200}" }, @@ -16506,13 +17325,15 @@ ] }, "pf-t--global--border--color--nonstatus--yellow--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", "value": "#ffcc17", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.gold.100}" + "value": "{global.dark.color.nonstatus.yellow.100}" }, "name": "pf-t--global--border--color--nonstatus--yellow--default", "attributes": { @@ -16540,20 +17361,20 @@ "type": "color", "value": "{color.yellow.30}" }, - "name": "pf-t--global--dark--color--nonstatus--gold--100", + "name": "pf-t--global--dark--color--nonstatus--yellow--100", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "gold" + "state": "yellow" }, "path": [ "global", "dark", "color", "nonstatus", - "gold", + "yellow", "100" ], "references": [ @@ -16583,13 +17404,15 @@ ] }, "pf-t--global--border--color--nonstatus--yellow--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.gold.200}" + "value": "{global.dark.color.nonstatus.yellow.200}" }, "name": "pf-t--global--border--color--nonstatus--yellow--hover", "attributes": { @@ -16617,20 +17440,20 @@ "type": "color", "value": "{color.yellow.20}" }, - "name": "pf-t--global--dark--color--nonstatus--gold--200", + "name": "pf-t--global--dark--color--nonstatus--yellow--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "gold" + "state": "yellow" }, "path": [ "global", "dark", "color", "nonstatus", - "gold", + "yellow", "200" ], "references": [ @@ -16660,13 +17483,15 @@ ] }, "pf-t--global--border--color--nonstatus--yellow--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.gold.200}" + "value": "{global.dark.color.nonstatus.yellow.200}" }, "name": "pf-t--global--border--color--nonstatus--yellow--clicked", "attributes": { @@ -16694,20 +17519,20 @@ "type": "color", "value": "{color.yellow.20}" }, - "name": "pf-t--global--dark--color--nonstatus--gold--200", + "name": "pf-t--global--dark--color--nonstatus--yellow--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "gold" + "state": "yellow" }, "path": [ "global", "dark", "color", "nonstatus", - "gold", + "yellow", "200" ], "references": [ @@ -16737,11 +17562,13 @@ ] }, "pf-t--global--border--color--nonstatus--green--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "#afdc8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.green.100}" }, @@ -16814,11 +17641,13 @@ ] }, "pf-t--global--border--color--nonstatus--green--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "#d1f1bb", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.green.200}" }, @@ -16891,11 +17720,13 @@ ] }, "pf-t--global--border--color--nonstatus--green--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "#d1f1bb", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.green.200}" }, @@ -16968,13 +17799,15 @@ ] }, "pf-t--global--border--color--nonstatus--teal--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", "value": "#9ad8d8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.cyan.100}" + "value": "{global.dark.color.nonstatus.teal.100}" }, "name": "pf-t--global--border--color--nonstatus--teal--default", "attributes": { @@ -17002,20 +17835,20 @@ "type": "color", "value": "{color.teal.30}" }, - "name": "pf-t--global--dark--color--nonstatus--cyan--100", + "name": "pf-t--global--dark--color--nonstatus--teal--100", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "cyan" + "state": "teal" }, "path": [ "global", "dark", "color", "nonstatus", - "cyan", + "teal", "100" ], "references": [ @@ -17045,13 +17878,15 @@ ] }, "pf-t--global--border--color--nonstatus--teal--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", "value": "#b9e5e5", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.cyan.200}" + "value": "{global.dark.color.nonstatus.teal.200}" }, "name": "pf-t--global--border--color--nonstatus--teal--hover", "attributes": { @@ -17079,20 +17914,20 @@ "type": "color", "value": "{color.teal.20}" }, - "name": "pf-t--global--dark--color--nonstatus--cyan--200", + "name": "pf-t--global--dark--color--nonstatus--teal--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "cyan" + "state": "teal" }, "path": [ "global", "dark", "color", "nonstatus", - "cyan", + "teal", "200" ], "references": [ @@ -17122,13 +17957,15 @@ ] }, "pf-t--global--border--color--nonstatus--teal--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", "value": "#b9e5e5", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.cyan.200}" + "value": "{global.dark.color.nonstatus.teal.200}" }, "name": "pf-t--global--border--color--nonstatus--teal--clicked", "attributes": { @@ -17156,20 +17993,20 @@ "type": "color", "value": "{color.teal.20}" }, - "name": "pf-t--global--dark--color--nonstatus--cyan--200", + "name": "pf-t--global--dark--color--nonstatus--teal--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "cyan" + "state": "teal" }, "path": [ "global", "dark", "color", "nonstatus", - "cyan", + "teal", "200" ], "references": [ @@ -17199,11 +18036,13 @@ ] }, "pf-t--global--border--color--nonstatus--blue--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "#92c5f9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.blue.100}" }, @@ -17276,11 +18115,13 @@ ] }, "pf-t--global--border--color--nonstatus--blue--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.blue.200}" }, @@ -17353,11 +18194,13 @@ ] }, "pf-t--global--border--color--nonstatus--blue--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.blue.200}" }, @@ -17430,11 +18273,13 @@ ] }, "pf-t--global--border--color--nonstatus--purple--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "#b6a6e9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.purple.100}" }, @@ -17507,11 +18352,13 @@ ] }, "pf-t--global--border--color--nonstatus--purple--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.purple.200}" }, @@ -17584,11 +18431,13 @@ ] }, "pf-t--global--border--color--nonstatus--purple--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.purple.200}" }, @@ -17661,11 +18510,13 @@ ] }, "pf-t--global--border--color--nonstatus--gray--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "#c7c7c7", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.gray.100}" }, @@ -17738,11 +18589,13 @@ ] }, "pf-t--global--border--color--nonstatus--gray--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "#e0e0e0", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.gray.200}" }, @@ -17815,11 +18668,13 @@ ] }, "pf-t--global--border--color--nonstatus--gray--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "#e0e0e0", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.gray.200}" }, @@ -17961,11 +18816,13 @@ ] }, "pf-t--global--font--family--body": { + "description": "Use to define the font family for body text", "type": "number", "value": "Red Hat Text VF", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the font family for body text", "type": "number", "value": "{global.font.family.100}" }, @@ -18009,11 +18866,13 @@ ] }, "pf-t--global--font--family--heading": { + "description": "Use to define the font family for heading text", "type": "number", "value": "Red Hat Display VF", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the font family for heading text", "type": "number", "value": "{global.font.family.200}" }, @@ -18057,11 +18916,13 @@ ] }, "pf-t--global--font--family--mono": { + "description": "Use to define the font family for mono text", "type": "number", "value": "Red Hat Mono VF", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the font family for mono text", "type": "number", "value": "{global.font.family.300}" }, @@ -18104,22 +18965,104 @@ } ] }, - "pf-t--global--font--weight--body": { - "100": { + "pf-t--global--font--weight--100": { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": false + "value": 400 + }, + "name": "pf-t--global--font--weight--100", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "100" + }, + "path": [ + "global", + "font", + "weight", + "100" + ] + }, + "pf-t--global--font--weight--200": { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--font--weight--200", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "200" }, - "200": { + "path": [ + "global", + "font", + "weight", + "200" + ] + }, + "pf-t--global--font--weight--300": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { "type": "number", - "value": 500, - "filePath": "tokens/default/base.dimension.json", - "isSource": false + "value": 700 + }, + "name": "pf-t--global--font--weight--300", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "300" + }, + "path": [ + "global", + "font", + "weight", + "300" + ] + }, + "pf-t--global--font--weight--400": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 700 + }, + "name": "pf-t--global--font--weight--400", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "400" }, + "path": [ + "global", + "font", + "weight", + "400" + ] + }, + "pf-t--global--font--weight--body": { + "description": "Use to define the default weight for body text", "type": "number", "value": 400, "bold": { + "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", "type": "number", "value": 500, "filePath": "tokens/default/semantic.dimension.json", @@ -18128,23 +19071,13 @@ "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { - "100": { - "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": false - }, - "200": { - "type": "number", - "value": 500, - "filePath": "tokens/default/base.dimension.json", - "isSource": false - }, + "description": "Use to define the default weight for body text", "type": "number", - "value": "{global.font.weight.body.100}", + "value": "{global.font.weight.100}", "bold": { + "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", "type": "number", - "value": "{global.font.weight.body.200}", + "value": "{global.font.weight.200}", "filePath": "tokens/default/semantic.dimension.json", "isSource": false } @@ -18167,26 +19100,33 @@ "type": "number", "value": 400, "filePath": "tokens/default/base.dimension.json", - "isSource": false + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--font--weight--100", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "100" + }, + "path": [ + "global", + "font", + "weight", + "100" + ] } ] }, "pf-t--global--font--weight--heading": { - "100": { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": false - }, - "200": { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": false - }, + "description": "Use to define the default weight for heading text", "type": "number", "value": 700, "bold": { + "description": "Use to define the bold weight for heading text, often used to add emphasis.", "type": "number", "value": 700, "filePath": "tokens/default/semantic.dimension.json", @@ -18195,23 +19135,13 @@ "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { - "100": { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": false - }, - "200": { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": false - }, + "description": "Use to define the default weight for heading text", "type": "number", - "value": "{global.font.weight.heading.100}", + "value": "{global.font.weight.300}", "bold": { + "description": "Use to define the bold weight for heading text, often used to add emphasis.", "type": "number", - "value": "{global.font.weight.heading.200}", + "value": "{global.font.weight.400}", "filePath": "tokens/default/semantic.dimension.json", "isSource": false } @@ -18234,7 +19164,24 @@ "type": "number", "value": 700, "filePath": "tokens/default/base.dimension.json", - "isSource": false + "isSource": false, + "original": { + "type": "number", + "value": 700 + }, + "name": "pf-t--global--font--weight--300", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "300" + }, + "path": [ + "global", + "font", + "weight", + "300" + ] } ] }, @@ -18284,1228 +19231,569 @@ "200" ] }, - "pf-t--global--font--line-height--figma-only--100": { + "pf-t--global--font--line-height--body": { + "description": "Use to define the line height for body text", "type": "number", - "value": 18, - "filePath": "tokens/default/base.dimension.json", + "value": 1.2999999523162842, + "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the line height for body text", "type": "number", - "value": 18 + "value": "{global.font.line-height.100}" }, - "name": "pf-t--global--font--line-height--figma-only--100", + "name": "pf-t--global--font--line-height--body", "attributes": { "category": "global", "type": "font", "item": "line-height", - "subitem": "figma-only", - "state": "100" + "subitem": "body" }, "path": [ "global", "font", "line-height", - "figma-only", - "100" + "body" + ], + "references": [ + { + "type": "number", + "value": 1.2999999523162842, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1.2999999523162842 + }, + "name": "pf-t--global--font--line-height--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "100" + }, + "path": [ + "global", + "font", + "line-height", + "100" + ] + } ] }, - "pf-t--global--font--line-height--figma-only--200": { + "pf-t--global--font--line-height--heading": { + "description": "Use to define the line height for heading text", "type": "number", - "value": 21, - "filePath": "tokens/default/base.dimension.json", + "value": 1.5, + "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the line height for heading text", "type": "number", - "value": 21 + "value": "{global.font.line-height.200}" }, - "name": "pf-t--global--font--line-height--figma-only--200", + "name": "pf-t--global--font--line-height--heading", "attributes": { "category": "global", "type": "font", "item": "line-height", - "subitem": "figma-only", - "state": "200" + "subitem": "heading" }, "path": [ "global", "font", "line-height", - "figma-only", + "heading" + ], + "references": [ + { + "type": "number", + "value": 1.5, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1.5 + }, + "name": "pf-t--global--font--line-height--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "200" + }, + "path": [ + "global", + "font", + "line-height", + "200" + ] + } + ] + }, + "pf-t--global--font--size--100": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + }, + "pf-t--global--font--size--200": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", "200" ] }, - "pf-t--global--font--line-height--figma-only--300": { + "pf-t--global--font--size--300": { "type": "number", - "value": 24, + "value": "16px", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { "type": "number", - "value": 24 + "value": 16 }, - "name": "pf-t--global--font--line-height--figma-only--300", + "name": "pf-t--global--font--size--300", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "300" + "item": "size", + "subitem": "300" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "300" ] }, - "pf-t--global--font--line-height--figma-only--400": { + "pf-t--global--font--size--400": { "type": "number", - "value": 23.399999618530273, + "value": "18px", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { "type": "number", - "value": 23.399999618530273 + "value": 18 }, - "name": "pf-t--global--font--line-height--figma-only--400", + "name": "pf-t--global--font--size--400", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "400" + "item": "size", + "subitem": "400" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "400" ] }, - "pf-t--global--font--line-height--figma-only--500": { + "pf-t--global--font--size--500": { "type": "number", - "value": 26, + "value": "20px", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { "type": "number", - "value": 26 + "value": 20 }, - "name": "pf-t--global--font--line-height--figma-only--500", + "name": "pf-t--global--font--size--500", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "500" + "item": "size", + "subitem": "500" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "500" ] }, - "pf-t--global--font--line-height--figma-only--600": { + "pf-t--global--font--size--600": { "type": "number", - "value": 28.600000381469727, + "value": "22px", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { "type": "number", - "value": 28.600000381469727 + "value": 22 }, - "name": "pf-t--global--font--line-height--figma-only--600", + "name": "pf-t--global--font--size--600", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "600" + "item": "size", + "subitem": "600" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "600" ] }, - "pf-t--global--font--line-height--figma-only--700": { + "pf-t--global--font--size--700": { "type": "number", - "value": 36.400001525878906, + "value": "28px", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { "type": "number", - "value": 36.400001525878906 + "value": 28 }, - "name": "pf-t--global--font--line-height--figma-only--700", + "name": "pf-t--global--font--size--700", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "700" + "item": "size", + "subitem": "700" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "700" ] }, - "pf-t--global--font--line-height--figma-only--800": { + "pf-t--global--font--size--800": { "type": "number", - "value": 46.79999923706055, + "value": "36px", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { "type": "number", - "value": 46.79999923706055 + "value": 36 }, - "name": "pf-t--global--font--line-height--figma-only--800", + "name": "pf-t--global--font--size--800", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "800" + "item": "size", + "subitem": "800" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "800" ] }, - "pf-t--global--font--line-height--figma-only--body--small": { + "pf-t--global--font--size--body--sm": { + "description": "Use for a smaller font size in body sections.", "type": "number", - "value": 18, + "value": "12px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "{global.font.line-height.figma-only.100}" + "value": "{global.font.size.xs}" }, - "name": "pf-t--global--font--line-height--figma-only--body--small", + "name": "pf-t--global--font--size--body--sm", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "body" + "item": "size", + "subitem": "body", + "state": "sm" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "body", - "small" + "sm" ], "references": [ { "type": "number", - "value": 18, - "filePath": "tokens/default/base.dimension.json", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { "type": "number", - "value": 18 + "value": "{global.font.size.100}" }, - "name": "pf-t--global--font--line-height--figma-only--100", + "name": "pf-t--global--font--size--xs", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "100" + "item": "size", + "subitem": "xs" }, "path": [ "global", "font", - "line-height", - "figma-only", - "100" + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } ] } ] }, - "pf-t--global--font--line-height--figma-only--body--default": { + "pf-t--global--font--size--body--default": { + "description": "Use as the default font size in body sections.", "type": "number", - "value": 21, + "value": "14px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the default font size in body sections.", "type": "number", - "value": "{global.font.line-height.figma-only.200}" + "value": "{global.font.size.sm}" }, - "name": "pf-t--global--font--line-height--figma-only--body--default", + "name": "pf-t--global--font--size--body--default", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "body" + "item": "size", + "subitem": "body", + "state": "default" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "body", "default" ], "references": [ { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": 21, - "filePath": "tokens/default/base.dimension.json", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": 21 + "value": "{global.font.size.200}" }, - "name": "pf-t--global--font--line-height--figma-only--200", + "name": "pf-t--global--font--size--sm", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "200" + "item": "size", + "subitem": "sm" }, "path": [ "global", "font", - "line-height", - "figma-only", - "200" + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } ] } ] }, - "pf-t--global--font--line-height--figma-only--body--large": { + "pf-t--global--font--size--body--lg": { + "description": "Use for a larger font size in body sections.", "type": "number", - "value": 24, + "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use for a larger font size in body sections.", "type": "number", - "value": "{global.font.line-height.figma-only.300}" + "value": "{global.font.size.md}" }, - "name": "pf-t--global--font--line-height--figma-only--body--large", + "name": "pf-t--global--font--size--body--lg", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "body" + "item": "size", + "subitem": "body", + "state": "lg" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "body", - "large" + "lg" ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": 24, - "filePath": "tokens/default/base.dimension.json", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": 24 + "value": "{global.font.size.300}" }, - "name": "pf-t--global--font--line-height--figma-only--300", + "name": "pf-t--global--font--size--md", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "300" + "item": "size", + "subitem": "md" }, "path": [ "global", "font", - "line-height", - "figma-only", - "300" + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } ] } ] }, - "pf-t--global--font--line-height--figma-only--heading--xs": { + "pf-t--global--font--size--heading--h1": { + "description": "Use as the font size for first level headings.", "type": "number", - "value": 24, + "value": "22px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for first level headings.", "type": "number", - "value": "{global.font.line-height.figma-only.300}" + "value": "{global.font.size.2xl}" }, - "name": "pf-t--global--font--line-height--figma-only--heading--xs", + "name": "pf-t--global--font--size--heading--h1", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "heading" + "item": "size", + "subitem": "heading", + "state": "h1" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "heading", - "xs" + "h1" ], "references": [ { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": 24, - "filePath": "tokens/default/base.dimension.json", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": 24 + "value": "{global.font.size.600}" }, - "name": "pf-t--global--font--line-height--figma-only--300", + "name": "pf-t--global--font--size--2xl", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "300" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "300" - ] - } - ] - }, - "pf-t--global--font--line-height--figma-only--heading--sm": { - "type": "number", - "value": 23.399999618530273, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.line-height.figma-only.400}" - }, - "name": "pf-t--global--font--line-height--figma-only--heading--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "heading" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "heading", - "sm" - ], - "references": [ - { - "type": "number", - "value": 23.399999618530273, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 23.399999618530273 - }, - "name": "pf-t--global--font--line-height--figma-only--400", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "400" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "400" - ] - } - ] - }, - "pf-t--global--font--line-height--figma-only--heading--md": { - "type": "number", - "value": 26, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.line-height.figma-only.500}" - }, - "name": "pf-t--global--font--line-height--figma-only--heading--md", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "heading" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "heading", - "md" - ], - "references": [ - { - "type": "number", - "value": 26, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 26 - }, - "name": "pf-t--global--font--line-height--figma-only--500", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "500" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "500" - ] - } - ] - }, - "pf-t--global--font--line-height--figma-only--heading--lg": { - "type": "number", - "value": 28.600000381469727, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.line-height.figma-only.600}" - }, - "name": "pf-t--global--font--line-height--figma-only--heading--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "heading" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "heading", - "lg" - ], - "references": [ - { - "type": "number", - "value": 28.600000381469727, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 28.600000381469727 - }, - "name": "pf-t--global--font--line-height--figma-only--600", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "600" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "600" - ] - } - ] - }, - "pf-t--global--font--line-height--figma-only--heading--xl": { - "type": "number", - "value": 36.400001525878906, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.line-height.figma-only.700}" - }, - "name": "pf-t--global--font--line-height--figma-only--heading--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "heading" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "heading", - "xl" - ], - "references": [ - { - "type": "number", - "value": 36.400001525878906, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 36.400001525878906 - }, - "name": "pf-t--global--font--line-height--figma-only--700", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "700" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "700" - ] - } - ] - }, - "pf-t--global--font--line-height--figma-only--heading--2xl": { - "type": "number", - "value": 46.79999923706055, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.line-height.figma-only.800}" - }, - "name": "pf-t--global--font--line-height--figma-only--heading--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "heading" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "heading", - "2xl" - ], - "references": [ - { - "type": "number", - "value": 46.79999923706055, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 46.79999923706055 - }, - "name": "pf-t--global--font--line-height--figma-only--800", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "800" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "800" - ] - } - ] - }, - "pf-t--global--font--line-height--body": { - "type": "number", - "value": 1.2999999523162842, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.line-height.100}" - }, - "name": "pf-t--global--font--line-height--body", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "body" - }, - "path": [ - "global", - "font", - "line-height", - "body" - ], - "references": [ - { - "type": "number", - "value": 1.2999999523162842, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1.2999999523162842 - }, - "name": "pf-t--global--font--line-height--100", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "100" - }, - "path": [ - "global", - "font", - "line-height", - "100" - ] - } - ] - }, - "pf-t--global--font--line-height--heading": { - "type": "number", - "value": 1.5, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.line-height.200}" - }, - "name": "pf-t--global--font--line-height--heading", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "heading" - }, - "path": [ - "global", - "font", - "line-height", - "heading" - ], - "references": [ - { - "type": "number", - "value": 1.5, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1.5 - }, - "name": "pf-t--global--font--line-height--200", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "200" - }, - "path": [ - "global", - "font", - "line-height", - "200" - ] - } - ] - }, - "pf-t--global--font--size--100": { - "type": "number", - "value": "12px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - }, - "pf-t--global--font--size--200": { - "type": "number", - "value": "14px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - }, - "pf-t--global--font--size--300": { - "type": "number", - "value": "16px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - }, - "pf-t--global--font--size--400": { - "type": "number", - "value": "18px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - }, - "pf-t--global--font--size--500": { - "type": "number", - "value": "20px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - }, - "pf-t--global--font--size--600": { - "type": "number", - "value": "22px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - }, - "pf-t--global--font--size--700": { - "type": "number", - "value": "28px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 28 - }, - "name": "pf-t--global--font--size--700", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "700" - }, - "path": [ - "global", - "font", - "size", - "700" - ] - }, - "pf-t--global--font--size--800": { - "type": "number", - "value": "36px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 36 - }, - "name": "pf-t--global--font--size--800", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "800" - }, - "path": [ - "global", - "font", - "size", - "800" - ] - }, - "pf-t--global--font--size--body--sm": { - "type": "number", - "value": "12px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.size.xs}" - }, - "name": "pf-t--global--font--size--body--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "sm" - }, - "path": [ - "global", - "font", - "size", - "body", - "sm" - ], - "references": [ - { - "type": "number", - "value": "12px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { - "type": "number", - "value": "12px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--body--default": { - "type": "number", - "value": "14px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.size.sm}" - }, - "name": "pf-t--global--font--size--body--default", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "default" - }, - "path": [ - "global", - "font", - "size", - "body", - "default" - ], - "references": [ - { - "type": "number", - "value": "14px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { - "type": "number", - "value": "14px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--body--lg": { - "type": "number", - "value": "16px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--body--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "lg" - }, - "path": [ - "global", - "font", - "size", - "body", - "lg" - ], - "references": [ - { - "type": "number", - "value": "16px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "16px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--heading--h1": { - "type": "number", - "value": "22px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.size.2xl}" - }, - "name": "pf-t--global--font--size--heading--h1", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h1" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h1" - ], - "references": [ - { - "type": "number", - "value": "22px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" + "item": "size", + "subitem": "2xl" }, "path": [ "global", @@ -19542,11 +19830,13 @@ ] }, "pf-t--global--font--size--heading--h2": { + "description": "Use as the font size for second level headings.", "type": "number", "value": "20px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for second level headings.", "type": "number", "value": "{global.font.size.xl}" }, @@ -19567,11 +19857,13 @@ ], "references": [ { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", "value": "20px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.500}" }, @@ -19617,11 +19909,13 @@ ] }, "pf-t--global--font--size--heading--h3": { + "description": "Use as the font size for third level headings.", "type": "number", "value": "18px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for third level headings.", "type": "number", "value": "{global.font.size.lg}" }, @@ -19642,11 +19936,13 @@ ], "references": [ { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", "value": "18px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.400}" }, @@ -19692,11 +19988,13 @@ ] }, "pf-t--global--font--size--heading--h4": { + "description": "Use as the font size for fourth-level headings.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for fourth-level headings.", "type": "number", "value": "{global.font.size.md}" }, @@ -19717,11 +20015,13 @@ ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.300}" }, @@ -19767,11 +20067,13 @@ ] }, "pf-t--global--font--size--heading--h5": { + "description": "Use as the font size for fifth level headings.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for fifth level headings.", "type": "number", "value": "{global.font.size.md}" }, @@ -19792,11 +20094,13 @@ ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.300}" }, @@ -19842,11 +20146,13 @@ ] }, "pf-t--global--font--size--heading--h6": { + "description": "Use as the font size for sixth level headings.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for sixth level headings.", "type": "number", "value": "{global.font.size.md}" }, @@ -19867,11 +20173,13 @@ ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.300}" }, @@ -19965,11 +20273,13 @@ ] }, "pf-t--global--font--size--sm": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", "value": "14px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.200}" }, @@ -20013,11 +20323,13 @@ ] }, "pf-t--global--font--size--md": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.300}" }, @@ -20061,11 +20373,13 @@ ] }, "pf-t--global--font--size--lg": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", "value": "18px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.400}" }, @@ -20109,11 +20423,13 @@ ] }, "pf-t--global--font--size--xl": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", "value": "20px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.500}" }, @@ -20157,11 +20473,13 @@ ] }, "pf-t--global--font--size--2xl": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", "value": "22px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.600}" }, @@ -20205,11 +20523,13 @@ ] }, "pf-t--global--font--size--3xl": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "28px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.700}" }, @@ -20253,11 +20573,13 @@ ] }, "pf-t--global--font--size--4xl": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "36px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.800}" }, @@ -20852,11 +21174,13 @@ ] }, "pf-t--global--box-shadow--X--sm--default": { + "description": "Use to define the X value for a default small box-shadow, like in sticky sections", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the X value for a default small box-shadow, like in sticky sections", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -20902,11 +21226,13 @@ ] }, "pf-t--global--box-shadow--X--sm--top": { + "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -20952,11 +21278,13 @@ ] }, "pf-t--global--box-shadow--X--sm--bottom": { + "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -21002,11 +21330,13 @@ ] }, "pf-t--global--box-shadow--X--sm--left": { + "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", "value": "-1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", "value": "{global.box-shadow.X.300}" }, @@ -21052,11 +21382,13 @@ ] }, "pf-t--global--box-shadow--X--sm--right": { + "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", "value": "{global.box-shadow.X.500}" }, @@ -21102,11 +21434,13 @@ ] }, "pf-t--global--box-shadow--X--md--default": { + "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -21152,11 +21486,13 @@ ] }, "pf-t--global--box-shadow--X--md--top": { + "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -21202,11 +21538,13 @@ ] }, "pf-t--global--box-shadow--X--md--bottom": { + "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -21252,11 +21590,13 @@ ] }, "pf-t--global--box-shadow--X--md--left": { + "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", "value": "-4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", "value": "{global.box-shadow.X.200}" }, @@ -21302,11 +21642,13 @@ ] }, "pf-t--global--box-shadow--X--md--right": { + "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", "value": "{global.box-shadow.X.600}" }, @@ -21352,11 +21694,13 @@ ] }, "pf-t--global--box-shadow--X--lg--default": { + "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -21402,11 +21746,13 @@ ] }, "pf-t--global--box-shadow--X--lg--top": { + "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -21452,11 +21798,13 @@ ] }, "pf-t--global--box-shadow--X--lg--bottom": { + "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -21502,11 +21850,13 @@ ] }, "pf-t--global--box-shadow--X--lg--left": { + "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", "type": "number", "value": "-8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", "type": "number", "value": "{global.box-shadow.X.100}" }, @@ -21552,11 +21902,13 @@ ] }, "pf-t--global--box-shadow--X--lg--right": { + "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", "type": "number", "value": "{global.box-shadow.X.700}" }, @@ -21763,11 +22115,13 @@ ] }, "pf-t--global--box-shadow--Y--sm--default": { + "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", "type": "number", "value": "{global.box-shadow.Y.500}" }, @@ -21813,11 +22167,13 @@ ] }, "pf-t--global--box-shadow--Y--sm--top": { + "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", "value": "-1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", "value": "{global.box-shadow.Y.300}" }, @@ -21863,11 +22219,13 @@ ] }, "pf-t--global--box-shadow--Y--sm--bottom": { + "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", "value": "{global.box-shadow.Y.500}" }, @@ -21913,11 +22271,13 @@ ] }, "pf-t--global--box-shadow--Y--sm--left": { + "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", "value": "{global.box-shadow.Y.400}" }, @@ -21963,11 +22323,13 @@ ] }, "pf-t--global--box-shadow--Y--sm--right": { + "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", "value": "{global.box-shadow.Y.400}" }, @@ -22013,11 +22375,13 @@ ] }, "pf-t--global--box-shadow--Y--md--default": { + "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", "value": "{global.box-shadow.Y.600}" }, @@ -22063,11 +22427,13 @@ ] }, "pf-t--global--box-shadow--Y--md--top": { + "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", "type": "number", "value": "-4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", "type": "number", "value": "{global.box-shadow.Y.200}" }, @@ -22113,11 +22479,13 @@ ] }, "pf-t--global--box-shadow--Y--md--bottom": { + "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "{global.box-shadow.Y.600}" }, @@ -22163,11 +22531,13 @@ ] }, "pf-t--global--box-shadow--Y--md--left": { + "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", "value": "{global.box-shadow.Y.400}" }, @@ -22213,11 +22583,13 @@ ] }, "pf-t--global--box-shadow--Y--md--right": { + "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", "value": "{global.box-shadow.Y.400}" }, @@ -22263,11 +22635,13 @@ ] }, "pf-t--global--box-shadow--Y--lg--default": { + "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", "type": "number", "value": "{global.box-shadow.Y.700}" }, @@ -22313,11 +22687,13 @@ ] }, "pf-t--global--box-shadow--Y--lg--top": { + "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", "type": "number", "value": "-8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", "type": "number", "value": "{global.box-shadow.Y.100}" }, @@ -22363,11 +22739,13 @@ ] }, "pf-t--global--box-shadow--Y--lg--bottom": { + "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "{global.box-shadow.Y.700}" }, @@ -22413,11 +22791,13 @@ ] }, "pf-t--global--box-shadow--Y--lg--left": { + "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", "type": "number", "value": "{global.box-shadow.Y.400}" }, @@ -22463,11 +22843,13 @@ ] }, "pf-t--global--box-shadow--Y--lg--right": { + "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", "type": "number", "value": "{global.box-shadow.Y.400}" }, @@ -22514,12 +22896,12 @@ }, "pf-t--global--box-shadow--blur--100": { "type": "number", - "value": "2px", + "value": "4px", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { "type": "number", - "value": 2 + "value": 4 }, "name": "pf-t--global--box-shadow--blur--100", "attributes": { @@ -22582,11 +22964,13 @@ ] }, "pf-t--global--box-shadow--blur--sm": { + "description": "Use to define the blur for a small box-shadow", "type": "number", - "value": "2px", + "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the blur for a small box-shadow", "type": "number", "value": "{global.box-shadow.blur.100}" }, @@ -22606,12 +22990,12 @@ "references": [ { "type": "number", - "value": "2px", + "value": "4px", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { "type": "number", - "value": 2 + "value": 4 }, "name": "pf-t--global--box-shadow--blur--100", "attributes": { @@ -22630,11 +23014,13 @@ ] }, "pf-t--global--box-shadow--blur--md": { + "description": "Use to define the blur for a medium box-shadow", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the blur for a medium box-shadow", "type": "number", "value": "{global.box-shadow.blur.200}" }, @@ -22678,11 +23064,13 @@ ] }, "pf-t--global--box-shadow--blur--lg": { + "description": "Use to define the blue for a large box-shadow", "type": "number", "value": "24px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the blue for a large box-shadow", "type": "number", "value": "{global.box-shadow.blur.300}" }, @@ -22749,11 +23137,13 @@ ] }, "pf-t--global--box-shadow--spread--sm": { + "description": "Use to define the spread for a small box-shadow", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the spread for a small box-shadow", "type": "number", "value": "{global.box-shadow.spread.100}" }, @@ -22797,11 +23187,13 @@ ] }, "pf-t--global--box-shadow--spread--md": { + "description": "Use to define the spread of a medium box-shadow", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the spread of a medium box-shadow", "type": "number", "value": "{global.box-shadow.spread.100}" }, @@ -22845,11 +23237,13 @@ ] }, "pf-t--global--box-shadow--spread--lg": { + "description": "Use to define the spread of a large box-shadow", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define the spread of a large box-shadow", "type": "number", "value": "{global.box-shadow.spread.100}" }, @@ -22939,11 +23333,13 @@ ] }, "pf-t--global--box-shadow--color--sm": { + "description": "Use as the color of small box-shadows.", "type": "color", "value": "rgba(0, 0, 0, 0.5000)", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of small box-shadows.", "type": "color", "value": "{global.dark.box-shadow.color.100}" }, @@ -22989,11 +23385,13 @@ ] }, "pf-t--global--box-shadow--color--md": { + "description": "Use as the color of medium box-shadows.", "type": "color", "value": "rgba(0, 0, 0, 0.5000)", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of medium box-shadows.", "type": "color", "value": "{global.dark.box-shadow.color.100}" }, @@ -23039,11 +23437,13 @@ ] }, "pf-t--global--box-shadow--color--lg": { + "description": "Use as the color of large box-shadows.", "type": "color", "value": "rgba(0, 0, 0, 0.5000)", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of large box-shadows.", "type": "color", "value": "{global.dark.box-shadow.color.100}" }, @@ -23278,11 +23678,13 @@ ] }, "pf-t--global--breakpoint--xs": { + "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.100}" }, @@ -23322,11 +23724,13 @@ ] }, "pf-t--global--breakpoint--sm": { + "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "576px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.200}" }, @@ -23366,11 +23770,13 @@ ] }, "pf-t--global--breakpoint--md": { + "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "768px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.300}" }, @@ -23410,11 +23816,13 @@ ] }, "pf-t--global--breakpoint--lg": { + "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "992px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.400}" }, @@ -23454,11 +23862,13 @@ ] }, "pf-t--global--breakpoint--xl": { + "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "1200px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.500}" }, @@ -23498,11 +23908,13 @@ ] }, "pf-t--global--breakpoint--2xl": { + "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "1450px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.600}" }, @@ -23542,11 +23954,13 @@ ] }, "pf-t--global--breakpoint--height--sm": { + "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.100}" }, @@ -23588,11 +24002,13 @@ ] }, "pf-t--global--breakpoint--height--md": { + "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "640px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.250}" }, @@ -23634,11 +24050,13 @@ ] }, "pf-t--global--breakpoint--height--lg": { + "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "768px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.300}" }, @@ -23680,11 +24098,13 @@ ] }, "pf-t--global--breakpoint--height--xl": { + "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "960px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.350}" }, @@ -23726,11 +24146,13 @@ ] }, "pf-t--global--breakpoint--height--2xl": { + "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "1280px", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { + "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.550}" }, @@ -24406,13 +24828,13 @@ ] }, "pf-t--global--background--color--primary--clicked": { - "description": "Use as the selected state for primary backgrounds", + "description": "Use as the clicked state for primary backgrounds", "type": "color", "value": "#383838", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { - "description": "Use as the selected state for primary backgrounds", + "description": "Use as the clicked state for primary backgrounds", "type": "color", "value": "{global.dark.background.color.300}" }, @@ -24637,13 +25059,13 @@ ] }, "pf-t--global--background--color--secondary--clicked": { - "description": "Use as the selected state for secondary backgrounds", + "description": "Use as the clicked state for secondary backgrounds", "type": "color", "value": "#292929", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { - "description": "Use as the selected state for secondary backgrounds", + "description": "Use as the clicked state for secondary backgrounds", "type": "color", "value": "{global.dark.background.color.200}" }, @@ -24714,13 +25136,13 @@ ] }, "pf-t--global--background--color--floating--default": { - "description": "Use as background color for components that show over top of other content such as toast alerts, menus, modals, overlay drawers, etc.", + "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", "type": "color", "value": "#383838", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { - "description": "Use as background color for components that show over top of other content such as toast alerts, menus, modals, overlay drawers, etc.", + "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", "type": "color", "value": "{global.dark.background.color.300}" }, @@ -24868,13 +25290,13 @@ ] }, "pf-t--global--background--color--floating--clicked": { - "description": "Use as the selected state for floating backgrounds", + "description": "Use as the clicked state for floating backgrounds", "type": "color", "value": "#292929", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { - "description": "Use as the selected state for floating backgrounds", + "description": "Use as the clicked state for floating backgrounds", "type": "color", "value": "{global.dark.background.color.200}" }, @@ -25664,11 +26086,13 @@ ] }, "pf-t--global--color--brand--default": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", "value": "#92c5f9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", "value": "{global.dark.color.brand.100}" }, @@ -25737,11 +26161,13 @@ ] }, "pf-t--global--color--brand--hover": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", "value": "{global.dark.color.brand.200}" }, @@ -25810,11 +26236,13 @@ ] }, "pf-t--global--color--brand--clicked": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", "value": "{global.dark.color.brand.200}" }, @@ -26113,11 +26541,13 @@ ] }, "pf-t--global--color--favorite--default": { + "description": "Use as the default color for elements that have been favorited", "type": "color", "value": "#ffcc17", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for elements that have been favorited", "type": "color", "value": "{global.dark.color.favorite.100}" }, @@ -26186,11 +26616,13 @@ ] }, "pf-t--global--color--favorite--hover": { + "description": "Use as the hover state for elements that have been favorited", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for elements that have been favorited", "type": "color", "value": "{global.dark.color.favorite.200}" }, @@ -26259,11 +26691,13 @@ ] }, "pf-t--global--color--favorite--clicked": { + "description": "Use as the clicked state for elements that have been favorited", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for elements that have been favorited", "type": "color", "value": "{global.dark.color.favorite.200}" }, @@ -26428,11 +26862,13 @@ ] }, "pf-t--global--color--status--success--default": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "#87bb62", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.success.100}" }, @@ -26504,11 +26940,13 @@ ] }, "pf-t--global--color--status--success--hover": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "#afdc8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "{global.dark.color.status.success.200}" }, @@ -26580,11 +27018,13 @@ ] }, "pf-t--global--color--status--success--clicked": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "#afdc8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "{global.dark.color.status.success.200}" }, @@ -26800,11 +27240,13 @@ ] }, "pf-t--global--color--status--warning--default": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", "value": "#ffcc17", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.warning.100}" }, @@ -26876,11 +27318,13 @@ ] }, "pf-t--global--color--status--warning--hover": { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", "value": "{global.dark.color.status.warning.200}" }, @@ -26952,11 +27396,13 @@ ] }, "pf-t--global--color--status--warning--clicked": { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", "value": "{global.dark.color.status.warning.200}" }, @@ -27172,11 +27618,13 @@ ] }, "pf-t--global--color--status--danger--default": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "#f0561d", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.danger.100}" }, @@ -27248,11 +27696,13 @@ ] }, "pf-t--global--color--status--danger--hover": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "#f4784a", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "{global.dark.color.status.danger.200}" }, @@ -27324,11 +27774,13 @@ ] }, "pf-t--global--color--status--danger--clicked": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "#f4784a", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "{global.dark.color.status.danger.200}" }, @@ -27496,11 +27948,13 @@ ] }, "pf-t--global--color--status--info--default": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "#b6a6e9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.info.100}" }, @@ -27572,11 +28026,13 @@ ] }, "pf-t--global--color--status--info--hover": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "{global.dark.color.status.info.200}" }, @@ -27648,11 +28104,13 @@ ] }, "pf-t--global--color--status--info--clicked": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "{global.dark.color.status.info.200}" }, @@ -27820,11 +28278,13 @@ ] }, "pf-t--global--color--status--custom--default": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#63bdbd", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.dark.color.status.custom.100}" }, @@ -27896,11 +28356,13 @@ ] }, "pf-t--global--color--status--custom--hover": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#9ad8d8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.dark.color.status.custom.200}" }, @@ -27972,11 +28434,13 @@ ] }, "pf-t--global--color--status--custom--clicked": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#9ad8d8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.dark.color.status.custom.200}" }, @@ -28047,16 +28511,18 @@ } ] }, - "pf-t--global--color--status--unread--default--default": { + "pf-t--global--color--status--unread--default": { + "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#92c5f9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.color.brand.default}" }, - "name": "pf-t--global--color--status--unread--default--default", + "name": "pf-t--global--color--status--unread--default", "attributes": { "category": "global", "type": "color", @@ -28069,16 +28535,17 @@ "color", "status", "unread", - "default", "default" ], "references": [ { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", "value": "#92c5f9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", "value": "{global.dark.color.brand.100}" }, @@ -28148,38 +28615,41 @@ } ] }, - "pf-t--global--color--status--unread--default--hover": { + "pf-t--global--color--status--unread--hover": { + "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.color.brand.hover}" }, - "name": "pf-t--global--color--status--unread--default--hover", + "name": "pf-t--global--color--status--unread--hover", "attributes": { "category": "global", "type": "color", "item": "status", "subitem": "unread", - "state": "default" + "state": "hover" }, "path": [ "global", "color", "status", "unread", - "default", "hover" ], "references": [ { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", "value": "{global.dark.color.brand.200}" }, @@ -28249,38 +28719,41 @@ } ] }, - "pf-t--global--color--status--unread--default--clicked": { + "pf-t--global--color--status--unread--clicked": { + "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.color.brand.clicked}" }, - "name": "pf-t--global--color--status--unread--default--clicked", + "name": "pf-t--global--color--status--unread--clicked", "attributes": { "category": "global", "type": "color", "item": "status", "subitem": "unread", - "state": "default" + "state": "clicked" }, "path": [ "global", "color", "status", "unread", - "default", "clicked" ], "references": [ { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", "value": "{global.dark.color.brand.200}" }, @@ -28351,11 +28824,13 @@ ] }, "pf-t--global--color--status--unread--attention--default": { + "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#f0561d", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.color.status.danger.default}" }, @@ -28377,11 +28852,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "#f0561d", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.danger.100}" }, @@ -28455,11 +28932,13 @@ ] }, "pf-t--global--color--status--unread--attention--clicked": { + "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#f4784a", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.color.status.danger.clicked}" }, @@ -28481,11 +28960,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "#f4784a", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "{global.dark.color.status.danger.200}" }, @@ -28559,11 +29040,13 @@ ] }, "pf-t--global--color--status--unread--attention--hover": { + "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#f4784a", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.color.status.danger.hover}" }, @@ -28585,11 +29068,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "#f4784a", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "{global.dark.color.status.danger.200}" }, @@ -28663,11 +29148,13 @@ ] }, "pf-t--global--color--status--read--on-secondary": { + "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", "type": "color", "value": "#383838", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", "type": "color", "value": "{global.background.color.control.default}" }, @@ -28767,11 +29254,13 @@ ] }, "pf-t--global--color--status--read--on-primary": { + "description": "Use as the default color for elements that convey a read status and are placed on a primary background", "type": "color", "value": "#151515", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for elements that convey a read status and are placed on a primary background", "type": "color", "value": "{global.background.color.secondary.default}" }, @@ -29303,11 +29792,13 @@ ] }, "pf-t--global--color--nonstatus--red--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "#f9a8a8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.dark.color.nonstatus.red.100}" }, @@ -29379,11 +29870,13 @@ ] }, "pf-t--global--color--nonstatus--red--hover": { + "description": "Use as the hover state color for any element that uses the non status red background color.", "type": "color", "value": "#fbc5c5", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for any element that uses the non status red background color.", "type": "color", "value": "{global.dark.color.nonstatus.red.200}" }, @@ -29455,11 +29948,13 @@ ] }, "pf-t--global--color--nonstatus--red--clicked": { + "description": "Use as the clicked state color for any element that uses the non status red background color.", "type": "color", "value": "#fbc5c5", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that uses the non status red background color.", "type": "color", "value": "{global.dark.color.nonstatus.red.200}" }, @@ -29675,11 +30170,13 @@ ] }, "pf-t--global--color--nonstatus--orangered--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "#f89b78", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.dark.color.nonstatus.orangered.100}" }, @@ -29751,11 +30248,13 @@ ] }, "pf-t--global--color--nonstatus--orangered--hover": { + "description": "Use as the hover state color for any element that uses the non status orange-red background color.", "type": "color", "value": "#fbbea8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for any element that uses the non status orange-red background color.", "type": "color", "value": "{global.dark.color.nonstatus.orangered.200}" }, @@ -29827,11 +30326,13 @@ ] }, "pf-t--global--color--nonstatus--orangered--clicked": { + "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", "type": "color", "value": "#fbbea8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", "type": "color", "value": "{global.dark.color.nonstatus.orangered.200}" }, @@ -30047,11 +30548,13 @@ ] }, "pf-t--global--color--nonstatus--orange--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "#f8ae54", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.dark.color.nonstatus.orange.100}" }, @@ -30123,11 +30626,13 @@ ] }, "pf-t--global--color--nonstatus--orange--hover": { + "description": "Use as the hover state color for any element that uses the non status orange background color.", "type": "color", "value": "#fccb8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for any element that uses the non status orange background color.", "type": "color", "value": "{global.dark.color.nonstatus.orange.200}" }, @@ -30199,11 +30704,13 @@ ] }, "pf-t--global--color--nonstatus--orange--clicked": { + "description": "Use as the clicked state color for any element that uses the non status orange background color.", "type": "color", "value": "#fccb8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that uses the non status orange background color.", "type": "color", "value": "{global.dark.color.nonstatus.orange.200}" }, @@ -30274,7 +30781,7 @@ } ] }, - "pf-t--global--color--nonstatus--gold--100": { + "pf-t--global--color--nonstatus--yellow--100": { "type": "color", "value": "#ffe072", "filePath": "tokens/default/base.json", @@ -30283,19 +30790,19 @@ "type": "color", "value": "{color.yellow.20}" }, - "name": "pf-t--global--color--nonstatus--gold--100", + "name": "pf-t--global--color--nonstatus--yellow--100", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "gold", + "subitem": "yellow", "state": "100" }, "path": [ "global", "color", "nonstatus", - "gold", + "yellow", "100" ], "references": [ @@ -30322,7 +30829,7 @@ } ] }, - "pf-t--global--color--nonstatus--gold--200": { + "pf-t--global--color--nonstatus--yellow--200": { "type": "color", "value": "#ffcc17", "filePath": "tokens/default/base.json", @@ -30331,19 +30838,19 @@ "type": "color", "value": "{color.yellow.30}" }, - "name": "pf-t--global--color--nonstatus--gold--200", + "name": "pf-t--global--color--nonstatus--yellow--200", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "gold", + "subitem": "yellow", "state": "200" }, "path": [ "global", "color", "nonstatus", - "gold", + "yellow", "200" ], "references": [ @@ -30370,7 +30877,7 @@ } ] }, - "pf-t--global--color--nonstatus--gold--300": { + "pf-t--global--color--nonstatus--yellow--300": { "type": "color", "value": "#dca614", "filePath": "tokens/default/base.json", @@ -30379,19 +30886,19 @@ "type": "color", "value": "{color.yellow.40}" }, - "name": "pf-t--global--color--nonstatus--gold--300", + "name": "pf-t--global--color--nonstatus--yellow--300", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "gold", + "subitem": "yellow", "state": "300" }, "path": [ "global", "color", "nonstatus", - "gold", + "yellow", "300" ], "references": [ @@ -30418,219 +30925,77 @@ } ] }, - "pf-t--global--color--nonstatus--green--100": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--color--nonstatus--green--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--green--200": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--green--300": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--color--nonstatus--green--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--green--default": { + "pf-t--global--color--nonstatus--yellow--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#afdc8f", + "value": "#ffcc17", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.green.100}" + "value": "{global.dark.color.nonstatus.yellow.100}" }, - "name": "pf-t--global--color--nonstatus--green--default", + "name": "pf-t--global--color--nonstatus--yellow--default", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "green", + "subitem": "yellow", "state": "default" }, "path": [ "global", "color", "nonstatus", - "green", + "yellow", "default" ], "references": [ { "type": "color", - "value": "#afdc8f", + "value": "#ffcc17", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.30}" + "value": "{color.yellow.30}" }, - "name": "pf-t--global--dark--color--nonstatus--green--100", + "name": "pf-t--global--dark--color--nonstatus--yellow--100", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "green" + "state": "yellow" }, "path": [ "global", "dark", "color", "nonstatus", - "green", + "yellow", "100" ], "references": [ { "type": "color", - "value": "#afdc8f", + "value": "#ffcc17", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#afdc8f" + "value": "#ffcc17" }, - "name": "pf-t--color--green--30", + "name": "pf-t--color--yellow--30", "attributes": { "category": "color", - "type": "green", + "type": "yellow", "item": "30" }, "path": [ "color", - "green", + "yellow", "30" ] } @@ -30638,75 +31003,77 @@ } ] }, - "pf-t--global--color--nonstatus--green--hover": { + "pf-t--global--color--nonstatus--yellow--hover": { + "description": "Use as the hover state color for any element that uses the non status yellow background color.", "type": "color", - "value": "#d1f1bb", + "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for any element that uses the non status yellow background color.", "type": "color", - "value": "{global.dark.color.nonstatus.green.200}" + "value": "{global.dark.color.nonstatus.yellow.200}" }, - "name": "pf-t--global--color--nonstatus--green--hover", + "name": "pf-t--global--color--nonstatus--yellow--hover", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "green", + "subitem": "yellow", "state": "hover" }, "path": [ "global", "color", "nonstatus", - "green", + "yellow", "hover" ], "references": [ { "type": "color", - "value": "#d1f1bb", + "value": "#ffe072", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.20}" + "value": "{color.yellow.20}" }, - "name": "pf-t--global--dark--color--nonstatus--green--200", + "name": "pf-t--global--dark--color--nonstatus--yellow--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "green" + "state": "yellow" }, "path": [ "global", "dark", "color", "nonstatus", - "green", + "yellow", "200" ], "references": [ { "type": "color", - "value": "#d1f1bb", + "value": "#ffe072", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#d1f1bb" + "value": "#ffe072" }, - "name": "pf-t--color--green--20", + "name": "pf-t--color--yellow--20", "attributes": { "category": "color", - "type": "green", + "type": "yellow", "item": "20" }, "path": [ "color", - "green", + "yellow", "20" ] } @@ -30714,75 +31081,77 @@ } ] }, - "pf-t--global--color--nonstatus--green--clicked": { + "pf-t--global--color--nonstatus--yellow--clicked": { + "description": "Use as the clicked state color for any element that uses the non status yellow background color.", "type": "color", - "value": "#d1f1bb", + "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that uses the non status yellow background color.", "type": "color", - "value": "{global.dark.color.nonstatus.green.200}" + "value": "{global.dark.color.nonstatus.yellow.200}" }, - "name": "pf-t--global--color--nonstatus--green--clicked", + "name": "pf-t--global--color--nonstatus--yellow--clicked", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "green", + "subitem": "yellow", "state": "clicked" }, "path": [ "global", "color", "nonstatus", - "green", + "yellow", "clicked" ], "references": [ { "type": "color", - "value": "#d1f1bb", + "value": "#ffe072", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.20}" + "value": "{color.yellow.20}" }, - "name": "pf-t--global--dark--color--nonstatus--green--200", + "name": "pf-t--global--dark--color--nonstatus--yellow--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "green" + "state": "yellow" }, "path": [ "global", "dark", "color", "nonstatus", - "green", + "yellow", "200" ], "references": [ { "type": "color", - "value": "#d1f1bb", + "value": "#ffe072", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#d1f1bb" + "value": "#ffe072" }, - "name": "pf-t--color--green--20", + "name": "pf-t--color--yellow--20", "attributes": { "category": "color", - "type": "green", + "type": "yellow", "item": "20" }, "path": [ "color", - "green", + "yellow", "20" ] } @@ -30790,363 +31159,221 @@ } ] }, - "pf-t--global--color--nonstatus--cyan--100": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--color--nonstatus--cyan--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "cyan", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "cyan", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--cyan--200": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--color--nonstatus--cyan--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "cyan", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "cyan", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--cyan--300": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--color--nonstatus--cyan--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "cyan", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "cyan", - "300" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--blue--100": { + "pf-t--global--color--nonstatus--green--100": { "type": "color", - "value": "#b9dafc", + "value": "#d1f1bb", "filePath": "tokens/default/base.json", "isSource": false, "original": { "type": "color", - "value": "{color.blue.20}" + "value": "{color.green.20}" }, - "name": "pf-t--global--color--nonstatus--blue--100", + "name": "pf-t--global--color--nonstatus--green--100", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "blue", + "subitem": "green", "state": "100" }, "path": [ "global", "color", "nonstatus", - "blue", + "green", "100" ], "references": [ { "type": "color", - "value": "#b9dafc", + "value": "#d1f1bb", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b9dafc" + "value": "#d1f1bb" }, - "name": "pf-t--color--blue--20", + "name": "pf-t--color--green--20", "attributes": { "category": "color", - "type": "blue", + "type": "green", "item": "20" }, "path": [ "color", - "blue", + "green", "20" ] } ] }, - "pf-t--global--color--nonstatus--blue--200": { + "pf-t--global--color--nonstatus--green--200": { "type": "color", - "value": "#92c5f9", + "value": "#afdc8f", "filePath": "tokens/default/base.json", "isSource": false, "original": { "type": "color", - "value": "{color.blue.30}" + "value": "{color.green.30}" }, - "name": "pf-t--global--color--nonstatus--blue--200", + "name": "pf-t--global--color--nonstatus--green--200", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "blue", + "subitem": "green", "state": "200" }, "path": [ "global", "color", "nonstatus", - "blue", + "green", "200" ], "references": [ { "type": "color", - "value": "#92c5f9", + "value": "#afdc8f", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#92c5f9" + "value": "#afdc8f" }, - "name": "pf-t--color--blue--30", + "name": "pf-t--color--green--30", "attributes": { "category": "color", - "type": "blue", + "type": "green", "item": "30" }, "path": [ "color", - "blue", + "green", "30" ] } ] }, - "pf-t--global--color--nonstatus--blue--300": { + "pf-t--global--color--nonstatus--green--300": { "type": "color", - "value": "#4394e5", + "value": "#87bb62", "filePath": "tokens/default/base.json", "isSource": false, "original": { "type": "color", - "value": "{color.blue.40}" + "value": "{color.green.40}" }, - "name": "pf-t--global--color--nonstatus--blue--300", + "name": "pf-t--global--color--nonstatus--green--300", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "blue", + "subitem": "green", "state": "300" }, "path": [ "global", "color", "nonstatus", - "blue", + "green", "300" ], "references": [ { "type": "color", - "value": "#4394e5", + "value": "#87bb62", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#4394e5" + "value": "#87bb62" }, - "name": "pf-t--color--blue--40", + "name": "pf-t--color--green--40", "attributes": { "category": "color", - "type": "blue", + "type": "green", "item": "40" }, "path": [ "color", - "blue", + "green", "40" ] } ] }, - "pf-t--global--color--nonstatus--blue--default": { + "pf-t--global--color--nonstatus--green--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#92c5f9", + "value": "#afdc8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.blue.100}" + "value": "{global.dark.color.nonstatus.green.100}" }, - "name": "pf-t--global--color--nonstatus--blue--default", + "name": "pf-t--global--color--nonstatus--green--default", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "blue", + "subitem": "green", "state": "default" }, "path": [ "global", "color", "nonstatus", - "blue", + "green", "default" ], "references": [ { "type": "color", - "value": "#92c5f9", + "value": "#afdc8f", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.30}" + "value": "{color.green.30}" }, - "name": "pf-t--global--dark--color--nonstatus--blue--100", + "name": "pf-t--global--dark--color--nonstatus--green--100", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "blue" + "state": "green" }, "path": [ "global", "dark", "color", "nonstatus", - "blue", + "green", "100" ], "references": [ { "type": "color", - "value": "#92c5f9", + "value": "#afdc8f", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#92c5f9" + "value": "#afdc8f" }, - "name": "pf-t--color--blue--30", + "name": "pf-t--color--green--30", "attributes": { "category": "color", - "type": "blue", + "type": "green", "item": "30" }, "path": [ "color", - "blue", + "green", "30" ] } @@ -31154,75 +31381,77 @@ } ] }, - "pf-t--global--color--nonstatus--blue--hover": { + "pf-t--global--color--nonstatus--green--hover": { + "description": "Use as the hover state color for any element that uses the non status green background color.", "type": "color", - "value": "#b9dafc", + "value": "#d1f1bb", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for any element that uses the non status green background color.", "type": "color", - "value": "{global.dark.color.nonstatus.blue.200}" + "value": "{global.dark.color.nonstatus.green.200}" }, - "name": "pf-t--global--color--nonstatus--blue--hover", + "name": "pf-t--global--color--nonstatus--green--hover", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "blue", + "subitem": "green", "state": "hover" }, "path": [ "global", "color", "nonstatus", - "blue", + "green", "hover" ], "references": [ { "type": "color", - "value": "#b9dafc", + "value": "#d1f1bb", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.20}" + "value": "{color.green.20}" }, - "name": "pf-t--global--dark--color--nonstatus--blue--200", + "name": "pf-t--global--dark--color--nonstatus--green--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "blue" + "state": "green" }, "path": [ "global", "dark", "color", "nonstatus", - "blue", + "green", "200" ], "references": [ { "type": "color", - "value": "#b9dafc", + "value": "#d1f1bb", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b9dafc" + "value": "#d1f1bb" }, - "name": "pf-t--color--blue--20", + "name": "pf-t--color--green--20", "attributes": { "category": "color", - "type": "blue", + "type": "green", "item": "20" }, "path": [ "color", - "blue", + "green", "20" ] } @@ -31230,75 +31459,77 @@ } ] }, - "pf-t--global--color--nonstatus--blue--clicked": { + "pf-t--global--color--nonstatus--green--clicked": { + "description": "Use as the clicked state color for any element that uses the non status green background color.", "type": "color", - "value": "#b9dafc", + "value": "#d1f1bb", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that uses the non status green background color.", "type": "color", - "value": "{global.dark.color.nonstatus.blue.200}" + "value": "{global.dark.color.nonstatus.green.200}" }, - "name": "pf-t--global--color--nonstatus--blue--clicked", + "name": "pf-t--global--color--nonstatus--green--clicked", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "blue", + "subitem": "green", "state": "clicked" }, "path": [ "global", "color", "nonstatus", - "blue", + "green", "clicked" ], "references": [ { "type": "color", - "value": "#b9dafc", + "value": "#d1f1bb", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.20}" + "value": "{color.green.20}" }, - "name": "pf-t--global--dark--color--nonstatus--blue--200", + "name": "pf-t--global--dark--color--nonstatus--green--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "blue" + "state": "green" }, "path": [ "global", "dark", "color", "nonstatus", - "blue", + "green", "200" ], "references": [ { "type": "color", - "value": "#b9dafc", + "value": "#d1f1bb", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b9dafc" + "value": "#d1f1bb" }, - "name": "pf-t--color--blue--20", + "name": "pf-t--color--green--20", "attributes": { "category": "color", - "type": "blue", + "type": "green", "item": "20" }, "path": [ "color", - "blue", + "green", "20" ] } @@ -31306,219 +31537,221 @@ } ] }, - "pf-t--global--color--nonstatus--purple--100": { + "pf-t--global--color--nonstatus--teal--100": { "type": "color", - "value": "#d0c5f4", + "value": "#b9e5e5", "filePath": "tokens/default/base.json", "isSource": false, "original": { "type": "color", - "value": "{color.purple.20}" + "value": "{color.teal.20}" }, - "name": "pf-t--global--color--nonstatus--purple--100", + "name": "pf-t--global--color--nonstatus--teal--100", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "purple", + "subitem": "teal", "state": "100" }, "path": [ "global", "color", "nonstatus", - "purple", + "teal", "100" ], "references": [ { "type": "color", - "value": "#d0c5f4", + "value": "#b9e5e5", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#d0c5f4" + "value": "#b9e5e5" }, - "name": "pf-t--color--purple--20", + "name": "pf-t--color--teal--20", "attributes": { "category": "color", - "type": "purple", + "type": "teal", "item": "20" }, "path": [ "color", - "purple", + "teal", "20" ] } ] }, - "pf-t--global--color--nonstatus--purple--200": { + "pf-t--global--color--nonstatus--teal--200": { "type": "color", - "value": "#b6a6e9", + "value": "#9ad8d8", "filePath": "tokens/default/base.json", "isSource": false, "original": { "type": "color", - "value": "{color.purple.30}" + "value": "{color.teal.30}" }, - "name": "pf-t--global--color--nonstatus--purple--200", + "name": "pf-t--global--color--nonstatus--teal--200", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "purple", + "subitem": "teal", "state": "200" }, "path": [ "global", "color", "nonstatus", - "purple", + "teal", "200" ], "references": [ { "type": "color", - "value": "#b6a6e9", + "value": "#9ad8d8", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b6a6e9" + "value": "#9ad8d8" }, - "name": "pf-t--color--purple--30", + "name": "pf-t--color--teal--30", "attributes": { "category": "color", - "type": "purple", + "type": "teal", "item": "30" }, "path": [ "color", - "purple", + "teal", "30" ] } ] }, - "pf-t--global--color--nonstatus--purple--300": { + "pf-t--global--color--nonstatus--teal--300": { "type": "color", - "value": "#876fd4", + "value": "#63bdbd", "filePath": "tokens/default/base.json", "isSource": false, "original": { "type": "color", - "value": "{color.purple.40}" + "value": "{color.teal.40}" }, - "name": "pf-t--global--color--nonstatus--purple--300", + "name": "pf-t--global--color--nonstatus--teal--300", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "purple", + "subitem": "teal", "state": "300" }, "path": [ "global", "color", "nonstatus", - "purple", + "teal", "300" ], "references": [ { "type": "color", - "value": "#876fd4", + "value": "#63bdbd", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#876fd4" + "value": "#63bdbd" }, - "name": "pf-t--color--purple--40", + "name": "pf-t--color--teal--40", "attributes": { "category": "color", - "type": "purple", + "type": "teal", "item": "40" }, "path": [ "color", - "purple", + "teal", "40" ] } ] }, - "pf-t--global--color--nonstatus--purple--default": { + "pf-t--global--color--nonstatus--teal--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#b6a6e9", + "value": "#9ad8d8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.purple.100}" + "value": "{global.dark.color.nonstatus.teal.100}" }, - "name": "pf-t--global--color--nonstatus--purple--default", + "name": "pf-t--global--color--nonstatus--teal--default", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "purple", + "subitem": "teal", "state": "default" }, "path": [ "global", "color", "nonstatus", - "purple", + "teal", "default" ], "references": [ { "type": "color", - "value": "#b6a6e9", + "value": "#9ad8d8", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.30}" + "value": "{color.teal.30}" }, - "name": "pf-t--global--dark--color--nonstatus--purple--100", + "name": "pf-t--global--dark--color--nonstatus--teal--100", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "purple" + "state": "teal" }, "path": [ "global", "dark", "color", "nonstatus", - "purple", + "teal", "100" ], "references": [ { "type": "color", - "value": "#b6a6e9", + "value": "#9ad8d8", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b6a6e9" + "value": "#9ad8d8" }, - "name": "pf-t--color--purple--30", + "name": "pf-t--color--teal--30", "attributes": { "category": "color", - "type": "purple", + "type": "teal", "item": "30" }, "path": [ "color", - "purple", + "teal", "30" ] } @@ -31526,75 +31759,77 @@ } ] }, - "pf-t--global--color--nonstatus--purple--hover": { + "pf-t--global--color--nonstatus--teal--hover": { + "description": "Use as the hover state color for any element that uses the non status teal background color.", "type": "color", - "value": "#d0c5f4", + "value": "#b9e5e5", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for any element that uses the non status teal background color.", "type": "color", - "value": "{global.dark.color.nonstatus.purple.200}" + "value": "{global.dark.color.nonstatus.teal.200}" }, - "name": "pf-t--global--color--nonstatus--purple--hover", + "name": "pf-t--global--color--nonstatus--teal--hover", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "purple", + "subitem": "teal", "state": "hover" }, "path": [ "global", "color", "nonstatus", - "purple", + "teal", "hover" ], "references": [ { "type": "color", - "value": "#d0c5f4", + "value": "#b9e5e5", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.20}" + "value": "{color.teal.20}" }, - "name": "pf-t--global--dark--color--nonstatus--purple--200", + "name": "pf-t--global--dark--color--nonstatus--teal--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "purple" + "state": "teal" }, "path": [ "global", "dark", "color", "nonstatus", - "purple", + "teal", "200" ], "references": [ { "type": "color", - "value": "#d0c5f4", + "value": "#b9e5e5", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#d0c5f4" + "value": "#b9e5e5" }, - "name": "pf-t--color--purple--20", + "name": "pf-t--color--teal--20", "attributes": { "category": "color", - "type": "purple", + "type": "teal", "item": "20" }, "path": [ "color", - "purple", + "teal", "20" ] } @@ -31602,75 +31837,77 @@ } ] }, - "pf-t--global--color--nonstatus--purple--clicked": { + "pf-t--global--color--nonstatus--teal--clicked": { + "description": "Use as the clicked state color for any element that uses the non status teal background color.", "type": "color", - "value": "#d0c5f4", + "value": "#b9e5e5", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that uses the non status teal background color.", "type": "color", - "value": "{global.dark.color.nonstatus.purple.200}" + "value": "{global.dark.color.nonstatus.teal.200}" }, - "name": "pf-t--global--color--nonstatus--purple--clicked", + "name": "pf-t--global--color--nonstatus--teal--clicked", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "purple", + "subitem": "teal", "state": "clicked" }, "path": [ "global", "color", "nonstatus", - "purple", + "teal", "clicked" ], "references": [ { "type": "color", - "value": "#d0c5f4", + "value": "#b9e5e5", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.20}" + "value": "{color.teal.20}" }, - "name": "pf-t--global--dark--color--nonstatus--purple--200", + "name": "pf-t--global--dark--color--nonstatus--teal--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "purple" + "state": "teal" }, "path": [ "global", "dark", "color", "nonstatus", - "purple", + "teal", "200" ], "references": [ { "type": "color", - "value": "#d0c5f4", + "value": "#b9e5e5", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#d0c5f4" + "value": "#b9e5e5" }, - "name": "pf-t--color--purple--20", + "name": "pf-t--color--teal--20", "attributes": { "category": "color", - "type": "purple", + "type": "teal", "item": "20" }, "path": [ "color", - "purple", + "teal", "20" ] } @@ -31678,219 +31915,221 @@ } ] }, - "pf-t--global--color--nonstatus--gray--100": { + "pf-t--global--color--nonstatus--blue--100": { "type": "color", - "value": "#e0e0e0", + "value": "#b9dafc", "filePath": "tokens/default/base.json", "isSource": false, "original": { "type": "color", - "value": "{color.gray.20}" + "value": "{color.blue.20}" }, - "name": "pf-t--global--color--nonstatus--gray--100", + "name": "pf-t--global--color--nonstatus--blue--100", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "gray", + "subitem": "blue", "state": "100" }, "path": [ "global", "color", "nonstatus", - "gray", + "blue", "100" ], "references": [ { "type": "color", - "value": "#e0e0e0", + "value": "#b9dafc", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#e0e0e0" + "value": "#b9dafc" }, - "name": "pf-t--color--gray--20", + "name": "pf-t--color--blue--20", "attributes": { "category": "color", - "type": "gray", + "type": "blue", "item": "20" }, "path": [ "color", - "gray", + "blue", "20" ] } ] }, - "pf-t--global--color--nonstatus--gray--200": { + "pf-t--global--color--nonstatus--blue--200": { "type": "color", - "value": "#c7c7c7", + "value": "#92c5f9", "filePath": "tokens/default/base.json", "isSource": false, "original": { "type": "color", - "value": "{color.gray.30}" + "value": "{color.blue.30}" }, - "name": "pf-t--global--color--nonstatus--gray--200", + "name": "pf-t--global--color--nonstatus--blue--200", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "gray", + "subitem": "blue", "state": "200" }, "path": [ "global", "color", "nonstatus", - "gray", + "blue", "200" ], "references": [ { "type": "color", - "value": "#c7c7c7", + "value": "#92c5f9", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#c7c7c7" + "value": "#92c5f9" }, - "name": "pf-t--color--gray--30", + "name": "pf-t--color--blue--30", "attributes": { "category": "color", - "type": "gray", + "type": "blue", "item": "30" }, "path": [ "color", - "gray", + "blue", "30" ] } ] }, - "pf-t--global--color--nonstatus--gray--300": { + "pf-t--global--color--nonstatus--blue--300": { "type": "color", - "value": "#a3a3a3", + "value": "#4394e5", "filePath": "tokens/default/base.json", "isSource": false, "original": { "type": "color", - "value": "{color.gray.40}" + "value": "{color.blue.40}" }, - "name": "pf-t--global--color--nonstatus--gray--300", + "name": "pf-t--global--color--nonstatus--blue--300", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "gray", + "subitem": "blue", "state": "300" }, "path": [ "global", "color", "nonstatus", - "gray", + "blue", "300" ], "references": [ { "type": "color", - "value": "#a3a3a3", + "value": "#4394e5", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#a3a3a3" + "value": "#4394e5" }, - "name": "pf-t--color--gray--40", + "name": "pf-t--color--blue--40", "attributes": { "category": "color", - "type": "gray", + "type": "blue", "item": "40" }, "path": [ "color", - "gray", + "blue", "40" ] } ] }, - "pf-t--global--color--nonstatus--gray--default": { + "pf-t--global--color--nonstatus--blue--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#c7c7c7", + "value": "#92c5f9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.gray.100}" + "value": "{global.dark.color.nonstatus.blue.100}" }, - "name": "pf-t--global--color--nonstatus--gray--default", + "name": "pf-t--global--color--nonstatus--blue--default", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "gray", + "subitem": "blue", "state": "default" }, "path": [ "global", "color", "nonstatus", - "gray", + "blue", "default" ], "references": [ { "type": "color", - "value": "#c7c7c7", + "value": "#92c5f9", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.30}" + "value": "{color.blue.30}" }, - "name": "pf-t--global--dark--color--nonstatus--gray--100", + "name": "pf-t--global--dark--color--nonstatus--blue--100", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "gray" + "state": "blue" }, "path": [ "global", "dark", "color", "nonstatus", - "gray", + "blue", "100" ], "references": [ { "type": "color", - "value": "#c7c7c7", + "value": "#92c5f9", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#c7c7c7" + "value": "#92c5f9" }, - "name": "pf-t--color--gray--30", + "name": "pf-t--color--blue--30", "attributes": { "category": "color", - "type": "gray", + "type": "blue", "item": "30" }, "path": [ "color", - "gray", + "blue", "30" ] } @@ -31898,75 +32137,77 @@ } ] }, - "pf-t--global--color--nonstatus--gray--hover": { + "pf-t--global--color--nonstatus--blue--hover": { + "description": "Use as the hover state color for any element that uses the non status blue background color.", "type": "color", - "value": "#e0e0e0", + "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for any element that uses the non status blue background color.", "type": "color", - "value": "{global.dark.color.nonstatus.gray.200}" + "value": "{global.dark.color.nonstatus.blue.200}" }, - "name": "pf-t--global--color--nonstatus--gray--hover", + "name": "pf-t--global--color--nonstatus--blue--hover", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "gray", + "subitem": "blue", "state": "hover" }, "path": [ "global", "color", "nonstatus", - "gray", + "blue", "hover" ], "references": [ { "type": "color", - "value": "#e0e0e0", + "value": "#b9dafc", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.20}" + "value": "{color.blue.20}" }, - "name": "pf-t--global--dark--color--nonstatus--gray--200", + "name": "pf-t--global--dark--color--nonstatus--blue--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "gray" + "state": "blue" }, "path": [ "global", "dark", "color", "nonstatus", - "gray", + "blue", "200" ], "references": [ { "type": "color", - "value": "#e0e0e0", + "value": "#b9dafc", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#e0e0e0" + "value": "#b9dafc" }, - "name": "pf-t--color--gray--20", + "name": "pf-t--color--blue--20", "attributes": { "category": "color", - "type": "gray", + "type": "blue", "item": "20" }, "path": [ "color", - "gray", + "blue", "20" ] } @@ -31974,75 +32215,77 @@ } ] }, - "pf-t--global--color--nonstatus--gray--clicked": { + "pf-t--global--color--nonstatus--blue--clicked": { + "description": "Use as the clicked state color for any element that uses the non status blue background color.", "type": "color", - "value": "#e0e0e0", + "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that uses the non status blue background color.", "type": "color", - "value": "{global.dark.color.nonstatus.gray.200}" + "value": "{global.dark.color.nonstatus.blue.200}" }, - "name": "pf-t--global--color--nonstatus--gray--clicked", + "name": "pf-t--global--color--nonstatus--blue--clicked", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "gray", + "subitem": "blue", "state": "clicked" }, "path": [ "global", "color", "nonstatus", - "gray", + "blue", "clicked" ], "references": [ { "type": "color", - "value": "#e0e0e0", + "value": "#b9dafc", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.20}" + "value": "{color.blue.20}" }, - "name": "pf-t--global--dark--color--nonstatus--gray--200", + "name": "pf-t--global--dark--color--nonstatus--blue--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "gray" + "state": "blue" }, "path": [ "global", "dark", "color", "nonstatus", - "gray", + "blue", "200" ], "references": [ { "type": "color", - "value": "#e0e0e0", + "value": "#b9dafc", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#e0e0e0" + "value": "#b9dafc" }, - "name": "pf-t--color--gray--20", + "name": "pf-t--color--blue--20", "attributes": { "category": "color", - "type": "gray", + "type": "blue", "item": "20" }, "path": [ "color", - "gray", + "blue", "20" ] } @@ -32050,75 +32293,221 @@ } ] }, - "pf-t--global--color--nonstatus--yellow--default": { + "pf-t--global--color--nonstatus--purple--100": { "type": "color", - "value": "#ffcc17", + "value": "#d0c5f4", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--200": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--300": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--global--color--nonstatus--purple--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#b6a6e9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.gold.100}" + "value": "{global.dark.color.nonstatus.purple.100}" }, - "name": "pf-t--global--color--nonstatus--yellow--default", + "name": "pf-t--global--color--nonstatus--purple--default", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "yellow", + "subitem": "purple", "state": "default" }, "path": [ "global", "color", "nonstatus", - "yellow", + "purple", "default" ], "references": [ { "type": "color", - "value": "#ffcc17", + "value": "#b6a6e9", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.30}" + "value": "{color.purple.30}" }, - "name": "pf-t--global--dark--color--nonstatus--gold--100", + "name": "pf-t--global--dark--color--nonstatus--purple--100", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "gold" + "state": "purple" }, "path": [ "global", "dark", "color", "nonstatus", - "gold", + "purple", "100" ], "references": [ { "type": "color", - "value": "#ffcc17", + "value": "#b6a6e9", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#ffcc17" + "value": "#b6a6e9" }, - "name": "pf-t--color--yellow--30", + "name": "pf-t--color--purple--30", "attributes": { "category": "color", - "type": "yellow", + "type": "purple", "item": "30" }, "path": [ "color", - "yellow", + "purple", "30" ] } @@ -32126,75 +32515,77 @@ } ] }, - "pf-t--global--color--nonstatus--yellow--hover": { + "pf-t--global--color--nonstatus--purple--hover": { + "description": "Use as the hover state color for any element that uses the non status purple background color.", "type": "color", - "value": "#ffe072", + "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for any element that uses the non status purple background color.", "type": "color", - "value": "{global.dark.color.nonstatus.gold.200}" + "value": "{global.dark.color.nonstatus.purple.200}" }, - "name": "pf-t--global--color--nonstatus--yellow--hover", + "name": "pf-t--global--color--nonstatus--purple--hover", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "yellow", + "subitem": "purple", "state": "hover" }, "path": [ "global", "color", "nonstatus", - "yellow", + "purple", "hover" ], "references": [ { "type": "color", - "value": "#ffe072", + "value": "#d0c5f4", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.20}" + "value": "{color.purple.20}" }, - "name": "pf-t--global--dark--color--nonstatus--gold--200", + "name": "pf-t--global--dark--color--nonstatus--purple--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "gold" + "state": "purple" }, "path": [ "global", "dark", "color", "nonstatus", - "gold", + "purple", "200" ], "references": [ { "type": "color", - "value": "#ffe072", + "value": "#d0c5f4", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#ffe072" + "value": "#d0c5f4" }, - "name": "pf-t--color--yellow--20", + "name": "pf-t--color--purple--20", "attributes": { "category": "color", - "type": "yellow", + "type": "purple", "item": "20" }, "path": [ "color", - "yellow", + "purple", "20" ] } @@ -32202,75 +32593,77 @@ } ] }, - "pf-t--global--color--nonstatus--yellow--clicked": { + "pf-t--global--color--nonstatus--purple--clicked": { + "description": "Use as the clicked state color for any element that uses the non status purple background color.", "type": "color", - "value": "#ffe072", + "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that uses the non status purple background color.", "type": "color", - "value": "{global.dark.color.nonstatus.gold.200}" + "value": "{global.dark.color.nonstatus.purple.200}" }, - "name": "pf-t--global--color--nonstatus--yellow--clicked", + "name": "pf-t--global--color--nonstatus--purple--clicked", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "yellow", + "subitem": "purple", "state": "clicked" }, "path": [ "global", "color", "nonstatus", - "yellow", + "purple", "clicked" ], "references": [ { "type": "color", - "value": "#ffe072", + "value": "#d0c5f4", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.20}" + "value": "{color.purple.20}" }, - "name": "pf-t--global--dark--color--nonstatus--gold--200", + "name": "pf-t--global--dark--color--nonstatus--purple--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "gold" + "state": "purple" }, "path": [ "global", "dark", "color", "nonstatus", - "gold", + "purple", "200" ], "references": [ { "type": "color", - "value": "#ffe072", + "value": "#d0c5f4", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#ffe072" + "value": "#d0c5f4" }, - "name": "pf-t--color--yellow--20", + "name": "pf-t--color--purple--20", "attributes": { "category": "color", - "type": "yellow", + "type": "purple", "item": "20" }, "path": [ "color", - "yellow", + "purple", "20" ] } @@ -32278,75 +32671,221 @@ } ] }, - "pf-t--global--color--nonstatus--teal--default": { + "pf-t--global--color--nonstatus--gray--100": { "type": "color", - "value": "#9ad8d8", + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--200": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--300": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--nonstatus--gray--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "300" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#c7c7c7", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.cyan.100}" + "value": "{global.dark.color.nonstatus.gray.100}" }, - "name": "pf-t--global--color--nonstatus--teal--default", + "name": "pf-t--global--color--nonstatus--gray--default", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "teal", + "subitem": "gray", "state": "default" }, "path": [ "global", "color", "nonstatus", - "teal", + "gray", "default" ], "references": [ { "type": "color", - "value": "#9ad8d8", + "value": "#c7c7c7", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.30}" + "value": "{color.gray.30}" }, - "name": "pf-t--global--dark--color--nonstatus--cyan--100", + "name": "pf-t--global--dark--color--nonstatus--gray--100", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "cyan" + "state": "gray" }, "path": [ "global", "dark", "color", "nonstatus", - "cyan", + "gray", "100" ], "references": [ { "type": "color", - "value": "#9ad8d8", + "value": "#c7c7c7", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#9ad8d8" + "value": "#c7c7c7" }, - "name": "pf-t--color--teal--30", + "name": "pf-t--color--gray--30", "attributes": { "category": "color", - "type": "teal", + "type": "gray", "item": "30" }, "path": [ "color", - "teal", + "gray", "30" ] } @@ -32354,75 +32893,77 @@ } ] }, - "pf-t--global--color--nonstatus--teal--hover": { + "pf-t--global--color--nonstatus--gray--hover": { + "description": "Use as the hover state color for any element that uses the non status gray background color.", "type": "color", - "value": "#b9e5e5", + "value": "#e0e0e0", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for any element that uses the non status gray background color.", "type": "color", - "value": "{global.dark.color.nonstatus.cyan.200}" + "value": "{global.dark.color.nonstatus.gray.200}" }, - "name": "pf-t--global--color--nonstatus--teal--hover", + "name": "pf-t--global--color--nonstatus--gray--hover", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "teal", + "subitem": "gray", "state": "hover" }, "path": [ "global", "color", "nonstatus", - "teal", + "gray", "hover" ], "references": [ { "type": "color", - "value": "#b9e5e5", + "value": "#e0e0e0", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.20}" + "value": "{color.gray.20}" }, - "name": "pf-t--global--dark--color--nonstatus--cyan--200", + "name": "pf-t--global--dark--color--nonstatus--gray--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "cyan" + "state": "gray" }, "path": [ "global", "dark", "color", "nonstatus", - "cyan", + "gray", "200" ], "references": [ { "type": "color", - "value": "#b9e5e5", + "value": "#e0e0e0", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b9e5e5" + "value": "#e0e0e0" }, - "name": "pf-t--color--teal--20", + "name": "pf-t--color--gray--20", "attributes": { "category": "color", - "type": "teal", + "type": "gray", "item": "20" }, "path": [ "color", - "teal", + "gray", "20" ] } @@ -32430,75 +32971,77 @@ } ] }, - "pf-t--global--color--nonstatus--teal--clicked": { + "pf-t--global--color--nonstatus--gray--clicked": { + "description": "Use as the clicked state color for any element that uses the non status gray background color.", "type": "color", - "value": "#b9e5e5", + "value": "#e0e0e0", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that uses the non status gray background color.", "type": "color", - "value": "{global.dark.color.nonstatus.cyan.200}" + "value": "{global.dark.color.nonstatus.gray.200}" }, - "name": "pf-t--global--color--nonstatus--teal--clicked", + "name": "pf-t--global--color--nonstatus--gray--clicked", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "teal", + "subitem": "gray", "state": "clicked" }, "path": [ "global", "color", "nonstatus", - "teal", + "gray", "clicked" ], "references": [ { "type": "color", - "value": "#b9e5e5", + "value": "#e0e0e0", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.20}" + "value": "{color.gray.20}" }, - "name": "pf-t--global--dark--color--nonstatus--cyan--200", + "name": "pf-t--global--dark--color--nonstatus--gray--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "cyan" + "state": "gray" }, "path": [ "global", "dark", "color", "nonstatus", - "cyan", + "gray", "200" ], "references": [ { "type": "color", - "value": "#b9e5e5", + "value": "#e0e0e0", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b9e5e5" + "value": "#e0e0e0" }, - "name": "pf-t--color--teal--20", + "name": "pf-t--color--gray--20", "attributes": { "category": "color", - "type": "teal", + "type": "gray", "item": "20" }, "path": [ "color", - "teal", + "gray", "20" ] } @@ -32508,12 +33051,12 @@ }, "pf-t--global--text--color--100": { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": false, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -32531,23 +33074,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -32833,11 +33376,13 @@ ] }, "pf-t--global--text--color--link--default": { + "description": "Use as the default text color for links.", "type": "color", "value": "#b9dafc", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default text color for links.", "type": "color", "value": "{global.dark.text.color.link.100}" }, @@ -32909,11 +33454,13 @@ ] }, "pf-t--global--text--color--link--hover": { + "description": "Use as the hover state text color for links.", "type": "color", "value": "#e0f0ff", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state text color for links.", "type": "color", "value": "{global.dark.text.color.link.200}" }, @@ -32984,76 +33531,309 @@ } ] }, - "pf-t--global--text--color--link--visited": { + "pf-t--global--text--color--link--visited": { + "description": "Use as the color to indicate that a link has been visited.", + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color to indicate that a link has been visited.", + "type": "color", + "value": "{global.dark.text.color.link.300}" + }, + "name": "pf-t--global--text--color--link--visited", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "visited" + }, + "path": [ + "global", + "text", + "color", + "link", + "visited" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--text--color--link--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--default": { + "description": "Use as the default color for branded text.", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for branded text.", + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--text--color--brand--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--hover": { + "description": "Use as the hover state color for branded text.", + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for branded text.", + "type": "color", + "value": "{global.dark.color.brand.300}" + }, + "name": "pf-t--global--text--color--brand--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--brand--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--clicked": { + "description": "Use as the clicked state color for branded text.", "type": "color", - "value": "#b6a6e9", + "value": "#e0f0ff", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for branded text.", "type": "color", - "value": "{global.dark.text.color.link.300}" + "value": "{global.dark.color.brand.300}" }, - "name": "pf-t--global--text--color--link--visited", + "name": "pf-t--global--text--color--brand--clicked", "attributes": { "category": "global", "type": "text", "item": "color", - "subitem": "link", - "state": "visited" + "subitem": "brand", + "state": "clicked" }, "path": [ "global", "text", "color", - "link", - "visited" + "brand", + "clicked" ], "references": [ { "type": "color", - "value": "#b6a6e9", + "value": "#e0f0ff", "filePath": "tokens/dark/base.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.30}" + "value": "{color.blue.10}" }, - "name": "pf-t--global--dark--text--color--link--300", + "name": "pf-t--global--dark--color--brand--300", "attributes": { "category": "global", "type": "dark", - "item": "text", - "subitem": "color", - "state": "link" + "item": "color", + "subitem": "brand", + "state": "300" }, "path": [ "global", "dark", - "text", "color", - "link", + "brand", "300" ], "references": [ { "type": "color", - "value": "#b6a6e9", + "value": "#e0f0ff", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b6a6e9" + "value": "#e0f0ff" }, - "name": "pf-t--color--purple--30", + "name": "pf-t--color--blue--10", "attributes": { "category": "color", - "type": "purple", - "item": "30" + "type": "blue", + "item": "10" }, "path": [ "color", - "purple", - "30" + "blue", + "10" ] } ] @@ -33061,11 +33841,13 @@ ] }, "pf-t--global--text--color--regular": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "#f2f2f2", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.dark.text.color.100}" }, @@ -33134,11 +33916,13 @@ ] }, "pf-t--global--text--color--subtle": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", "value": "#c7c7c7", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", "value": "{global.dark.text.color.200}" }, @@ -33207,11 +33991,13 @@ ] }, "pf-t--global--text--color--inverse": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -33280,11 +34066,13 @@ ] }, "pf-t--global--text--color--on-brand--default": { + "description": "Use as the default color for text placed on a brand-colored background.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text placed on a brand-colored background.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -33305,11 +34093,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -33380,11 +34170,13 @@ ] }, "pf-t--global--text--color--on-brand--hover": { + "description": "Use as the hover state color for text placed on a brand-colored background.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text placed on a brand-colored background.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -33405,11 +34197,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -33480,11 +34274,13 @@ ] }, "pf-t--global--text--color--on-brand--clicked": { + "description": "Use as the clicked state color for text placed on a brand-colored background.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text placed on a brand-colored background.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -33505,11 +34301,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -33580,11 +34378,13 @@ ] }, "pf-t--global--text--color--placeholder": { + "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", "type": "color", "value": "#c7c7c7", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", "type": "color", "value": "{global.text.color.subtle}" }, @@ -33603,11 +34403,13 @@ ], "references": [ { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", "value": "#c7c7c7", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", "value": "{global.dark.text.color.200}" }, @@ -33678,13 +34480,13 @@ ] }, "pf-t--global--text--color--disabled": { - "description": "for use without disabled background color", + "description": "Use as the color of text on disabled elements, like disabled menu items.", "type": "color", "value": "#707070", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { - "description": "for use without disabled background color", + "description": "Use as the color of text on disabled elements, like disabled menu items.", "type": "color", "value": "{global.dark.color.disabled.200}" }, @@ -33753,13 +34555,13 @@ ] }, "pf-t--global--text--color--on-disabled": { - "description": "pair with disabled background color", + "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", "type": "color", "value": "#383838", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { - "description": "pair with disabled background color", + "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", "type": "color", "value": "{global.dark.color.disabled.300}" }, @@ -33827,237 +34629,14 @@ } ] }, - "pf-t--global--text--color--brand--default": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--text--color--brand--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "default" - }, - "path": [ - "global", - "text", - "color", - "brand", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--brand--hover": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.dark.color.brand.300}" - }, - "name": "pf-t--global--text--color--brand--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "hover" - }, - "path": [ - "global", - "text", - "color", - "brand", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--color--brand--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--brand--clicked": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.dark.color.brand.300}" - }, - "name": "pf-t--global--text--color--brand--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "clicked" - }, - "path": [ - "global", - "text", - "color", - "brand", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--color--brand--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] - }, "pf-t--global--text--color--required": { + "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", "type": "color", "value": "#f89b78", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", "type": "color", "value": "{global.dark.text.color.400}" }, @@ -34126,11 +34705,13 @@ ] }, "pf-t--global--text--color--on-highlight": { + "description": "Use as the color of text that is highlighted.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is highlighted.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -34225,11 +34806,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "#87bb62", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.success.100}" }, @@ -34329,11 +34912,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "#afdc8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "{global.dark.color.status.success.200}" }, @@ -34433,11 +35018,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "#afdc8f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "{global.dark.color.status.success.200}" }, @@ -34511,11 +35098,13 @@ ] }, "pf-t--global--text--color--status--on-success--default": { + "description": "Use as the default color for text that is placed on a success background color, like in banners.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a success background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -34537,11 +35126,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -34612,11 +35203,13 @@ ] }, "pf-t--global--text--color--status--on-success--hover": { + "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -34638,11 +35231,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -34713,11 +35308,13 @@ ] }, "pf-t--global--text--color--status--on-success--clicked": { + "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -34739,11 +35336,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -34840,11 +35439,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", "value": "#ffcc17", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.warning.100}" }, @@ -34944,11 +35545,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", "value": "{global.dark.color.status.warning.200}" }, @@ -35048,11 +35651,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", "value": "#ffe072", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", "value": "{global.dark.color.status.warning.200}" }, @@ -35126,11 +35731,13 @@ ] }, "pf-t--global--text--color--status--on-warning--default": { + "description": "Use as the default color for text that is placed on a warning background color, like in banners.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a warning background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -35152,11 +35759,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -35227,11 +35836,13 @@ ] }, "pf-t--global--text--color--status--on-warning--hover": { + "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -35253,11 +35864,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -35328,11 +35941,13 @@ ] }, "pf-t--global--text--color--status--on-warning--clicked": { + "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -35354,11 +35969,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -35429,11 +36046,13 @@ ] }, "pf-t--global--text--color--status--danger--default": { + "description": "Use as the default color for text that communicates a danger status.", "type": "color", "value": "#f89b78", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that communicates a danger status.", "type": "color", "value": "{global.dark.color.status.danger.250}" }, @@ -35506,11 +36125,13 @@ ] }, "pf-t--global--text--color--status--danger--hover": { + "description": "Use as the hover state color for text that communicates a danger status.", "type": "color", "value": "#fbbea8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that communicates a danger status.", "type": "color", "value": "{global.dark.color.status.danger.300}" }, @@ -35583,11 +36204,13 @@ ] }, "pf-t--global--text--color--status--danger--clicked": { + "description": "Use as the clicked state color for text that communicates a danger status.", "type": "color", "value": "#fbbea8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that communicates a danger status.", "type": "color", "value": "{global.dark.color.status.danger.300}" }, @@ -35660,11 +36283,13 @@ ] }, "pf-t--global--text--color--status--on-danger--default": { + "description": "Use as the default color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -35686,11 +36311,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -35761,11 +36388,13 @@ ] }, "pf-t--global--text--color--status--on-danger--hover": { + "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -35787,11 +36416,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -35862,11 +36493,13 @@ ] }, "pf-t--global--text--color--status--on-danger--clicked": { + "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -35888,11 +36521,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -35963,11 +36598,13 @@ ] }, "pf-t--global--text--color--status--info--default": { + "description": "Use as the default color for text that communicates am info status.", "type": "color", "value": "#b6a6e9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that communicates am info status.", "type": "color", "value": "{global.color.status.info.default}" }, @@ -35989,11 +36626,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "#b6a6e9", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.info.100}" }, @@ -36067,11 +36706,13 @@ ] }, "pf-t--global--text--color--status--info--hover": { + "description": "Use as the hover state color for text that communicates an infostatus.", "type": "color", "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that communicates an infostatus.", "type": "color", "value": "{global.color.status.info.hover}" }, @@ -36093,11 +36734,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "{global.dark.color.status.info.200}" }, @@ -36171,11 +36814,13 @@ ] }, "pf-t--global--text--color--status--info--clicked": { + "description": "Use as the clicked state color for text that communicates an info status.", "type": "color", "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that communicates an info status.", "type": "color", "value": "{global.color.status.info.clicked}" }, @@ -36197,11 +36842,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "#d0c5f4", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "{global.dark.color.status.info.200}" }, @@ -36275,11 +36922,13 @@ ] }, "pf-t--global--text--color--status--on-info--default": { + "description": "Use as the default color for text that is placed on an info background color, like in banners.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on an info background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -36301,11 +36950,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -36376,11 +37027,13 @@ ] }, "pf-t--global--text--color--status--on-info--hover": { + "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -36402,11 +37055,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -36477,11 +37132,13 @@ ] }, "pf-t--global--text--color--status--on-info--clicked": { + "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -36503,11 +37160,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -36578,11 +37237,13 @@ ] }, "pf-t--global--text--color--status--custom--default": { + "description": "Use as the default color for text that communicates a custom status.", "type": "color", "value": "#63bdbd", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that communicates a custom status.", "type": "color", "value": "{global.color.status.custom.default}" }, @@ -36604,11 +37265,13 @@ ], "references": [ { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#63bdbd", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.dark.color.status.custom.100}" }, @@ -36682,11 +37345,13 @@ ] }, "pf-t--global--text--color--status--custom--hover": { + "description": "Use as the hover state color for text that communicates a custom status.", "type": "color", "value": "#9ad8d8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that communicates a custom status.", "type": "color", "value": "{global.color.status.custom.hover}" }, @@ -36708,11 +37373,13 @@ ], "references": [ { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#9ad8d8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.dark.color.status.custom.200}" }, @@ -36786,11 +37453,13 @@ ] }, "pf-t--global--text--color--status--custom--clicked": { + "description": "Use as the clicked state color for text that communicates a custom status.", "type": "color", "value": "#9ad8d8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that communicates a custom status.", "type": "color", "value": "{global.color.status.custom.clicked}" }, @@ -36812,11 +37481,13 @@ ], "references": [ { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#9ad8d8", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.dark.color.status.custom.200}" }, @@ -36890,11 +37561,13 @@ ] }, "pf-t--global--text--color--status--on-custom--default": { + "description": "Use as the default color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -36916,11 +37589,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -36991,11 +37666,13 @@ ] }, "pf-t--global--text--color--status--on-custom--hover": { + "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -37017,11 +37694,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -37092,11 +37771,13 @@ ] }, "pf-t--global--text--color--status--on-custom--clicked": { + "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -37118,11 +37799,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -37193,11 +37876,13 @@ ] }, "pf-t--global--text--color--status--unread--on-default--default": { + "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -37220,11 +37905,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -37295,11 +37982,13 @@ ] }, "pf-t--global--text--color--status--unread--on-default--hover": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -37322,11 +38011,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -37397,11 +38088,13 @@ ] }, "pf-t--global--text--color--status--unread--on-default--clicked": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -37424,11 +38117,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -37499,11 +38194,13 @@ ] }, "pf-t--global--text--color--status--unread--on-attention--default": { + "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -37526,11 +38223,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -37601,11 +38300,13 @@ ] }, "pf-t--global--text--color--status--unread--on-attention--hover": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -37628,11 +38329,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -37703,11 +38406,13 @@ ] }, "pf-t--global--text--color--status--unread--on-attention--clicked": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -37730,11 +38435,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -37805,11 +38512,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-red--default": { + "description": "Use as the default color for text that is placed on a nonstatus red background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus red background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -37831,11 +38540,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -37906,11 +38617,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-red--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -37932,11 +38645,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -38007,11 +38722,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-red--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -38033,11 +38750,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -38108,11 +38827,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-orangered--default": { + "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -38134,11 +38855,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -38209,11 +38932,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-orangered--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -38235,11 +38960,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -38310,11 +39037,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-orangered--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -38336,11 +39065,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -38411,11 +39142,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-orange--default": { + "description": "Use as the default color for text that is placed on a nonstatus orange background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus orange background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -38437,11 +39170,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -38512,11 +39247,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-orange--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -38538,11 +39275,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -38613,11 +39352,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-orange--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -38639,11 +39380,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -38714,11 +39457,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-yellow--default": { + "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -38740,11 +39485,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -38815,11 +39562,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-yellow--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -38841,11 +39590,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -38916,11 +39667,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-yellow--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -38942,11 +39695,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -39017,11 +39772,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-green--default": { + "description": "Use as the default color for text that is placed on a nonstatus green background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus green background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -39043,11 +39800,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -39118,11 +39877,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-green--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -39144,11 +39905,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -39219,11 +39982,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-green--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -39245,11 +40010,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -39320,11 +40087,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-teal--default": { + "description": "Use as the default color for text that is placed on a nonstatus teal background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus teal background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -39346,11 +40115,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -39421,11 +40192,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-teal--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -39447,11 +40220,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -39522,11 +40297,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-teal--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -39548,11 +40325,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -39623,11 +40402,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-blue--default": { + "description": "Use as the default color for text that is placed on a nonstatus blue background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus blue background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -39649,11 +40430,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -39724,11 +40507,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-blue--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -39750,11 +40535,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -39825,11 +40612,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-blue--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -39851,11 +40640,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -39926,11 +40717,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-purple--default": { + "description": "Use as the default color for text that is placed on a nonstatus purple background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus purple background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -39952,11 +40745,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -40027,11 +40822,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-purple--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -40053,11 +40850,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -40128,11 +40927,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-purple--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -40154,11 +40955,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -40229,11 +41032,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-gray--default": { + "description": "Use as the default color for text that is placed on a nonstatus gray background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus gray background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -40255,11 +41060,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -40330,11 +41137,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-gray--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -40356,11 +41165,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -40431,11 +41242,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-gray--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -40457,11 +41270,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/dark/semantic.dark.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -40826,11 +41641,13 @@ ] }, "pf-t--global--motion--duration--xs": { + "description": "Use for the quickest possible duration of an animation.", "type": "number", "value": "50ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for the quickest possible duration of an animation.", "type": "number", "value": "{global.duration.50}" }, @@ -40872,11 +41689,13 @@ ] }, "pf-t--global--motion--duration--sm": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", "value": "100ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", "value": "{global.duration.100}" }, @@ -40918,11 +41737,13 @@ ] }, "pf-t--global--motion--duration--md": { + "description": "Use for a medium animation duration.", "type": "number", "value": "200ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for a medium animation duration.", "type": "number", "value": "{global.duration.200}" }, @@ -40964,11 +41785,13 @@ ] }, "pf-t--global--motion--duration--lg": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "300ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "{global.duration.300}" }, @@ -41010,11 +41833,13 @@ ] }, "pf-t--global--motion--duration--xl": { + "description": "Use for extra long animation duration.", "type": "number", "value": "400ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for extra long animation duration.", "type": "number", "value": "{global.duration.400}" }, @@ -41056,11 +41881,13 @@ ] }, "pf-t--global--motion--duration--2xl": { + "description": "Use for significantly long animation duration.", "type": "number", "value": "500ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for significantly long animation duration.", "type": "number", "value": "{global.duration.500}" }, @@ -41102,11 +41929,13 @@ ] }, "pf-t--global--motion--duration--3xl": { + "description": "Use for the longest possible duration of an animation.", "type": "number", "value": "600ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for the longest possible duration of an animation.", "type": "number", "value": "{global.duration.600}" }, @@ -41148,11 +41977,13 @@ ] }, "pf-t--global--motion--duration--fade--short": { + "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", "type": "number", "value": "100ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", "type": "number", "value": "{global.motion.duration.sm}" }, @@ -41173,11 +42004,13 @@ ], "references": [ { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", "value": "100ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", "value": "{global.duration.100}" }, @@ -41221,11 +42054,13 @@ ] }, "pf-t--global--motion--duration--fade--default": { + "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", "type": "number", "value": "200ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", "type": "number", "value": "{global.motion.duration.md}" }, @@ -41246,11 +42081,13 @@ ], "references": [ { + "description": "Use for a medium animation duration.", "type": "number", "value": "200ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for a medium animation duration.", "type": "number", "value": "{global.duration.200}" }, @@ -41294,11 +42131,13 @@ ] }, "pf-t--global--motion--duration--fade--long": { + "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", "type": "number", "value": "300ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", "type": "number", "value": "{global.motion.duration.lg}" }, @@ -41319,11 +42158,13 @@ ], "references": [ { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "300ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "{global.duration.300}" }, @@ -41367,11 +42208,13 @@ ] }, "pf-t--global--motion--duration--slide-out--short": { + "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", "value": "300ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", "value": "{global.motion.duration.lg}" }, @@ -41392,11 +42235,13 @@ ], "references": [ { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "300ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "{global.duration.300}" }, @@ -41440,11 +42285,13 @@ ] }, "pf-t--global--motion--duration--slide-out--default": { + "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", "value": "400ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", "value": "{global.motion.duration.xl}" }, @@ -41465,11 +42312,13 @@ ], "references": [ { + "description": "Use for extra long animation duration.", "type": "number", "value": "400ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for extra long animation duration.", "type": "number", "value": "{global.duration.400}" }, @@ -41513,11 +42362,13 @@ ] }, "pf-t--global--motion--duration--slide-out--long": { + "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", "value": "500ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", "value": "{global.motion.duration.2xl}" }, @@ -41538,11 +42389,13 @@ ], "references": [ { + "description": "Use for significantly long animation duration.", "type": "number", "value": "500ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for significantly long animation duration.", "type": "number", "value": "{global.duration.500}" }, @@ -41586,11 +42439,13 @@ ] }, "pf-t--global--motion--duration--slide-in--short": { + "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", "value": "300ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", "value": "{global.motion.duration.lg}" }, @@ -41611,11 +42466,13 @@ ], "references": [ { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "300ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "{global.duration.300}" }, @@ -41659,11 +42516,13 @@ ] }, "pf-t--global--motion--duration--slide-in--default": { + "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", "value": "400ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", "value": "{global.motion.duration.xl}" }, @@ -41684,11 +42543,13 @@ ], "references": [ { + "description": "Use for extra long animation duration.", "type": "number", "value": "400ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for extra long animation duration.", "type": "number", "value": "{global.duration.400}" }, @@ -41732,11 +42593,13 @@ ] }, "pf-t--global--motion--duration--slide-in--long": { + "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", "value": "500ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", "value": "{global.motion.duration.2xl}" }, @@ -41757,11 +42620,13 @@ ], "references": [ { + "description": "Use for significantly long animation duration.", "type": "number", "value": "500ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for significantly long animation duration.", "type": "number", "value": "{global.duration.500}" }, @@ -41805,11 +42670,13 @@ ] }, "pf-t--global--motion--duration--icon--short": { + "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", "type": "number", "value": "50ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", "type": "number", "value": "{global.motion.duration.xs}" }, @@ -41830,11 +42697,13 @@ ], "references": [ { + "description": "Use for the quickest possible duration of an animation.", "type": "number", "value": "50ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for the quickest possible duration of an animation.", "type": "number", "value": "{global.duration.50}" }, @@ -41878,11 +42747,13 @@ ] }, "pf-t--global--motion--duration--icon--default": { + "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", "type": "number", "value": "100ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", "type": "number", "value": "{global.motion.duration.sm}" }, @@ -41903,11 +42774,13 @@ ], "references": [ { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", "value": "100ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", "value": "{global.duration.100}" }, @@ -41951,11 +42824,13 @@ ] }, "pf-t--global--motion--duration--icon--long": { + "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", "type": "number", "value": "200ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", "type": "number", "value": "{global.motion.duration.md}" }, @@ -41976,11 +42851,13 @@ ], "references": [ { + "description": "Use for a medium animation duration.", "type": "number", "value": "200ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use for a medium animation duration.", "type": "number", "value": "{global.duration.200}" }, @@ -42024,11 +42901,13 @@ ] }, "pf-t--global--motion--delay--none": { + "description": "Use when there should be no delay before an animation plays.", "type": "number", "value": "0ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use when there should be no delay before an animation plays.", "type": "number", "value": "{global.delay.100}" }, @@ -42070,11 +42949,13 @@ ] }, "pf-t--global--motion--delay--short": { + "description": "Use when there should be a short delay before an animation plays.", "type": "number", "value": "50ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use when there should be a short delay before an animation plays.", "type": "number", "value": "{global.delay.200}" }, @@ -42116,11 +42997,13 @@ ] }, "pf-t--global--motion--delay--default": { + "description": "Use when there should be the default delay length before an animation plays.", "type": "number", "value": "100ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use when there should be the default delay length before an animation plays.", "type": "number", "value": "{global.delay.300}" }, @@ -42162,11 +43045,13 @@ ] }, "pf-t--global--motion--delay--long": { + "description": "Use when there should be a long delay before an animation plays.", "type": "number", "value": "7000ms", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use when there should be a long delay before an animation plays.", "type": "number", "value": "{global.delay.400}" }, @@ -42208,11 +43093,13 @@ ] }, "pf-t--global--motion--timing-function--accelerate": { + "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", "type": "number", "value": "cubic-bezier(.4, 0, .7, .2)", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", "type": "number", "value": "{global.timing-function.100}" }, @@ -42254,11 +43141,13 @@ ] }, "pf-t--global--motion--timing-function--default": { + "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", "type": "number", "value": "cubic-bezier(.4, 0, .2, 1)", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", "type": "number", "value": "{global.timing-function.200}" }, @@ -42300,11 +43189,13 @@ ] }, "pf-t--global--motion--timing-function--decelerate": { + "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", "type": "number", "value": "cubic-bezier(0, 0, .2, 1)", "filePath": "tokens/default/semantic.motion.json", "isSource": false, "original": { + "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", "type": "number", "value": "{global.timing-function.300}" }, @@ -44392,7 +45283,7 @@ } ] }, - "pf-t--global--dark--color--nonstatus--gold--100": { + "pf-t--global--dark--color--nonstatus--yellow--100": { "type": "color", "value": "#ffcc17", "filePath": "tokens/dark/base.dark.json", @@ -44401,20 +45292,20 @@ "type": "color", "value": "{color.yellow.30}" }, - "name": "pf-t--global--dark--color--nonstatus--gold--100", + "name": "pf-t--global--dark--color--nonstatus--yellow--100", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "gold" + "state": "yellow" }, "path": [ "global", "dark", "color", "nonstatus", - "gold", + "yellow", "100" ], "references": [ @@ -44441,7 +45332,7 @@ } ] }, - "pf-t--global--dark--color--nonstatus--gold--200": { + "pf-t--global--dark--color--nonstatus--yellow--200": { "type": "color", "value": "#ffe072", "filePath": "tokens/dark/base.dark.json", @@ -44450,20 +45341,20 @@ "type": "color", "value": "{color.yellow.20}" }, - "name": "pf-t--global--dark--color--nonstatus--gold--200", + "name": "pf-t--global--dark--color--nonstatus--yellow--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "gold" + "state": "yellow" }, "path": [ "global", "dark", "color", "nonstatus", - "gold", + "yellow", "200" ], "references": [ @@ -44490,7 +45381,7 @@ } ] }, - "pf-t--global--dark--color--nonstatus--gold--300": { + "pf-t--global--dark--color--nonstatus--yellow--300": { "type": "color", "value": "#fff4cc", "filePath": "tokens/dark/base.dark.json", @@ -44499,20 +45390,20 @@ "type": "color", "value": "{color.yellow.10}" }, - "name": "pf-t--global--dark--color--nonstatus--gold--300", + "name": "pf-t--global--dark--color--nonstatus--yellow--300", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "gold" + "state": "yellow" }, "path": [ "global", "dark", "color", "nonstatus", - "gold", + "yellow", "300" ], "references": [ @@ -44686,7 +45577,7 @@ } ] }, - "pf-t--global--dark--color--nonstatus--cyan--100": { + "pf-t--global--dark--color--nonstatus--teal--100": { "type": "color", "value": "#9ad8d8", "filePath": "tokens/dark/base.dark.json", @@ -44695,20 +45586,20 @@ "type": "color", "value": "{color.teal.30}" }, - "name": "pf-t--global--dark--color--nonstatus--cyan--100", + "name": "pf-t--global--dark--color--nonstatus--teal--100", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "cyan" + "state": "teal" }, "path": [ "global", "dark", "color", "nonstatus", - "cyan", + "teal", "100" ], "references": [ @@ -44735,7 +45626,7 @@ } ] }, - "pf-t--global--dark--color--nonstatus--cyan--200": { + "pf-t--global--dark--color--nonstatus--teal--200": { "type": "color", "value": "#b9e5e5", "filePath": "tokens/dark/base.dark.json", @@ -44744,20 +45635,20 @@ "type": "color", "value": "{color.teal.20}" }, - "name": "pf-t--global--dark--color--nonstatus--cyan--200", + "name": "pf-t--global--dark--color--nonstatus--teal--200", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "cyan" + "state": "teal" }, "path": [ "global", "dark", "color", "nonstatus", - "cyan", + "teal", "200" ], "references": [ @@ -44784,7 +45675,7 @@ } ] }, - "pf-t--global--dark--color--nonstatus--cyan--300": { + "pf-t--global--dark--color--nonstatus--teal--300": { "type": "color", "value": "#daf2f2", "filePath": "tokens/dark/base.dark.json", @@ -44793,20 +45684,20 @@ "type": "color", "value": "{color.teal.10}" }, - "name": "pf-t--global--dark--color--nonstatus--cyan--300", + "name": "pf-t--global--dark--color--nonstatus--teal--300", "attributes": { "category": "global", "type": "dark", "item": "color", "subitem": "nonstatus", - "state": "cyan" + "state": "teal" }, "path": [ "global", "dark", "color", "nonstatus", - "cyan", + "teal", "300" ], "references": [ diff --git a/packages/module/patternfly-docs/content/all-tokens-default.json b/packages/module/patternfly-docs/content/all-tokens-default.json index 28ac4a7..01ccf98 100644 --- a/packages/module/patternfly-docs/content/all-tokens-default.json +++ b/packages/module/patternfly-docs/content/all-tokens-default.json @@ -168,11 +168,13 @@ ] }, "pf-t--global--spacer--xs": { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "{global.spacer.100}" }, @@ -212,11 +214,13 @@ ] }, "pf-t--global--spacer--sm": { + "description": "Use for small spaces between elements.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for small spaces between elements.", "type": "number", "value": "{global.spacer.200}" }, @@ -256,11 +260,13 @@ ] }, "pf-t--global--spacer--md": { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "{global.spacer.300}" }, @@ -300,11 +306,13 @@ ] }, "pf-t--global--spacer--lg": { + "description": "Use for large spaces between elements.", "type": "number", "value": "24px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for large spaces between elements.", "type": "number", "value": "{global.spacer.400}" }, @@ -344,11 +352,13 @@ ] }, "pf-t--global--spacer--xl": { + "description": "Use for extra large spaces between elements.", "type": "number", "value": "32px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for extra large spaces between elements.", "type": "number", "value": "{global.spacer.500}" }, @@ -388,11 +398,13 @@ ] }, "pf-t--global--spacer--2xl": { + "description": "Use for double extra large spaces spacing between elements.", "type": "number", "value": "48px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for double extra large spaces spacing between elements.", "type": "number", "value": "{global.spacer.600}" }, @@ -432,11 +444,13 @@ ] }, "pf-t--global--spacer--3xl": { + "description": "Use for triple extra large spaces between elements.", "type": "number", "value": "64px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for triple extra large spaces between elements.", "type": "number", "value": "{global.spacer.700}" }, @@ -476,11 +490,13 @@ ] }, "pf-t--global--spacer--4xl": { + "description": "Use for quadruple extra large spaces between elements.", "type": "number", "value": "80px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for quadruple extra large spaces between elements.", "type": "number", "value": "{global.spacer.800}" }, @@ -520,11 +536,13 @@ ] }, "pf-t--global--spacer--control--vertical--default": { + "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", "type": "number", "value": "{global.spacer.sm}" }, @@ -545,11 +563,13 @@ ], "references": [ { + "description": "Use for small spaces between elements.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for small spaces between elements.", "type": "number", "value": "{global.spacer.200}" }, @@ -591,13 +611,15 @@ ] }, "pf-t--global--spacer--control--vertical--compact": { + "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "{global.spacer.100}" + "value": "{global.spacer.xs}" }, "name": "pf-t--global--spacer--control--vertical--compact", "attributes": { @@ -616,34 +638,61 @@ ], "references": [ { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "4px", - "filePath": "tokens/default/base.dimension.json", + "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for extra small spaces between elements.", "type": "number", - "value": 4 + "value": "{global.spacer.100}" }, - "name": "pf-t--global--spacer--100", + "name": "pf-t--global--spacer--xs", "attributes": { "category": "global", "type": "spacer", - "item": "100" + "item": "xs" }, "path": [ "global", "spacer", - "100" + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } ] } ] }, "pf-t--global--spacer--control--vertical--plain": { + "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", "type": "number", "value": "{global.spacer.sm}" }, @@ -664,11 +713,13 @@ ], "references": [ { + "description": "Use for small spaces between elements.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for small spaces between elements.", "type": "number", "value": "{global.spacer.200}" }, @@ -710,11 +761,13 @@ ] }, "pf-t--global--spacer--control--horizontal--default": { + "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", "type": "number", "value": "{global.spacer.md}" }, @@ -735,11 +788,13 @@ ], "references": [ { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "{global.spacer.300}" }, @@ -780,85 +835,116 @@ } ] }, - "pf-t--global--spacer--control--horizontal--compact": { + "pf-t--global--spacer--control--horizontal--plain": { + "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "{global.spacer.200}" + "value": "{global.spacer.sm}" }, - "name": "pf-t--global--spacer--control--horizontal--compact", + "name": "pf-t--global--spacer--control--horizontal--plain", "attributes": { "category": "global", "type": "spacer", "item": "control", "subitem": "horizontal", - "state": "compact" + "state": "plain" }, "path": [ "global", "spacer", "control", "horizontal", - "compact" + "plain" ], "references": [ { + "description": "Use for small spaces between elements.", "type": "number", "value": "8px", - "filePath": "tokens/default/base.dimension.json", + "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": 8 + "value": "{global.spacer.200}" }, - "name": "pf-t--global--spacer--200", + "name": "pf-t--global--spacer--sm", "attributes": { "category": "global", "type": "spacer", - "item": "200" + "item": "sm" }, "path": [ "global", "spacer", - "200" + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } ] } ] }, - "pf-t--global--spacer--control--horizontal--plain": { + "pf-t--global--spacer--control--horizontal--compact": { + "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", "value": "{global.spacer.sm}" }, - "name": "pf-t--global--spacer--control--horizontal--plain", + "name": "pf-t--global--spacer--control--horizontal--compact", "attributes": { "category": "global", "type": "spacer", "item": "control", "subitem": "horizontal", - "state": "plain" + "state": "compact" }, "path": [ "global", "spacer", "control", "horizontal", - "plain" + "compact" ], "references": [ { + "description": "Use for small spaces between elements.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for small spaces between elements.", "type": "number", "value": "{global.spacer.200}" }, @@ -899,12 +985,89 @@ } ] }, + "pf-t--global--spacer--control--horizontal--spacious": { + "description": "Use to set the horizontal padding in large/display controls.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding in large/display controls.", + "type": "number", + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--control--horizontal--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "spacious" + ], + "references": [ + { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + }, "pf-t--global--spacer--gap--text-to-element--default": { + "description": "Use to space an element, like an icon or badge, inline with text", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to space an element, like an icon or badge, inline with text", "type": "number", "value": "{global.spacer.sm}" }, @@ -925,11 +1088,13 @@ ], "references": [ { + "description": "Use for small spaces between elements.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for small spaces between elements.", "type": "number", "value": "{global.spacer.200}" }, @@ -971,11 +1136,13 @@ ] }, "pf-t--global--spacer--gap--control-to-control--default": { + "description": "Use to set the space between controls, like in input groups or filter groups", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the space between controls, like in input groups or filter groups", "type": "number", "value": "{global.spacer.xs}" }, @@ -996,11 +1163,13 @@ ], "references": [ { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "{global.spacer.100}" }, @@ -1042,11 +1211,13 @@ ] }, "pf-t--global--spacer--gap--group--vertical": { + "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", "type": "number", "value": "{global.spacer.sm}" }, @@ -1067,11 +1238,13 @@ ], "references": [ { + "description": "Use for small spaces between elements.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for small spaces between elements.", "type": "number", "value": "{global.spacer.200}" }, @@ -1113,11 +1286,13 @@ ] }, "pf-t--global--spacer--gap--group--horizontal": { + "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", "type": "number", "value": "{global.spacer.md}" }, @@ -1138,11 +1313,13 @@ ], "references": [ { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "{global.spacer.300}" }, @@ -1184,11 +1361,13 @@ ] }, "pf-t--global--spacer--gap--group-to-group--horizontal": { + "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", "type": "number", "value": "48px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", "type": "number", "value": "{global.spacer.2xl}" }, @@ -1209,11 +1388,13 @@ ], "references": [ { + "description": "Use for double extra large spaces spacing between elements.", "type": "number", "value": "48px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for double extra large spaces spacing between elements.", "type": "number", "value": "{global.spacer.600}" }, @@ -1255,11 +1436,13 @@ ] }, "pf-t--global--spacer--gap--group-to-group--vertical": { + "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", "type": "number", "value": "24px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", "type": "number", "value": "{global.spacer.lg}" }, @@ -1280,11 +1463,13 @@ ], "references": [ { + "description": "Use for large spaces between elements.", "type": "number", "value": "24px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for large spaces between elements.", "type": "number", "value": "{global.spacer.400}" }, @@ -1326,11 +1511,13 @@ ] }, "pf-t--global--spacer--gap--action-to-action--default": { + "description": "Use to set the space between actions, like in an action list group.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the space between actions, like in an action list group.", "type": "number", "value": "{global.spacer.md}" }, @@ -1351,11 +1538,13 @@ ], "references": [ { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "{global.spacer.300}" }, @@ -1397,11 +1586,13 @@ ] }, "pf-t--global--spacer--gap--action-to-action--plain": { + "description": "Use to set the space between plain actions, like in an action list group.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the space between plain actions, like in an action list group.", "type": "number", "value": "{global.spacer.xs}" }, @@ -1422,11 +1613,13 @@ ], "references": [ { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "{global.spacer.100}" }, @@ -1467,154 +1660,14 @@ } ] }, - "pf-t--global--spacer--action--vertical--default": { - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--action--vertical--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "vertical", - "state": "default" - }, - "path": [ - "global", - "spacer", - "action", - "vertical", - "default" - ], - "references": [ - { - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--action--vertical--plain": { - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--action--vertical--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "vertical", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "action", - "vertical", - "plain" - ], - "references": [ - { - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, "pf-t--global--spacer--action--horizontal--default": { + "description": "Use to set the horizontal padding inside a default action, like buttons.", "type": "number", "value": "24px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the horizontal padding inside a default action, like buttons.", "type": "number", "value": "{global.spacer.lg}" }, @@ -1635,11 +1688,13 @@ ], "references": [ { + "description": "Use for large spaces between elements.", "type": "number", "value": "24px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for large spaces between elements.", "type": "number", "value": "{global.spacer.400}" }, @@ -1681,13 +1736,29 @@ ] }, "pf-t--global--spacer--action--horizontal--plain": { + "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", "type": "number", "value": "8px", + "compact": { + "description": "Use to set the horizontal padding inside a compact, plain action/button.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true + }, "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", "type": "number", - "value": "{global.spacer.sm}" + "value": "{global.spacer.sm}", + "compact": { + "description": "Use to set the horizontal padding inside a compact, plain action/button.", + "type": "number", + "value": "{global.spacer.xs}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true + } }, "name": "pf-t--global--spacer--action--horizontal--plain", "attributes": { @@ -1706,11 +1777,13 @@ ], "references": [ { + "description": "Use for small spaces between elements.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for small spaces between elements.", "type": "number", "value": "{global.spacer.200}" }, @@ -1751,98 +1824,302 @@ } ] }, - "pf-t--global--spacer--button--horizontal--compact": { + "pf-t--global--spacer--action--horizontal--compact": { + "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", "type": "number", - "value": "{global.spacer.300}" + "value": "{global.spacer.md}" }, - "name": "pf-t--global--spacer--button--horizontal--compact", + "name": "pf-t--global--spacer--action--horizontal--compact", "attributes": { "category": "global", "type": "spacer", - "item": "button", + "item": "action", "subitem": "horizontal", "state": "compact" }, "path": [ "global", "spacer", - "button", + "action", "horizontal", "compact" ], "references": [ { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "16px", - "filePath": "tokens/default/base.dimension.json", + "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": 16 + "value": "{global.spacer.300}" }, - "name": "pf-t--global--spacer--300", + "name": "pf-t--global--spacer--md", "attributes": { "category": "global", "type": "spacer", - "item": "300" + "item": "md" }, "path": [ "global", "spacer", - "300" + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--horizontal--spacious": { + "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", + "type": "number", + "value": "32px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", + "type": "number", + "value": "{global.spacer.xl}" + }, + "name": "pf-t--global--spacer--action--horizontal--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "spacious" + ], + "references": [ + { + "description": "Use for extra large spaces between elements.", + "type": "number", + "value": "32px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra large spaces between elements.", + "type": "number", + "value": "{global.spacer.500}" + }, + "name": "pf-t--global--spacer--xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xl" + }, + "path": [ + "global", + "spacer", + "xl" + ], + "references": [ + { + "type": "number", + "value": "32px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + } ] } ] }, - "pf-t--global--spacer--button--vertical--compact": { + "pf-t--global--spacer--action--vertical--compact": { + "description": "Use to set the vertical padding inside a compact action, like compact buttons.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to set the vertical padding inside a compact action, like compact buttons.", "type": "number", - "value": "{global.spacer.100}" + "value": "{global.spacer.xs}" }, - "name": "pf-t--global--spacer--button--vertical--compact", + "name": "pf-t--global--spacer--action--vertical--compact", "attributes": { "category": "global", "type": "spacer", - "item": "button", + "item": "action", "subitem": "vertical", "state": "compact" }, "path": [ "global", "spacer", - "button", + "action", "vertical", "compact" ], "references": [ { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "4px", - "filePath": "tokens/default/base.dimension.json", + "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for extra small spaces between elements.", "type": "number", - "value": 4 + "value": "{global.spacer.100}" }, - "name": "pf-t--global--spacer--100", + "name": "pf-t--global--spacer--xs", "attributes": { "category": "global", "type": "spacer", - "item": "100" + "item": "xs" }, "path": [ "global", "spacer", - "100" + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--vertical--spacious": { + "description": "Use to set the vertical padding inside a large/display action, like CTAs.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the vertical padding inside a large/display action, like CTAs.", + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--action--vertical--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "vertical", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "action", + "vertical", + "spacious" + ], + "references": [ + { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } ] } ] @@ -1986,11 +2263,13 @@ ] }, "pf-t--global--icon--size--sm": { + "description": "Use for small icons.", "type": "number", "value": "12px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for small icons.", "type": "number", "value": "{global.icon.size.100}" }, @@ -2034,11 +2313,13 @@ ] }, "pf-t--global--icon--size--md": { + "description": "Use for medium icons.", "type": "number", "value": "14px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for medium icons.", "type": "number", "value": "{global.icon.size.200}" }, @@ -2082,11 +2363,13 @@ ] }, "pf-t--global--icon--size--lg": { + "description": "Use for large icons.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for large icons.", "type": "number", "value": "{global.icon.size.250}" }, @@ -2130,11 +2413,13 @@ ] }, "pf-t--global--icon--size--xl": { + "description": "Use for extra large icons.", "type": "number", "value": "22px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for extra large icons.", "type": "number", "value": "{global.icon.size.300}" }, @@ -2178,11 +2463,13 @@ ] }, "pf-t--global--icon--size--2xl": { + "description": "Use for double extra large icons.", "type": "number", "value": "56px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for double extra large icons.", "type": "number", "value": "{global.icon.size.400}" }, @@ -2226,11 +2513,13 @@ ] }, "pf-t--global--icon--size--3xl": { + "description": "Use for triple extra large icons.", "type": "number", "value": "96px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for triple extra large icons.", "type": "number", "value": "{global.icon.size.500}" }, @@ -2273,101 +2562,107 @@ } ] }, - "pf-t--global--icon--size--font--body--sm": { + "pf-t--global--icon--size--font--heading--h1": { + "description": "Use for icons that are placed inline with first level headings", "type": "number", - "value": "12px", + "value": "22px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for icons that are placed inline with first level headings", "type": "number", - "value": "{global.font.size.body.sm}" + "value": "{global.font.size.heading.h1}" }, - "name": "pf-t--global--icon--size--font--body--sm", + "name": "pf-t--global--icon--size--font--heading--h1", "attributes": { "category": "global", "type": "icon", "item": "size", "subitem": "font", - "state": "body" + "state": "heading" }, "path": [ "global", "icon", "size", "font", - "body", - "sm" + "heading", + "h1" ], "references": [ { + "description": "Use as the font size for first level headings.", "type": "number", - "value": "12px", + "value": "22px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for first level headings.", "type": "number", - "value": "{global.font.size.xs}" + "value": "{global.font.size.2xl}" }, - "name": "pf-t--global--font--size--body--sm", + "name": "pf-t--global--font--size--heading--h1", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "body", - "state": "sm" + "subitem": "heading", + "state": "h1" }, "path": [ "global", "font", "size", - "body", - "sm" + "heading", + "h1" ], "references": [ { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "12px", + "value": "22px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.100}" + "value": "{global.font.size.600}" }, - "name": "pf-t--global--font--size--xs", + "name": "pf-t--global--font--size--2xl", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "xs" + "subitem": "2xl" }, "path": [ "global", "font", "size", - "xs" + "2xl" ], "references": [ { "type": "number", - "value": "12px", + "value": "22px", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { "type": "number", - "value": 12 + "value": 22 }, - "name": "pf-t--global--font--size--100", + "name": "pf-t--global--font--size--600", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "100" + "subitem": "600" }, "path": [ "global", "font", "size", - "100" + "600" ] } ] @@ -2376,101 +2671,107 @@ } ] }, - "pf-t--global--icon--size--font--body--default": { + "pf-t--global--icon--size--font--heading--h2": { + "description": "Use for icons that are placed inline with second level headings", "type": "number", - "value": "14px", + "value": "20px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for icons that are placed inline with second level headings", "type": "number", - "value": "{global.font.size.body.default}" + "value": "{global.font.size.heading.h2}" }, - "name": "pf-t--global--icon--size--font--body--default", + "name": "pf-t--global--icon--size--font--heading--h2", "attributes": { "category": "global", "type": "icon", "item": "size", "subitem": "font", - "state": "body" + "state": "heading" }, "path": [ "global", "icon", "size", "font", - "body", - "default" + "heading", + "h2" ], "references": [ { + "description": "Use as the font size for second level headings.", "type": "number", - "value": "14px", + "value": "20px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for second level headings.", "type": "number", - "value": "{global.font.size.sm}" + "value": "{global.font.size.xl}" }, - "name": "pf-t--global--font--size--body--default", + "name": "pf-t--global--font--size--heading--h2", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "body", - "state": "default" + "subitem": "heading", + "state": "h2" }, "path": [ "global", "font", "size", - "body", - "default" + "heading", + "h2" ], "references": [ { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "20px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.200}" + "value": "{global.font.size.500}" }, - "name": "pf-t--global--font--size--sm", + "name": "pf-t--global--font--size--xl", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "sm" + "subitem": "xl" }, "path": [ "global", "font", "size", - "sm" + "xl" ], "references": [ { "type": "number", - "value": "14px", + "value": "20px", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { "type": "number", - "value": 14 + "value": 20 }, - "name": "pf-t--global--font--size--200", + "name": "pf-t--global--font--size--500", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "200" + "subitem": "500" }, "path": [ "global", "font", "size", - "200" + "500" ] } ] @@ -2479,63 +2780,178 @@ } ] }, - "pf-t--global--icon--size--font--body--lg": { + "pf-t--global--icon--size--font--heading--h3": { + "description": "Use for icons that are placed inline with third level headings", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with third level headings", + "type": "number", + "value": "{global.font.size.heading.h3}" + }, + "name": "pf-t--global--icon--size--font--heading--h3", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h3" + ], + "references": [ + { + "description": "Use as the font size for third level headings.", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for third level headings.", + "type": "number", + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--font--size--heading--h3", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h3" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h3" + ], + "references": [ + { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h4": { + "description": "Use for icons that are placed inline with fourth level headings", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for icons that are placed inline with fourth level headings", "type": "number", - "value": "{global.font.size.body.lg}" + "value": "{global.font.size.heading.h4}" }, - "name": "pf-t--global--icon--size--font--body--lg", + "name": "pf-t--global--icon--size--font--heading--h4", "attributes": { "category": "global", "type": "icon", "item": "size", "subitem": "font", - "state": "body" + "state": "heading" }, "path": [ "global", "icon", "size", "font", - "body", - "lg" + "heading", + "h4" ], "references": [ { + "description": "Use as the font size for fourth-level headings.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for fourth-level headings.", "type": "number", "value": "{global.font.size.md}" }, - "name": "pf-t--global--font--size--body--lg", + "name": "pf-t--global--font--size--heading--h4", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "body", - "state": "lg" + "subitem": "heading", + "state": "h4" }, "path": [ "global", "font", "size", - "body", - "lg" + "heading", + "h4" ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.300}" }, @@ -2582,119 +2998,18 @@ } ] }, - "pf-t--global--icon--size--font--heading--h1": { - "type": "number", - "value": "22px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.size.heading.h1}" - }, - "name": "pf-t--global--icon--size--font--heading--h1", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h1" - ], - "references": [ - { - "type": "number", - "value": "22px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.size.2xl}" - }, - "name": "pf-t--global--font--size--heading--h1", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h1" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h1" - ], - "references": [ - { - "type": "number", - "value": "22px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "22px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--heading--h2": { + "pf-t--global--icon--size--font--heading--h5": { + "description": "Use for icons that are placed inline with fifth level headings", "type": "number", - "value": "20px", + "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for icons that are placed inline with fifth level headings", "type": "number", - "value": "{global.font.size.heading.h2}" + "value": "{global.font.size.heading.h5}" }, - "name": "pf-t--global--icon--size--font--heading--h2", + "name": "pf-t--global--icon--size--font--heading--h5", "attributes": { "category": "global", "type": "icon", @@ -2708,78 +3023,82 @@ "size", "font", "heading", - "h2" + "h5" ], "references": [ { + "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "20px", + "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "{global.font.size.xl}" + "value": "{global.font.size.md}" }, - "name": "pf-t--global--font--size--heading--h2", + "name": "pf-t--global--font--size--heading--h5", "attributes": { "category": "global", "type": "font", "item": "size", "subitem": "heading", - "state": "h2" + "state": "h5" }, "path": [ "global", "font", "size", "heading", - "h2" + "h5" ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.500}" + "value": "{global.font.size.300}" }, - "name": "pf-t--global--font--size--xl", + "name": "pf-t--global--font--size--md", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "xl" + "subitem": "md" }, "path": [ "global", "font", "size", - "xl" + "md" ], "references": [ { "type": "number", - "value": "20px", + "value": "16px", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { "type": "number", - "value": 20 + "value": 16 }, - "name": "pf-t--global--font--size--500", + "name": "pf-t--global--font--size--300", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "500" + "subitem": "300" }, "path": [ "global", "font", "size", - "500" + "300" ] } ] @@ -2788,16 +3107,18 @@ } ] }, - "pf-t--global--icon--size--font--heading--h3": { + "pf-t--global--icon--size--font--heading--h6": { + "description": "Use for icons that are placed inline with sixth level headings", "type": "number", - "value": "18px", + "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for icons that are placed inline with sixth level headings", "type": "number", - "value": "{global.font.size.heading.h3}" + "value": "{global.font.size.heading.h6}" }, - "name": "pf-t--global--icon--size--font--heading--h3", + "name": "pf-t--global--icon--size--font--heading--h6", "attributes": { "category": "global", "type": "icon", @@ -2811,78 +3132,82 @@ "size", "font", "heading", - "h3" + "h6" ], "references": [ { + "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "18px", + "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "{global.font.size.lg}" + "value": "{global.font.size.md}" }, - "name": "pf-t--global--font--size--heading--h3", + "name": "pf-t--global--font--size--heading--h6", "attributes": { "category": "global", "type": "font", "item": "size", "subitem": "heading", - "state": "h3" + "state": "h6" }, "path": [ "global", "font", "size", "heading", - "h3" + "h6" ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.400}" + "value": "{global.font.size.300}" }, - "name": "pf-t--global--font--size--lg", + "name": "pf-t--global--font--size--md", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "lg" + "subitem": "md" }, "path": [ "global", "font", "size", - "lg" + "md" ], "references": [ { "type": "number", - "value": "18px", + "value": "16px", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { "type": "number", - "value": 18 + "value": 16 }, - "name": "pf-t--global--font--size--400", + "name": "pf-t--global--font--size--300", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "400" + "subitem": "300" }, "path": [ "global", "font", "size", - "400" + "300" ] } ] @@ -2891,101 +3216,105 @@ } ] }, - "pf-t--global--icon--size--font--heading--h4": { + "pf-t--global--icon--size--font--body--sm": { + "description": "Use for icons that are placed inline with small body text", "type": "number", - "value": "16px", + "value": "12px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for icons that are placed inline with small body text", "type": "number", - "value": "{global.font.size.heading.h4}" + "value": "{global.font.size.body.sm}" }, - "name": "pf-t--global--icon--size--font--heading--h4", + "name": "pf-t--global--icon--size--font--body--sm", "attributes": { "category": "global", "type": "icon", "item": "size", "subitem": "font", - "state": "heading" + "state": "body" }, "path": [ "global", "icon", "size", "font", - "heading", - "h4" + "body", + "sm" ], "references": [ { + "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "16px", + "value": "12px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "{global.font.size.md}" + "value": "{global.font.size.xs}" }, - "name": "pf-t--global--font--size--heading--h4", + "name": "pf-t--global--font--size--body--sm", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "heading", - "state": "h4" + "subitem": "body", + "state": "sm" }, "path": [ "global", "font", "size", - "heading", - "h4" + "body", + "sm" ], "references": [ { "type": "number", - "value": "16px", + "value": "12px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { "type": "number", - "value": "{global.font.size.300}" + "value": "{global.font.size.100}" }, - "name": "pf-t--global--font--size--md", + "name": "pf-t--global--font--size--xs", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "md" + "subitem": "xs" }, "path": [ "global", "font", "size", - "md" + "xs" ], "references": [ { "type": "number", - "value": "16px", + "value": "12px", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { "type": "number", - "value": 16 + "value": 12 }, - "name": "pf-t--global--font--size--300", + "name": "pf-t--global--font--size--100", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "300" + "subitem": "100" }, "path": [ "global", "font", "size", - "300" + "100" ] } ] @@ -2994,101 +3323,107 @@ } ] }, - "pf-t--global--icon--size--font--heading--h5": { + "pf-t--global--icon--size--font--body--default": { + "description": "Use for icons that are placed inline with default body text", "type": "number", - "value": "16px", + "value": "14px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for icons that are placed inline with default body text", "type": "number", - "value": "{global.font.size.heading.h5}" + "value": "{global.font.size.body.default}" }, - "name": "pf-t--global--icon--size--font--heading--h5", + "name": "pf-t--global--icon--size--font--body--default", "attributes": { "category": "global", "type": "icon", "item": "size", "subitem": "font", - "state": "heading" + "state": "body" }, "path": [ "global", "icon", "size", "font", - "heading", - "h5" + "body", + "default" ], "references": [ { + "description": "Use as the default font size in body sections.", "type": "number", - "value": "16px", + "value": "14px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the default font size in body sections.", "type": "number", - "value": "{global.font.size.md}" + "value": "{global.font.size.sm}" }, - "name": "pf-t--global--font--size--heading--h5", + "name": "pf-t--global--font--size--body--default", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "heading", - "state": "h5" + "subitem": "body", + "state": "default" }, "path": [ "global", "font", "size", - "heading", - "h5" + "body", + "default" ], "references": [ { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "14px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" + "value": "{global.font.size.200}" }, - "name": "pf-t--global--font--size--md", + "name": "pf-t--global--font--size--sm", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "md" + "subitem": "sm" }, "path": [ "global", "font", "size", - "md" + "sm" ], "references": [ { "type": "number", - "value": "16px", + "value": "14px", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { "type": "number", - "value": 16 + "value": 14 }, - "name": "pf-t--global--font--size--300", + "name": "pf-t--global--font--size--200", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "300" + "subitem": "200" }, "path": [ "global", "font", "size", - "300" + "200" ] } ] @@ -3097,63 +3432,69 @@ } ] }, - "pf-t--global--icon--size--font--heading--h6": { + "pf-t--global--icon--size--font--body--lg": { + "description": "Use for icons that are placed inline with large body text", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for icons that are placed inline with large body text", "type": "number", - "value": "{global.font.size.heading.h6}" + "value": "{global.font.size.body.lg}" }, - "name": "pf-t--global--icon--size--font--heading--h6", + "name": "pf-t--global--icon--size--font--body--lg", "attributes": { "category": "global", "type": "icon", "item": "size", "subitem": "font", - "state": "heading" + "state": "body" }, "path": [ "global", "icon", "size", "font", - "heading", - "h6" + "body", + "lg" ], "references": [ { + "description": "Use for a larger font size in body sections.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for a larger font size in body sections.", "type": "number", "value": "{global.font.size.md}" }, - "name": "pf-t--global--font--size--heading--h6", + "name": "pf-t--global--font--size--body--lg", "attributes": { "category": "global", "type": "font", "item": "size", - "subitem": "heading", - "state": "h6" + "subitem": "body", + "state": "lg" }, "path": [ "global", "font", "size", - "heading", - "h6" + "body", + "lg" ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.300}" }, @@ -3201,11 +3542,13 @@ ] }, "pf-t--global--icon--size--font--xs": { + "description": "Use for icons that are placed inline with font–size–xs text", "type": "number", "value": "12px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for icons that are placed inline with font–size–xs text", "type": "number", "value": "{global.font.size.xs}" }, @@ -3276,11 +3619,13 @@ ] }, "pf-t--global--icon--size--font--sm": { + "description": "Use for icons that are placed inline with font–size–sm text", "type": "number", "value": "14px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for icons that are placed inline with font–size–sm text", "type": "number", "value": "{global.font.size.sm}" }, @@ -3301,11 +3646,13 @@ ], "references": [ { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", "value": "14px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.200}" }, @@ -3351,11 +3698,13 @@ ] }, "pf-t--global--icon--size--font--md": { + "description": "Use for icons that are placed inline with font–size–md text", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for icons that are placed inline with font–size–md text", "type": "number", "value": "{global.font.size.md}" }, @@ -3376,11 +3725,13 @@ ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.300}" }, @@ -3426,11 +3777,13 @@ ] }, "pf-t--global--icon--size--font--lg": { + "description": "Use for icons that are placed inline with font–size–lg text", "type": "number", "value": "18px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for icons that are placed inline with font–size–lg text", "type": "number", "value": "{global.font.size.lg}" }, @@ -3451,11 +3804,13 @@ ], "references": [ { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", "value": "18px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.400}" }, @@ -3501,11 +3856,13 @@ ] }, "pf-t--global--icon--size--font--xl": { + "description": "Use for icons that are placed inline with font–size–xl text", "type": "number", "value": "20px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for icons that are placed inline with font–size–xl text", "type": "number", "value": "{global.font.size.xl}" }, @@ -3526,11 +3883,13 @@ ], "references": [ { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", "value": "20px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.500}" }, @@ -3576,11 +3935,13 @@ ] }, "pf-t--global--icon--size--font--2xl": { + "description": "Use for icons that are placed inline with font–size–2xl text", "type": "number", "value": "22px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for icons that are placed inline with font–size–2xl text", "type": "number", "value": "{global.font.size.2xl}" }, @@ -3601,11 +3962,13 @@ ], "references": [ { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", "value": "22px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.600}" }, @@ -3651,11 +4014,13 @@ ] }, "pf-t--global--icon--size--font--3xl": { + "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", "value": "28px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", "value": "{global.font.size.3xl}" }, @@ -3676,11 +4041,13 @@ ], "references": [ { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "28px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.700}" }, @@ -3726,11 +4093,13 @@ ] }, "pf-t--global--icon--size--font--4xl": { + "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", "value": "36px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", "value": "{global.font.size.4xl}" }, @@ -3751,11 +4120,13 @@ ], "references": [ { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "36px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.800}" }, @@ -3937,11 +4308,13 @@ ] }, "pf-t--global--icon--color--brand--default": { + "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "#0066cc", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "{global.color.brand.default}" }, @@ -3962,11 +4335,13 @@ ], "references": [ { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", "value": "#0066cc", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", "value": "{global.color.brand.200}" }, @@ -4035,11 +4410,13 @@ ] }, "pf-t--global--icon--color--brand--hover": { + "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "#004d99", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "{global.color.brand.hover}" }, @@ -4060,11 +4437,13 @@ ], "references": [ { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", "value": "#004d99", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", "value": "{global.color.brand.300}" }, @@ -4133,11 +4512,13 @@ ] }, "pf-t--global--icon--color--brand--clicked": { + "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "#004d99", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "{global.color.brand.clicked}" }, @@ -4158,11 +4539,13 @@ ], "references": [ { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", "value": "#004d99", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", "value": "{global.color.brand.300}" }, @@ -4231,11 +4614,13 @@ ] }, "pf-t--global--icon--color--on-brand--default": { + "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -4256,11 +4641,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -4327,11 +4714,13 @@ ] }, "pf-t--global--icon--color--on-brand--hover": { + "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -4352,11 +4741,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -4423,11 +4814,13 @@ ] }, "pf-t--global--icon--color--on-brand--clicked": { + "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -4448,11 +4841,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -4519,11 +4914,13 @@ ] }, "pf-t--global--icon--color--favorite--default": { + "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "#ffcc17", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "{global.color.favorite.default}" }, @@ -4544,11 +4941,13 @@ ], "references": [ { + "description": "Use as the default color for elements that have been favorited", "type": "color", "value": "#ffcc17", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for elements that have been favorited", "type": "color", "value": "{global.color.favorite.100}" }, @@ -4617,11 +5016,13 @@ ] }, "pf-t--global--icon--color--favorite--hover": { + "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "#dca614", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "{global.color.favorite.hover}" }, @@ -4642,11 +5043,13 @@ ], "references": [ { + "description": "Use as the hover state for elements that have been favorited", "type": "color", "value": "#dca614", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for elements that have been favorited", "type": "color", "value": "{global.color.favorite.200}" }, @@ -4715,11 +5118,13 @@ ] }, "pf-t--global--icon--color--favorite--clicked": { + "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "#dca614", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "{global.color.favorite.clicked}" }, @@ -4740,11 +5145,13 @@ ], "references": [ { + "description": "Use as the clicked state for elements that have been favorited", "type": "color", "value": "#dca614", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for elements that have been favorited", "type": "color", "value": "{global.color.favorite.200}" }, @@ -4813,11 +5220,13 @@ ] }, "pf-t--global--icon--color--status--success--default": { + "description": "Use as the default color for text that communicates a success status.", "type": "color", "value": "#3d7317", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that communicates a success status.", "type": "color", "value": "{global.color.status.success.default}" }, @@ -4839,11 +5248,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "#3d7317", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "{global.color.status.success.100}" }, @@ -4916,11 +5327,13 @@ ] }, "pf-t--global--icon--color--status--success--hover": { + "description": "Use as the hover state color for text that communicates a success status.", "type": "color", "value": "#204d00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that communicates a success status.", "type": "color", "value": "{global.color.status.success.hover}" }, @@ -4942,11 +5355,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "#204d00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "{global.color.status.success.200}" }, @@ -5019,11 +5434,13 @@ ] }, "pf-t--global--icon--color--status--success--clicked": { + "description": "Use as the clicked state color for text that communicates a success status.", "type": "color", "value": "#204d00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that communicates a success status.", "type": "color", "value": "{global.color.status.success.clicked}" }, @@ -5045,11 +5462,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "#204d00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "{global.color.status.success.200}" }, @@ -5122,11 +5541,13 @@ ] }, "pf-t--global--icon--color--status--on-success--default": { + "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -5148,11 +5569,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -5219,11 +5642,13 @@ ] }, "pf-t--global--icon--color--status--on-success--hover": { + "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -5245,11 +5670,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -5316,11 +5743,13 @@ ] }, "pf-t--global--icon--color--status--on-success--clicked": { + "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -5342,11 +5771,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -5413,11 +5844,13 @@ ] }, "pf-t--global--icon--color--status--warning--default": { + "description": "Use as the default color for text that communicates a warning status.", "type": "color", "value": "#dca614", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that communicates a warning status.", "type": "color", "value": "{global.color.status.warning.200}" }, @@ -5489,11 +5922,13 @@ ] }, "pf-t--global--icon--color--status--warning--hover": { + "description": "Use as the hover state color for text that communicates a warning status.", "type": "color", "value": "#b98412", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that communicates a warning status.", "type": "color", "value": "{global.color.status.warning.300}" }, @@ -5565,11 +6000,13 @@ ] }, "pf-t--global--icon--color--status--warning--clicked": { + "description": "Use as the clicked state color for text that communicates a warning status.", "type": "color", "value": "#b98412", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that communicates a warning status.", "type": "color", "value": "{global.color.status.warning.300}" }, @@ -5641,11 +6078,13 @@ ] }, "pf-t--global--icon--color--status--on-warning--default": { + "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "{global.icon.color.regular}" }, @@ -5667,11 +6106,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -5740,11 +6181,13 @@ ] }, "pf-t--global--icon--color--status--on-warning--hover": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "{global.icon.color.regular}" }, @@ -5766,11 +6209,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -5839,11 +6284,13 @@ ] }, "pf-t--global--icon--color--status--on-warning--clicked": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "{global.icon.color.regular}" }, @@ -5865,11 +6312,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -5938,11 +6387,13 @@ ] }, "pf-t--global--icon--color--status--danger--default": { + "description": "Use as the default color for icons that convey danger, like in alerts or banners.", "type": "color", "value": "#b1380b", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that convey danger, like in alerts or banners.", "type": "color", "value": "{global.color.status.danger.default}" }, @@ -5964,11 +6415,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "#b1380b", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "{global.color.status.danger.100}" }, @@ -6041,11 +6494,13 @@ ] }, "pf-t--global--icon--color--status--danger--hover": { + "description": "Use as the hover state for icons that indicate danger.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for icons that indicate danger.", "type": "color", "value": "{global.color.status.danger.hover}" }, @@ -6067,11 +6522,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "{global.color.status.danger.200}" }, @@ -6144,11 +6601,13 @@ ] }, "pf-t--global--icon--color--status--danger--clicked": { + "description": "Use as the clicked state for icons that indicate danger.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for icons that indicate danger.", "type": "color", "value": "{global.color.status.danger.clicked}" }, @@ -6170,11 +6629,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "{global.color.status.danger.200}" }, @@ -6247,11 +6708,13 @@ ] }, "pf-t--global--icon--color--status--on-danger--default": { + "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -6273,11 +6736,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -6344,11 +6809,13 @@ ] }, "pf-t--global--icon--color--status--on-danger--hover": { + "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -6370,11 +6837,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -6441,11 +6910,13 @@ ] }, "pf-t--global--icon--color--status--on-danger--clicked": { + "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -6467,11 +6938,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -6538,11 +7011,13 @@ ] }, "pf-t--global--icon--color--status--info--default": { + "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", "type": "color", "value": "#5e40be", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", "type": "color", "value": "{global.color.status.info.default}" }, @@ -6564,11 +7039,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "#5e40be", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "{global.color.status.info.100}" }, @@ -6641,11 +7118,13 @@ ] }, "pf-t--global--icon--color--status--info--hover": { + "description": "Use as the hover state for icons that identify informational messages.", "type": "color", "value": "#3d2785", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for icons that identify informational messages.", "type": "color", "value": "{global.color.status.info.hover}" }, @@ -6667,11 +7146,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "#3d2785", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "{global.color.status.info.200}" }, @@ -6744,11 +7225,13 @@ ] }, "pf-t--global--icon--color--status--info--clicked": { + "description": "Use as the clicked state for icons that identify informational messages.", "type": "color", "value": "#3d2785", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for icons that identify informational messages.", "type": "color", "value": "{global.color.status.info.clicked}" }, @@ -6770,11 +7253,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "#3d2785", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "{global.color.status.info.200}" }, @@ -6847,11 +7332,13 @@ ] }, "pf-t--global--icon--color--status--on-info--default": { + "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -6873,11 +7360,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -6944,11 +7433,13 @@ ] }, "pf-t--global--icon--color--status--on-info--hover": { + "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -6970,11 +7461,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -7041,11 +7534,13 @@ ] }, "pf-t--global--icon--color--status--on-info--clicked": { + "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -7067,11 +7562,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -7138,11 +7635,13 @@ ] }, "pf-t--global--icon--color--status--custom--default": { + "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", "type": "color", "value": "#147878", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.default}" }, @@ -7164,11 +7663,13 @@ ], "references": [ { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#147878", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.100}" }, @@ -7241,11 +7742,13 @@ ] }, "pf-t--global--icon--color--status--custom--hover": { + "description": "Use as the hover state for icons that convey generic status with no associated severity.", "type": "color", "value": "#004d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for icons that convey generic status with no associated severity.", "type": "color", "value": "{global.color.status.custom.hover}" }, @@ -7267,11 +7770,13 @@ ], "references": [ { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#004d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.200}" }, @@ -7344,11 +7849,13 @@ ] }, "pf-t--global--icon--color--status--custom--clicked": { + "description": "Use as the clicked state for icons that convey generic status with no associated severity.", "type": "color", "value": "#004d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for icons that convey generic status with no associated severity.", "type": "color", "value": "{global.color.status.custom.clicked}" }, @@ -7370,11 +7877,13 @@ ], "references": [ { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#004d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.200}" }, @@ -7447,11 +7956,13 @@ ] }, "pf-t--global--icon--color--status--on-custom--default": { + "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -7473,11 +7984,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -7544,11 +8057,13 @@ ] }, "pf-t--global--icon--color--status--on-custom--hover": { + "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -7570,11 +8085,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -7641,11 +8158,13 @@ ] }, "pf-t--global--icon--color--status--on-custom--clicked": { + "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -7667,11 +8186,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -7738,11 +8259,13 @@ ] }, "pf-t--global--icon--color--status--unread--on-default--default": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -7765,11 +8288,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -7836,11 +8361,13 @@ ] }, "pf-t--global--icon--color--status--unread--on-default--hover": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -7863,11 +8390,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -7934,11 +8463,13 @@ ] }, "pf-t--global--icon--color--status--unread--on-default--clicked": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -7961,11 +8492,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -8032,11 +8565,13 @@ ] }, "pf-t--global--icon--color--status--unread--on-attention--default": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -8059,11 +8594,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -8130,11 +8667,13 @@ ] }, "pf-t--global--icon--color--status--unread--on-attention--hover": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -8157,11 +8696,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -8228,11 +8769,13 @@ ] }, "pf-t--global--icon--color--status--unread--on-attention--clicked": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -8255,11 +8798,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -8326,11 +8871,13 @@ ] }, "pf-t--global--icon--color--regular": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -8397,11 +8944,13 @@ ] }, "pf-t--global--icon--color--subtle": { + "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", "type": "color", "value": "#707070", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", "type": "color", "value": "{global.icon.color.200}" }, @@ -8468,11 +9017,13 @@ ] }, "pf-t--global--icon--color--inverse": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -8537,13 +9088,13 @@ ] }, "pf-t--global--icon--color--disabled": { - "description": "for use without disabled background color", + "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", "type": "color", "value": "#a3a3a3", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { - "description": "for use without disabled background color", + "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", "type": "color", "value": "{global.color.disabled.200}" }, @@ -8610,13 +9161,13 @@ ] }, "pf-t--global--icon--color--on-disabled": { - "description": "pair with disabled background color", + "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", "type": "color", "value": "#4d4d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { - "description": "pair with disabled background color", + "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", "type": "color", "value": "{global.color.disabled.300}" }, @@ -8683,11 +9234,13 @@ ] }, "pf-t--global--icon--color--severity--undefined--default": { + "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", "type": "color", "value": "#c7c7c7", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", "type": "color", "value": "{global.color.severity.undefined.100}" }, @@ -8759,11 +9312,13 @@ ] }, "pf-t--global--icon--color--severity--none--default": { + "description": "Use as the default color for severity icons that identify no issues.", "type": "color", "value": "#4394e5", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for severity icons that identify no issues.", "type": "color", "value": "{global.color.severity.none.100}" }, @@ -8835,11 +9390,13 @@ ] }, "pf-t--global--icon--color--severity--minor--default": { + "description": "Use as the default color for severity icons that identify issues of minor severity.", "type": "color", "value": "#707070", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for severity icons that identify issues of minor severity.", "type": "color", "value": "{global.color.severity.minor.100}" }, @@ -8911,11 +9468,13 @@ ] }, "pf-t--global--icon--color--severity--moderate--default": { + "description": "Use as the default color for severity icons that identify issues of moderate severity.", "type": "color", "value": "#dca614", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for severity icons that identify issues of moderate severity.", "type": "color", "value": "{global.color.severity.moderate.100}" }, @@ -8987,11 +9546,13 @@ ] }, "pf-t--global--icon--color--severity--important--default": { + "description": "Use as the default color for severity icons that identify issues of important severity.", "type": "color", "value": "#ca6c0f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for severity icons that identify issues of important severity.", "type": "color", "value": "{global.color.severity.important.100}" }, @@ -9063,11 +9624,13 @@ ] }, "pf-t--global--icon--color--severity--critical--default": { + "description": "Use as the default color for severity icons that identify issues of critical severity.", "type": "color", "value": "#b1380b", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for severity icons that identify issues of critical severity.", "type": "color", "value": "{global.color.severity.critical.100}" }, @@ -9139,11 +9702,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-red--default": { + "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -9165,11 +9730,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -9238,11 +9805,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-red--hover": { + "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -9264,11 +9833,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -9337,11 +9908,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-red--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -9363,11 +9936,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -9436,11 +10011,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-orangered--default": { + "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -9462,11 +10039,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -9535,11 +10114,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-orangered--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -9561,11 +10142,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -9634,11 +10217,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-orangered--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -9660,11 +10245,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -9733,11 +10320,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-orange--default": { + "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -9759,11 +10348,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -9832,11 +10423,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-orange--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -9858,11 +10451,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -9931,11 +10526,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-orange--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -9957,11 +10554,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -10030,11 +10629,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-yellow--default": { + "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -10056,11 +10657,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -10129,11 +10732,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-yellow--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -10155,11 +10760,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -10228,11 +10835,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-yellow--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -10254,11 +10863,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -10327,11 +10938,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-green--default": { + "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -10353,11 +10966,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -10426,11 +11041,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-green--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -10452,11 +11069,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -10525,11 +11144,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-green--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -10551,11 +11172,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -10624,11 +11247,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-teal--default": { + "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -10650,11 +11275,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -10723,11 +11350,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-teal--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -10749,11 +11378,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -10822,11 +11453,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-teal--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -10848,11 +11481,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -10921,11 +11556,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-blue--default": { + "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -10947,11 +11584,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -11020,11 +11659,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-blue--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -11046,11 +11687,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -11119,11 +11762,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-blue--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -11145,11 +11790,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -11218,11 +11865,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-purple--default": { + "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -11244,11 +11893,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -11317,11 +11968,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-purple--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -11343,11 +11996,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -11416,11 +12071,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-purple--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -11442,11 +12099,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -11515,11 +12174,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-gray--default": { + "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -11541,11 +12202,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -11614,11 +12277,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-gray--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -11640,11 +12305,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -11713,11 +12380,13 @@ ] }, "pf-t--global--icon--color--nonstatus--on-gray--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "{global.icon.color.regular}" }, @@ -11739,11 +12408,13 @@ ], "references": [ { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "#1f1f1f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, @@ -11881,11 +12552,13 @@ ] }, "pf-t--global--border--width--regular": { + "description": "Use as the default border width for elements.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the default border width for elements.", "type": "number", "value": "{global.border.width.100}" }, @@ -11929,11 +12602,13 @@ ] }, "pf-t--global--border--width--divider--default": { + "description": "Use as the default border width for dividers.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the default border width for dividers.", "type": "number", "value": "{global.border.width.100}" }, @@ -11979,11 +12654,13 @@ ] }, "pf-t--global--border--width--divider--hover": { + "description": "Use as the border width hover state for dividers.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the border width hover state for dividers.", "type": "number", "value": "{global.border.width.100}" }, @@ -12029,11 +12706,13 @@ ] }, "pf-t--global--border--width--divider--clicked": { + "description": "Use as the border width clicked state for dividers.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the border width clicked state for dividers.", "type": "number", "value": "{global.border.width.100}" }, @@ -12079,11 +12758,13 @@ ] }, "pf-t--global--border--width--strong": { + "description": "Use as a stronger/wider border width for elements.", "type": "number", "value": "2px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as a stronger/wider border width for elements.", "type": "number", "value": "{global.border.width.200}" }, @@ -12127,11 +12808,13 @@ ] }, "pf-t--global--border--width--extra-strong": { + "description": "Use as the strongest/widest border width for elements.", "type": "number", "value": "3px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the strongest/widest border width for elements.", "type": "number", "value": "{global.border.width.300}" }, @@ -12175,11 +12858,13 @@ ] }, "pf-t--global--border--width--box--default": { + "description": "Use as the default border width for containers like cards, panels, code editors, etc.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the default border width for containers like cards, panels, code editors, etc.", "type": "number", "value": "{global.border.width.100}" }, @@ -12225,11 +12910,13 @@ ] }, "pf-t--global--border--width--box--hover": { + "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", "type": "number", "value": "{global.border.width.100}" }, @@ -12275,11 +12962,13 @@ ] }, "pf-t--global--border--width--box--clicked": { + "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", "type": "number", "value": "2px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", "type": "number", "value": "{global.border.width.200}" }, @@ -12325,11 +13014,13 @@ ] }, "pf-t--global--border--width--box--status--default": { + "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", "type": "number", "value": "2px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", "type": "number", "value": "{global.border.width.200}" }, @@ -12376,11 +13067,13 @@ ] }, "pf-t--global--border--width--box--status--read": { + "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", "type": "number", "value": "{global.border.width.100}" }, @@ -12426,28 +13119,30 @@ } ] }, - "pf-t--global--border--width--button--default": { + "pf-t--global--border--width--action--default": { + "description": "Use as the default border width for actions like secondary and tertiary buttons", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the default border width for actions like secondary and tertiary buttons", "type": "number", "value": "{global.border.width.100}" }, - "name": "pf-t--global--border--width--button--default", + "name": "pf-t--global--border--width--action--default", "attributes": { "category": "global", "type": "border", "item": "width", - "subitem": "button", + "subitem": "action", "state": "default" }, "path": [ "global", "border", "width", - "button", + "action", "default" ], "references": [ @@ -12476,28 +13171,30 @@ } ] }, - "pf-t--global--border--width--button--hover": { + "pf-t--global--border--width--action--hover": { + "description": "Use as the hover state border width for actions like secondary and tertiary buttons", "type": "number", "value": "2px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the hover state border width for actions like secondary and tertiary buttons", "type": "number", "value": "{global.border.width.200}" }, - "name": "pf-t--global--border--width--button--hover", + "name": "pf-t--global--border--width--action--hover", "attributes": { "category": "global", "type": "border", "item": "width", - "subitem": "button", + "subitem": "action", "state": "hover" }, "path": [ "global", "border", "width", - "button", + "action", "hover" ], "references": [ @@ -12526,28 +13223,30 @@ } ] }, - "pf-t--global--border--width--button--clicked": { + "pf-t--global--border--width--action--clicked": { + "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", "type": "number", "value": "2px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", "type": "number", "value": "{global.border.width.200}" }, - "name": "pf-t--global--border--width--button--clicked", + "name": "pf-t--global--border--width--action--clicked", "attributes": { "category": "global", "type": "border", "item": "width", - "subitem": "button", + "subitem": "action", "state": "clicked" }, "path": [ "global", "border", "width", - "button", + "action", "clicked" ], "references": [ @@ -12577,11 +13276,13 @@ ] }, "pf-t--global--border--width--control--default": { + "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", "type": "number", "value": "{global.border.width.100}" }, @@ -12627,11 +13328,13 @@ ] }, "pf-t--global--border--width--control--hover": { + "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", "type": "number", "value": "{global.border.width.100}" }, @@ -12677,11 +13380,13 @@ ] }, "pf-t--global--border--width--control--clicked": { + "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", "type": "number", "value": "2px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", "type": "number", "value": "{global.border.width.200}" }, @@ -12865,11 +13570,13 @@ ] }, "pf-t--global--border--radius--sharp": { + "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", "type": "number", "value": "{global.border.radius.0}" }, @@ -12913,11 +13620,13 @@ ] }, "pf-t--global--border--radius--tiny": { + "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", "type": "number", "value": "{global.border.radius.100}" }, @@ -12961,11 +13670,13 @@ ] }, "pf-t--global--border--radius--small": { + "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", "type": "number", "value": "6px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", "type": "number", "value": "{global.border.radius.200}" }, @@ -13009,11 +13720,13 @@ ] }, "pf-t--global--border--radius--medium": { + "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", "type": "number", "value": "{global.border.radius.300}" }, @@ -13057,11 +13770,13 @@ ] }, "pf-t--global--border--radius--large": { + "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", "type": "number", "value": "24px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", "type": "number", "value": "{global.border.radius.400}" }, @@ -13105,11 +13820,13 @@ ] }, "pf-t--global--border--radius--pill": { + "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", "type": "number", "value": "999px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", "type": "number", "value": "{global.border.radius.500}" }, @@ -13291,11 +14008,13 @@ ] }, "pf-t--global--border--color--brand--default": { + "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "#0066cc", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "{global.color.brand.default}" }, @@ -13316,11 +14035,13 @@ ], "references": [ { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", "value": "#0066cc", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", "value": "{global.color.brand.200}" }, @@ -13389,11 +14110,13 @@ ] }, "pf-t--global--border--color--brand--hover": { + "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "#004d99", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "{global.color.brand.hover}" }, @@ -13414,11 +14137,13 @@ ], "references": [ { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", "value": "#004d99", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", "value": "{global.color.brand.300}" }, @@ -13487,11 +14212,13 @@ ] }, "pf-t--global--border--color--brand--clicked": { + "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "#004d99", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "{global.color.brand.clicked}" }, @@ -13512,11 +14239,13 @@ ], "references": [ { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", "value": "#004d99", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", "value": "{global.color.brand.300}" }, @@ -13585,11 +14314,13 @@ ] }, "pf-t--global--border--color--status--success--default": { + "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", "type": "color", "value": "#3d7317", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.success.default}" }, @@ -13611,11 +14342,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "#3d7317", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "{global.color.status.success.100}" }, @@ -13688,11 +14421,13 @@ ] }, "pf-t--global--border--color--status--success--hover": { + "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", "value": "#204d00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", "value": "{global.color.status.success.hover}" }, @@ -13714,11 +14449,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "#204d00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "{global.color.status.success.200}" }, @@ -13791,11 +14528,13 @@ ] }, "pf-t--global--border--color--status--success--clicked": { + "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", "value": "#204d00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", "value": "{global.color.status.success.clicked}" }, @@ -13817,11 +14556,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "#204d00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "{global.color.status.success.200}" }, @@ -13894,11 +14635,13 @@ ] }, "pf-t--global--border--color--status--warning--default": { + "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "#dca614", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.warning.200}" }, @@ -13970,11 +14713,13 @@ ] }, "pf-t--global--border--color--status--warning--hover": { + "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "#b98412", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.warning.300}" }, @@ -14046,11 +14791,13 @@ ] }, "pf-t--global--border--color--status--warning--clicked": { + "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "#b98412", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.warning.300}" }, @@ -14122,11 +14869,13 @@ ] }, "pf-t--global--border--color--status--danger--default": { + "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "#b1380b", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.danger.default}" }, @@ -14148,11 +14897,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "#b1380b", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "{global.color.status.danger.100}" }, @@ -14225,11 +14976,13 @@ ] }, "pf-t--global--border--color--status--danger--hover": { + "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.danger.hover}" }, @@ -14251,11 +15004,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "{global.color.status.danger.200}" }, @@ -14328,11 +15083,13 @@ ] }, "pf-t--global--border--color--status--danger--clicked": { + "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.danger.clicked}" }, @@ -14354,11 +15111,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "{global.color.status.danger.200}" }, @@ -14431,11 +15190,13 @@ ] }, "pf-t--global--border--color--status--info--default": { + "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "#5e40be", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.info.default}" }, @@ -14457,11 +15218,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "#5e40be", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "{global.color.status.info.100}" }, @@ -14534,11 +15297,13 @@ ] }, "pf-t--global--border--color--status--info--hover": { + "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "#3d2785", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.info.hover}" }, @@ -14560,11 +15325,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "#3d2785", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "{global.color.status.info.200}" }, @@ -14637,11 +15404,13 @@ ] }, "pf-t--global--border--color--status--info--clicked": { + "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "#3d2785", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.info.clicked}" }, @@ -14663,11 +15432,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "#3d2785", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "{global.color.status.info.200}" }, @@ -14740,11 +15511,13 @@ ] }, "pf-t--global--border--color--status--custom--default": { + "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "#147878", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.custom.default}" }, @@ -14766,11 +15539,13 @@ ], "references": [ { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#147878", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.100}" }, @@ -14843,11 +15618,13 @@ ] }, "pf-t--global--border--color--status--custom--hover": { + "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "#004d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.custom.hover}" }, @@ -14869,11 +15646,13 @@ ], "references": [ { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#004d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.200}" }, @@ -14946,11 +15725,13 @@ ] }, "pf-t--global--border--color--status--custom--clicked": { + "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "#004d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.custom.clicked}" }, @@ -14972,11 +15753,13 @@ ], "references": [ { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#004d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.200}" }, @@ -15049,11 +15832,13 @@ ] }, "pf-t--global--border--color--default": { + "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "#c7c7c7", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "{global.border.color.100}" }, @@ -15120,11 +15905,13 @@ ] }, "pf-t--global--border--color--hover": { + "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "#4394e5", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "{global.color.brand.100}" }, @@ -15191,11 +15978,13 @@ ] }, "pf-t--global--border--color--clicked": { + "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "#0066cc", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "{global.color.brand.200}" }, @@ -15262,11 +16051,13 @@ ] }, "pf-t--global--border--color--disabled": { + "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "#a3a3a3", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "{global.color.disabled.200}" }, @@ -15333,11 +16124,13 @@ ] }, "pf-t--global--border--color--alt": { + "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", "type": "color", "value": "{global.background.color.primary.default}" }, @@ -15431,11 +16224,13 @@ ] }, "pf-t--global--border--color--on-secondary": { + "description": "Use on borders/dividers that are placed on a secondary bkg color.", "type": "color", "value": "#707070", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use on borders/dividers that are placed on a secondary bkg color.", "type": "color", "value": "{global.border.color.300}" }, @@ -15502,11 +16297,13 @@ ] }, "pf-t--global--border--color--nonstatus--red--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "#f9a8a8", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.color.nonstatus.red.200}" }, @@ -15578,11 +16375,13 @@ ] }, "pf-t--global--border--color--nonstatus--red--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", "value": "#f56e6e", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.red.300}" }, @@ -15654,11 +16453,13 @@ ] }, "pf-t--global--border--color--nonstatus--red--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", "value": "#f56e6e", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.red.300}" }, @@ -15730,11 +16531,13 @@ ] }, "pf-t--global--border--color--nonstatus--orangered--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "#f89b78", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.orangered.200}" }, @@ -15806,11 +16609,13 @@ ] }, "pf-t--global--border--color--nonstatus--orangered--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "#f4784a", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.orangered.300}" }, @@ -15882,11 +16687,13 @@ ] }, "pf-t--global--border--color--nonstatus--orangered--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "#f4784a", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.orangered.300}" }, @@ -15958,11 +16765,13 @@ ] }, "pf-t--global--border--color--nonstatus--orange--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "#f8ae54", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.orange.200}" }, @@ -16034,11 +16843,13 @@ ] }, "pf-t--global--border--color--nonstatus--orange--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "#f5921b", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.orange.300}" }, @@ -16110,11 +16921,13 @@ ] }, "pf-t--global--border--color--nonstatus--orange--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "#f5921b", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.orange.300}" }, @@ -16186,13 +16999,15 @@ ] }, "pf-t--global--border--color--nonstatus--yellow--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", "value": "#ffcc17", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.gold.200}" + "value": "{global.color.nonstatus.yellow.200}" }, "name": "pf-t--global--border--color--nonstatus--yellow--default", "attributes": { @@ -16220,19 +17035,19 @@ "type": "color", "value": "{color.yellow.30}" }, - "name": "pf-t--global--color--nonstatus--gold--200", + "name": "pf-t--global--color--nonstatus--yellow--200", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "gold", + "subitem": "yellow", "state": "200" }, "path": [ "global", "color", "nonstatus", - "gold", + "yellow", "200" ], "references": [ @@ -16262,13 +17077,15 @@ ] }, "pf-t--global--border--color--nonstatus--yellow--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", "value": "#dca614", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.gold.300}" + "value": "{global.color.nonstatus.yellow.300}" }, "name": "pf-t--global--border--color--nonstatus--yellow--hover", "attributes": { @@ -16296,19 +17113,19 @@ "type": "color", "value": "{color.yellow.40}" }, - "name": "pf-t--global--color--nonstatus--gold--300", + "name": "pf-t--global--color--nonstatus--yellow--300", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "gold", + "subitem": "yellow", "state": "300" }, "path": [ "global", "color", "nonstatus", - "gold", + "yellow", "300" ], "references": [ @@ -16338,13 +17155,15 @@ ] }, "pf-t--global--border--color--nonstatus--yellow--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", "value": "#dca614", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.gold.300}" + "value": "{global.color.nonstatus.yellow.300}" }, "name": "pf-t--global--border--color--nonstatus--yellow--clicked", "attributes": { @@ -16372,19 +17191,19 @@ "type": "color", "value": "{color.yellow.40}" }, - "name": "pf-t--global--color--nonstatus--gold--300", + "name": "pf-t--global--color--nonstatus--yellow--300", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "gold", + "subitem": "yellow", "state": "300" }, "path": [ "global", "color", "nonstatus", - "gold", + "yellow", "300" ], "references": [ @@ -16414,11 +17233,13 @@ ] }, "pf-t--global--border--color--nonstatus--green--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "#afdc8f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.green.200}" }, @@ -16490,11 +17311,13 @@ ] }, "pf-t--global--border--color--nonstatus--green--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "#87bb62", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.green.300}" }, @@ -16566,11 +17389,13 @@ ] }, "pf-t--global--border--color--nonstatus--green--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "#87bb62", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.green.300}" }, @@ -16642,13 +17467,15 @@ ] }, "pf-t--global--border--color--nonstatus--teal--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", "value": "#9ad8d8", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.cyan.200}" + "value": "{global.color.nonstatus.teal.200}" }, "name": "pf-t--global--border--color--nonstatus--teal--default", "attributes": { @@ -16676,19 +17503,19 @@ "type": "color", "value": "{color.teal.30}" }, - "name": "pf-t--global--color--nonstatus--cyan--200", + "name": "pf-t--global--color--nonstatus--teal--200", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "cyan", + "subitem": "teal", "state": "200" }, "path": [ "global", "color", "nonstatus", - "cyan", + "teal", "200" ], "references": [ @@ -16718,13 +17545,15 @@ ] }, "pf-t--global--border--color--nonstatus--teal--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", "value": "#63bdbd", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.cyan.300}" + "value": "{global.color.nonstatus.teal.300}" }, "name": "pf-t--global--border--color--nonstatus--teal--hover", "attributes": { @@ -16752,19 +17581,19 @@ "type": "color", "value": "{color.teal.40}" }, - "name": "pf-t--global--color--nonstatus--cyan--300", + "name": "pf-t--global--color--nonstatus--teal--300", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "cyan", + "subitem": "teal", "state": "300" }, "path": [ "global", "color", "nonstatus", - "cyan", + "teal", "300" ], "references": [ @@ -16794,13 +17623,15 @@ ] }, "pf-t--global--border--color--nonstatus--teal--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", "value": "#63bdbd", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.cyan.300}" + "value": "{global.color.nonstatus.teal.300}" }, "name": "pf-t--global--border--color--nonstatus--teal--clicked", "attributes": { @@ -16828,19 +17659,19 @@ "type": "color", "value": "{color.teal.40}" }, - "name": "pf-t--global--color--nonstatus--cyan--300", + "name": "pf-t--global--color--nonstatus--teal--300", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "cyan", + "subitem": "teal", "state": "300" }, "path": [ "global", "color", "nonstatus", - "cyan", + "teal", "300" ], "references": [ @@ -16870,11 +17701,13 @@ ] }, "pf-t--global--border--color--nonstatus--blue--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "#92c5f9", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.blue.200}" }, @@ -16946,11 +17779,13 @@ ] }, "pf-t--global--border--color--nonstatus--blue--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "#4394e5", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.blue.300}" }, @@ -17022,11 +17857,13 @@ ] }, "pf-t--global--border--color--nonstatus--blue--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "#4394e5", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.blue.300}" }, @@ -17098,11 +17935,13 @@ ] }, "pf-t--global--border--color--nonstatus--purple--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "#b6a6e9", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.purple.200}" }, @@ -17174,11 +18013,13 @@ ] }, "pf-t--global--border--color--nonstatus--purple--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "#876fd4", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.purple.300}" }, @@ -17250,11 +18091,13 @@ ] }, "pf-t--global--border--color--nonstatus--purple--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "#876fd4", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.purple.300}" }, @@ -17326,11 +18169,13 @@ ] }, "pf-t--global--border--color--nonstatus--gray--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "#c7c7c7", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.gray.200}" }, @@ -17402,11 +18247,13 @@ ] }, "pf-t--global--border--color--nonstatus--gray--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "#a3a3a3", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.gray.300}" }, @@ -17478,11 +18325,13 @@ ] }, "pf-t--global--border--color--nonstatus--gray--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "#a3a3a3", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.gray.300}" }, @@ -17623,11 +18472,13 @@ ] }, "pf-t--global--font--family--body": { + "description": "Use to define the font family for body text", "type": "number", "value": "Red Hat Text VF", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the font family for body text", "type": "number", "value": "{global.font.family.100}" }, @@ -17671,11 +18522,13 @@ ] }, "pf-t--global--font--family--heading": { + "description": "Use to define the font family for heading text", "type": "number", "value": "Red Hat Display VF", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the font family for heading text", "type": "number", "value": "{global.font.family.200}" }, @@ -17719,11 +18572,13 @@ ] }, "pf-t--global--font--family--mono": { + "description": "Use to define the font family for mono text", "type": "number", "value": "Red Hat Mono VF", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the font family for mono text", "type": "number", "value": "{global.font.family.300}" }, @@ -17766,22 +18621,104 @@ } ] }, - "pf-t--global--font--weight--body": { - "100": { + "pf-t--global--font--weight--100": { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": true + "value": 400 + }, + "name": "pf-t--global--font--weight--100", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "100" + }, + "path": [ + "global", + "font", + "weight", + "100" + ] + }, + "pf-t--global--font--weight--200": { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--font--weight--200", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "200" }, - "200": { + "path": [ + "global", + "font", + "weight", + "200" + ] + }, + "pf-t--global--font--weight--300": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { "type": "number", - "value": 500, - "filePath": "tokens/default/base.dimension.json", - "isSource": true + "value": 700 + }, + "name": "pf-t--global--font--weight--300", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "300" + }, + "path": [ + "global", + "font", + "weight", + "300" + ] + }, + "pf-t--global--font--weight--400": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 700 + }, + "name": "pf-t--global--font--weight--400", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "400" }, + "path": [ + "global", + "font", + "weight", + "400" + ] + }, + "pf-t--global--font--weight--body": { + "description": "Use to define the default weight for body text", "type": "number", "value": 400, "bold": { + "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", "type": "number", "value": 500, "filePath": "tokens/default/semantic.dimension.json", @@ -17790,23 +18727,13 @@ "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { - "100": { - "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": true - }, - "200": { - "type": "number", - "value": 500, - "filePath": "tokens/default/base.dimension.json", - "isSource": true - }, + "description": "Use to define the default weight for body text", "type": "number", - "value": "{global.font.weight.body.100}", + "value": "{global.font.weight.100}", "bold": { + "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", "type": "number", - "value": "{global.font.weight.body.200}", + "value": "{global.font.weight.200}", "filePath": "tokens/default/semantic.dimension.json", "isSource": true } @@ -17829,26 +18756,33 @@ "type": "number", "value": 400, "filePath": "tokens/default/base.dimension.json", - "isSource": true + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--font--weight--100", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "100" + }, + "path": [ + "global", + "font", + "weight", + "100" + ] } ] }, "pf-t--global--font--weight--heading": { - "100": { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": true - }, - "200": { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": true - }, + "description": "Use to define the default weight for heading text", "type": "number", "value": 700, "bold": { + "description": "Use to define the bold weight for heading text, often used to add emphasis.", "type": "number", "value": 700, "filePath": "tokens/default/semantic.dimension.json", @@ -17857,23 +18791,13 @@ "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { - "100": { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": true - }, - "200": { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": true - }, + "description": "Use to define the default weight for heading text", "type": "number", - "value": "{global.font.weight.heading.100}", + "value": "{global.font.weight.300}", "bold": { + "description": "Use to define the bold weight for heading text, often used to add emphasis.", "type": "number", - "value": "{global.font.weight.heading.200}", + "value": "{global.font.weight.400}", "filePath": "tokens/default/semantic.dimension.json", "isSource": true } @@ -17896,7 +18820,24 @@ "type": "number", "value": 700, "filePath": "tokens/default/base.dimension.json", - "isSource": true + "isSource": true, + "original": { + "type": "number", + "value": 700 + }, + "name": "pf-t--global--font--weight--300", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "300" + }, + "path": [ + "global", + "font", + "weight", + "300" + ] } ] }, @@ -17946,1228 +18887,569 @@ "200" ] }, - "pf-t--global--font--line-height--figma-only--100": { + "pf-t--global--font--line-height--body": { + "description": "Use to define the line height for body text", "type": "number", - "value": 18, - "filePath": "tokens/default/base.dimension.json", + "value": 1.2999999523162842, + "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the line height for body text", "type": "number", - "value": 18 + "value": "{global.font.line-height.100}" }, - "name": "pf-t--global--font--line-height--figma-only--100", + "name": "pf-t--global--font--line-height--body", "attributes": { "category": "global", "type": "font", "item": "line-height", - "subitem": "figma-only", - "state": "100" + "subitem": "body" }, "path": [ "global", "font", "line-height", - "figma-only", - "100" + "body" + ], + "references": [ + { + "type": "number", + "value": 1.2999999523162842, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1.2999999523162842 + }, + "name": "pf-t--global--font--line-height--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "100" + }, + "path": [ + "global", + "font", + "line-height", + "100" + ] + } ] }, - "pf-t--global--font--line-height--figma-only--200": { + "pf-t--global--font--line-height--heading": { + "description": "Use to define the line height for heading text", "type": "number", - "value": 21, - "filePath": "tokens/default/base.dimension.json", + "value": 1.5, + "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the line height for heading text", "type": "number", - "value": 21 + "value": "{global.font.line-height.200}" }, - "name": "pf-t--global--font--line-height--figma-only--200", + "name": "pf-t--global--font--line-height--heading", "attributes": { "category": "global", "type": "font", "item": "line-height", - "subitem": "figma-only", - "state": "200" + "subitem": "heading" }, "path": [ "global", "font", "line-height", - "figma-only", + "heading" + ], + "references": [ + { + "type": "number", + "value": 1.5, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1.5 + }, + "name": "pf-t--global--font--line-height--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "200" + }, + "path": [ + "global", + "font", + "line-height", + "200" + ] + } + ] + }, + "pf-t--global--font--size--100": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + }, + "pf-t--global--font--size--200": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", "200" ] }, - "pf-t--global--font--line-height--figma-only--300": { + "pf-t--global--font--size--300": { "type": "number", - "value": 24, + "value": "16px", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { "type": "number", - "value": 24 + "value": 16 }, - "name": "pf-t--global--font--line-height--figma-only--300", + "name": "pf-t--global--font--size--300", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "300" + "item": "size", + "subitem": "300" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "300" ] }, - "pf-t--global--font--line-height--figma-only--400": { + "pf-t--global--font--size--400": { "type": "number", - "value": 23.399999618530273, + "value": "18px", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { "type": "number", - "value": 23.399999618530273 + "value": 18 }, - "name": "pf-t--global--font--line-height--figma-only--400", + "name": "pf-t--global--font--size--400", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "400" + "item": "size", + "subitem": "400" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "400" ] }, - "pf-t--global--font--line-height--figma-only--500": { + "pf-t--global--font--size--500": { "type": "number", - "value": 26, + "value": "20px", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { "type": "number", - "value": 26 + "value": 20 }, - "name": "pf-t--global--font--line-height--figma-only--500", + "name": "pf-t--global--font--size--500", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "500" + "item": "size", + "subitem": "500" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "500" ] }, - "pf-t--global--font--line-height--figma-only--600": { + "pf-t--global--font--size--600": { "type": "number", - "value": 28.600000381469727, + "value": "22px", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { "type": "number", - "value": 28.600000381469727 + "value": 22 }, - "name": "pf-t--global--font--line-height--figma-only--600", + "name": "pf-t--global--font--size--600", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "600" + "item": "size", + "subitem": "600" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "600" ] }, - "pf-t--global--font--line-height--figma-only--700": { + "pf-t--global--font--size--700": { "type": "number", - "value": 36.400001525878906, + "value": "28px", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { "type": "number", - "value": 36.400001525878906 + "value": 28 }, - "name": "pf-t--global--font--line-height--figma-only--700", + "name": "pf-t--global--font--size--700", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "700" + "item": "size", + "subitem": "700" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "700" ] }, - "pf-t--global--font--line-height--figma-only--800": { + "pf-t--global--font--size--800": { "type": "number", - "value": 46.79999923706055, + "value": "36px", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { "type": "number", - "value": 46.79999923706055 + "value": 36 }, - "name": "pf-t--global--font--line-height--figma-only--800", + "name": "pf-t--global--font--size--800", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "800" + "item": "size", + "subitem": "800" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "800" ] }, - "pf-t--global--font--line-height--figma-only--body--small": { + "pf-t--global--font--size--body--sm": { + "description": "Use for a smaller font size in body sections.", "type": "number", - "value": 18, + "value": "12px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "{global.font.line-height.figma-only.100}" + "value": "{global.font.size.xs}" }, - "name": "pf-t--global--font--line-height--figma-only--body--small", + "name": "pf-t--global--font--size--body--sm", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "body" + "item": "size", + "subitem": "body", + "state": "sm" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "body", - "small" + "sm" ], "references": [ { "type": "number", - "value": 18, - "filePath": "tokens/default/base.dimension.json", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { "type": "number", - "value": 18 + "value": "{global.font.size.100}" }, - "name": "pf-t--global--font--line-height--figma-only--100", + "name": "pf-t--global--font--size--xs", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "100" + "item": "size", + "subitem": "xs" }, "path": [ "global", "font", - "line-height", - "figma-only", - "100" + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } ] } ] }, - "pf-t--global--font--line-height--figma-only--body--default": { + "pf-t--global--font--size--body--default": { + "description": "Use as the default font size in body sections.", "type": "number", - "value": 21, + "value": "14px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the default font size in body sections.", "type": "number", - "value": "{global.font.line-height.figma-only.200}" + "value": "{global.font.size.sm}" }, - "name": "pf-t--global--font--line-height--figma-only--body--default", + "name": "pf-t--global--font--size--body--default", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "body" + "item": "size", + "subitem": "body", + "state": "default" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "body", "default" ], "references": [ { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": 21, - "filePath": "tokens/default/base.dimension.json", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": 21 + "value": "{global.font.size.200}" }, - "name": "pf-t--global--font--line-height--figma-only--200", + "name": "pf-t--global--font--size--sm", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "200" + "item": "size", + "subitem": "sm" }, "path": [ "global", "font", - "line-height", - "figma-only", - "200" + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } ] } ] }, - "pf-t--global--font--line-height--figma-only--body--large": { + "pf-t--global--font--size--body--lg": { + "description": "Use for a larger font size in body sections.", "type": "number", - "value": 24, + "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use for a larger font size in body sections.", "type": "number", - "value": "{global.font.line-height.figma-only.300}" + "value": "{global.font.size.md}" }, - "name": "pf-t--global--font--line-height--figma-only--body--large", + "name": "pf-t--global--font--size--body--lg", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "body" + "item": "size", + "subitem": "body", + "state": "lg" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "body", - "large" + "lg" ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": 24, - "filePath": "tokens/default/base.dimension.json", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": 24 + "value": "{global.font.size.300}" }, - "name": "pf-t--global--font--line-height--figma-only--300", + "name": "pf-t--global--font--size--md", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "300" + "item": "size", + "subitem": "md" }, "path": [ "global", "font", - "line-height", - "figma-only", - "300" + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } ] } ] }, - "pf-t--global--font--line-height--figma-only--heading--xs": { + "pf-t--global--font--size--heading--h1": { + "description": "Use as the font size for first level headings.", "type": "number", - "value": 24, + "value": "22px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for first level headings.", "type": "number", - "value": "{global.font.line-height.figma-only.300}" + "value": "{global.font.size.2xl}" }, - "name": "pf-t--global--font--line-height--figma-only--heading--xs", + "name": "pf-t--global--font--size--heading--h1", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "heading" + "item": "size", + "subitem": "heading", + "state": "h1" }, "path": [ "global", "font", - "line-height", - "figma-only", + "size", "heading", - "xs" + "h1" ], "references": [ { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": 24, - "filePath": "tokens/default/base.dimension.json", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": 24 + "value": "{global.font.size.600}" }, - "name": "pf-t--global--font--line-height--figma-only--300", + "name": "pf-t--global--font--size--2xl", "attributes": { "category": "global", "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "300" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "300" - ] - } - ] - }, - "pf-t--global--font--line-height--figma-only--heading--sm": { - "type": "number", - "value": 23.399999618530273, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.line-height.figma-only.400}" - }, - "name": "pf-t--global--font--line-height--figma-only--heading--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "heading" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "heading", - "sm" - ], - "references": [ - { - "type": "number", - "value": 23.399999618530273, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 23.399999618530273 - }, - "name": "pf-t--global--font--line-height--figma-only--400", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "400" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "400" - ] - } - ] - }, - "pf-t--global--font--line-height--figma-only--heading--md": { - "type": "number", - "value": 26, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.line-height.figma-only.500}" - }, - "name": "pf-t--global--font--line-height--figma-only--heading--md", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "heading" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "heading", - "md" - ], - "references": [ - { - "type": "number", - "value": 26, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 26 - }, - "name": "pf-t--global--font--line-height--figma-only--500", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "500" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "500" - ] - } - ] - }, - "pf-t--global--font--line-height--figma-only--heading--lg": { - "type": "number", - "value": 28.600000381469727, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.line-height.figma-only.600}" - }, - "name": "pf-t--global--font--line-height--figma-only--heading--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "heading" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "heading", - "lg" - ], - "references": [ - { - "type": "number", - "value": 28.600000381469727, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 28.600000381469727 - }, - "name": "pf-t--global--font--line-height--figma-only--600", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "600" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "600" - ] - } - ] - }, - "pf-t--global--font--line-height--figma-only--heading--xl": { - "type": "number", - "value": 36.400001525878906, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.line-height.figma-only.700}" - }, - "name": "pf-t--global--font--line-height--figma-only--heading--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "heading" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "heading", - "xl" - ], - "references": [ - { - "type": "number", - "value": 36.400001525878906, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 36.400001525878906 - }, - "name": "pf-t--global--font--line-height--figma-only--700", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "700" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "700" - ] - } - ] - }, - "pf-t--global--font--line-height--figma-only--heading--2xl": { - "type": "number", - "value": 46.79999923706055, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.line-height.figma-only.800}" - }, - "name": "pf-t--global--font--line-height--figma-only--heading--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "heading" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "heading", - "2xl" - ], - "references": [ - { - "type": "number", - "value": 46.79999923706055, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 46.79999923706055 - }, - "name": "pf-t--global--font--line-height--figma-only--800", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "figma-only", - "state": "800" - }, - "path": [ - "global", - "font", - "line-height", - "figma-only", - "800" - ] - } - ] - }, - "pf-t--global--font--line-height--body": { - "type": "number", - "value": 1.2999999523162842, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.line-height.100}" - }, - "name": "pf-t--global--font--line-height--body", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "body" - }, - "path": [ - "global", - "font", - "line-height", - "body" - ], - "references": [ - { - "type": "number", - "value": 1.2999999523162842, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1.2999999523162842 - }, - "name": "pf-t--global--font--line-height--100", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "100" - }, - "path": [ - "global", - "font", - "line-height", - "100" - ] - } - ] - }, - "pf-t--global--font--line-height--heading": { - "type": "number", - "value": 1.5, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.line-height.200}" - }, - "name": "pf-t--global--font--line-height--heading", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "heading" - }, - "path": [ - "global", - "font", - "line-height", - "heading" - ], - "references": [ - { - "type": "number", - "value": 1.5, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1.5 - }, - "name": "pf-t--global--font--line-height--200", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "200" - }, - "path": [ - "global", - "font", - "line-height", - "200" - ] - } - ] - }, - "pf-t--global--font--size--100": { - "type": "number", - "value": "12px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - }, - "pf-t--global--font--size--200": { - "type": "number", - "value": "14px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - }, - "pf-t--global--font--size--300": { - "type": "number", - "value": "16px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - }, - "pf-t--global--font--size--400": { - "type": "number", - "value": "18px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - }, - "pf-t--global--font--size--500": { - "type": "number", - "value": "20px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - }, - "pf-t--global--font--size--600": { - "type": "number", - "value": "22px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - }, - "pf-t--global--font--size--700": { - "type": "number", - "value": "28px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 28 - }, - "name": "pf-t--global--font--size--700", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "700" - }, - "path": [ - "global", - "font", - "size", - "700" - ] - }, - "pf-t--global--font--size--800": { - "type": "number", - "value": "36px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 36 - }, - "name": "pf-t--global--font--size--800", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "800" - }, - "path": [ - "global", - "font", - "size", - "800" - ] - }, - "pf-t--global--font--size--body--sm": { - "type": "number", - "value": "12px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.size.xs}" - }, - "name": "pf-t--global--font--size--body--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "sm" - }, - "path": [ - "global", - "font", - "size", - "body", - "sm" - ], - "references": [ - { - "type": "number", - "value": "12px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { - "type": "number", - "value": "12px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--body--default": { - "type": "number", - "value": "14px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.size.sm}" - }, - "name": "pf-t--global--font--size--body--default", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "default" - }, - "path": [ - "global", - "font", - "size", - "body", - "default" - ], - "references": [ - { - "type": "number", - "value": "14px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { - "type": "number", - "value": "14px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--body--lg": { - "type": "number", - "value": "16px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--body--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "lg" - }, - "path": [ - "global", - "font", - "size", - "body", - "lg" - ], - "references": [ - { - "type": "number", - "value": "16px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "16px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--heading--h1": { - "type": "number", - "value": "22px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.size.2xl}" - }, - "name": "pf-t--global--font--size--heading--h1", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h1" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h1" - ], - "references": [ - { - "type": "number", - "value": "22px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" + "item": "size", + "subitem": "2xl" }, "path": [ "global", @@ -19204,11 +19486,13 @@ ] }, "pf-t--global--font--size--heading--h2": { + "description": "Use as the font size for second level headings.", "type": "number", "value": "20px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for second level headings.", "type": "number", "value": "{global.font.size.xl}" }, @@ -19229,11 +19513,13 @@ ], "references": [ { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", "value": "20px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.500}" }, @@ -19279,11 +19565,13 @@ ] }, "pf-t--global--font--size--heading--h3": { + "description": "Use as the font size for third level headings.", "type": "number", "value": "18px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for third level headings.", "type": "number", "value": "{global.font.size.lg}" }, @@ -19304,11 +19592,13 @@ ], "references": [ { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", "value": "18px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.400}" }, @@ -19354,11 +19644,13 @@ ] }, "pf-t--global--font--size--heading--h4": { + "description": "Use as the font size for fourth-level headings.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for fourth-level headings.", "type": "number", "value": "{global.font.size.md}" }, @@ -19379,11 +19671,13 @@ ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.300}" }, @@ -19429,11 +19723,13 @@ ] }, "pf-t--global--font--size--heading--h5": { + "description": "Use as the font size for fifth level headings.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for fifth level headings.", "type": "number", "value": "{global.font.size.md}" }, @@ -19454,11 +19750,13 @@ ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.300}" }, @@ -19504,11 +19802,13 @@ ] }, "pf-t--global--font--size--heading--h6": { + "description": "Use as the font size for sixth level headings.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for sixth level headings.", "type": "number", "value": "{global.font.size.md}" }, @@ -19529,11 +19829,13 @@ ], "references": [ { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.300}" }, @@ -19627,11 +19929,13 @@ ] }, "pf-t--global--font--size--sm": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", "value": "14px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.200}" }, @@ -19675,11 +19979,13 @@ ] }, "pf-t--global--font--size--md": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "16px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.300}" }, @@ -19723,11 +20029,13 @@ ] }, "pf-t--global--font--size--lg": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", "value": "18px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.400}" }, @@ -19771,11 +20079,13 @@ ] }, "pf-t--global--font--size--xl": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", "value": "20px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.500}" }, @@ -19819,11 +20129,13 @@ ] }, "pf-t--global--font--size--2xl": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", "value": "22px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.600}" }, @@ -19867,11 +20179,13 @@ ] }, "pf-t--global--font--size--3xl": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "28px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.700}" }, @@ -19915,11 +20229,13 @@ ] }, "pf-t--global--font--size--4xl": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "36px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.800}" }, @@ -20514,11 +20830,13 @@ ] }, "pf-t--global--box-shadow--X--sm--default": { + "description": "Use to define the X value for a default small box-shadow, like in sticky sections", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the X value for a default small box-shadow, like in sticky sections", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -20564,11 +20882,13 @@ ] }, "pf-t--global--box-shadow--X--sm--top": { + "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -20614,11 +20934,13 @@ ] }, "pf-t--global--box-shadow--X--sm--bottom": { + "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -20664,11 +20986,13 @@ ] }, "pf-t--global--box-shadow--X--sm--left": { + "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", "value": "-1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", "value": "{global.box-shadow.X.300}" }, @@ -20714,11 +21038,13 @@ ] }, "pf-t--global--box-shadow--X--sm--right": { + "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", "value": "{global.box-shadow.X.500}" }, @@ -20764,11 +21090,13 @@ ] }, "pf-t--global--box-shadow--X--md--default": { + "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -20814,11 +21142,13 @@ ] }, "pf-t--global--box-shadow--X--md--top": { + "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -20864,11 +21194,13 @@ ] }, "pf-t--global--box-shadow--X--md--bottom": { + "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -20914,11 +21246,13 @@ ] }, "pf-t--global--box-shadow--X--md--left": { + "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", "value": "-4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", "value": "{global.box-shadow.X.200}" }, @@ -20964,11 +21298,13 @@ ] }, "pf-t--global--box-shadow--X--md--right": { + "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", "value": "{global.box-shadow.X.600}" }, @@ -21014,11 +21350,13 @@ ] }, "pf-t--global--box-shadow--X--lg--default": { + "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -21064,11 +21402,13 @@ ] }, "pf-t--global--box-shadow--X--lg--top": { + "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -21114,11 +21454,13 @@ ] }, "pf-t--global--box-shadow--X--lg--bottom": { + "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "{global.box-shadow.X.400}" }, @@ -21164,11 +21506,13 @@ ] }, "pf-t--global--box-shadow--X--lg--left": { + "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", "type": "number", "value": "-8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", "type": "number", "value": "{global.box-shadow.X.100}" }, @@ -21214,11 +21558,13 @@ ] }, "pf-t--global--box-shadow--X--lg--right": { + "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", "type": "number", "value": "{global.box-shadow.X.700}" }, @@ -21425,11 +21771,13 @@ ] }, "pf-t--global--box-shadow--Y--sm--default": { + "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", "type": "number", "value": "{global.box-shadow.Y.500}" }, @@ -21475,11 +21823,13 @@ ] }, "pf-t--global--box-shadow--Y--sm--top": { + "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", "value": "-1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", "value": "{global.box-shadow.Y.300}" }, @@ -21525,11 +21875,13 @@ ] }, "pf-t--global--box-shadow--Y--sm--bottom": { + "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", "value": "1px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", "value": "{global.box-shadow.Y.500}" }, @@ -21575,11 +21927,13 @@ ] }, "pf-t--global--box-shadow--Y--sm--left": { + "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", "value": "{global.box-shadow.Y.400}" }, @@ -21625,11 +21979,13 @@ ] }, "pf-t--global--box-shadow--Y--sm--right": { + "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", "value": "{global.box-shadow.Y.400}" }, @@ -21675,11 +22031,13 @@ ] }, "pf-t--global--box-shadow--Y--md--default": { + "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", "value": "{global.box-shadow.Y.600}" }, @@ -21725,11 +22083,13 @@ ] }, "pf-t--global--box-shadow--Y--md--top": { + "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", "type": "number", "value": "-4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", "type": "number", "value": "{global.box-shadow.Y.200}" }, @@ -21775,11 +22135,13 @@ ] }, "pf-t--global--box-shadow--Y--md--bottom": { + "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "{global.box-shadow.Y.600}" }, @@ -21825,11 +22187,13 @@ ] }, "pf-t--global--box-shadow--Y--md--left": { + "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", "value": "{global.box-shadow.Y.400}" }, @@ -21875,11 +22239,13 @@ ] }, "pf-t--global--box-shadow--Y--md--right": { + "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", "value": "{global.box-shadow.Y.400}" }, @@ -21925,11 +22291,13 @@ ] }, "pf-t--global--box-shadow--Y--lg--default": { + "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", "type": "number", "value": "{global.box-shadow.Y.700}" }, @@ -21975,11 +22343,13 @@ ] }, "pf-t--global--box-shadow--Y--lg--top": { + "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", "type": "number", "value": "-8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", "type": "number", "value": "{global.box-shadow.Y.100}" }, @@ -22025,11 +22395,13 @@ ] }, "pf-t--global--box-shadow--Y--lg--bottom": { + "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "{global.box-shadow.Y.700}" }, @@ -22075,11 +22447,13 @@ ] }, "pf-t--global--box-shadow--Y--lg--left": { + "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", "type": "number", "value": "{global.box-shadow.Y.400}" }, @@ -22125,11 +22499,13 @@ ] }, "pf-t--global--box-shadow--Y--lg--right": { + "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", "type": "number", "value": "{global.box-shadow.Y.400}" }, @@ -22176,12 +22552,12 @@ }, "pf-t--global--box-shadow--blur--100": { "type": "number", - "value": "2px", + "value": "4px", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { "type": "number", - "value": 2 + "value": 4 }, "name": "pf-t--global--box-shadow--blur--100", "attributes": { @@ -22244,11 +22620,13 @@ ] }, "pf-t--global--box-shadow--blur--sm": { + "description": "Use to define the blur for a small box-shadow", "type": "number", - "value": "2px", + "value": "4px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the blur for a small box-shadow", "type": "number", "value": "{global.box-shadow.blur.100}" }, @@ -22268,12 +22646,12 @@ "references": [ { "type": "number", - "value": "2px", + "value": "4px", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { "type": "number", - "value": 2 + "value": 4 }, "name": "pf-t--global--box-shadow--blur--100", "attributes": { @@ -22292,11 +22670,13 @@ ] }, "pf-t--global--box-shadow--blur--md": { + "description": "Use to define the blur for a medium box-shadow", "type": "number", "value": "8px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the blur for a medium box-shadow", "type": "number", "value": "{global.box-shadow.blur.200}" }, @@ -22340,11 +22720,13 @@ ] }, "pf-t--global--box-shadow--blur--lg": { + "description": "Use to define the blue for a large box-shadow", "type": "number", "value": "24px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the blue for a large box-shadow", "type": "number", "value": "{global.box-shadow.blur.300}" }, @@ -22411,11 +22793,13 @@ ] }, "pf-t--global--box-shadow--spread--sm": { + "description": "Use to define the spread for a small box-shadow", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the spread for a small box-shadow", "type": "number", "value": "{global.box-shadow.spread.100}" }, @@ -22459,11 +22843,13 @@ ] }, "pf-t--global--box-shadow--spread--md": { + "description": "Use to define the spread of a medium box-shadow", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the spread of a medium box-shadow", "type": "number", "value": "{global.box-shadow.spread.100}" }, @@ -22507,11 +22893,13 @@ ] }, "pf-t--global--box-shadow--spread--lg": { + "description": "Use to define the spread of a large box-shadow", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define the spread of a large box-shadow", "type": "number", "value": "{global.box-shadow.spread.100}" }, @@ -22601,11 +22989,13 @@ ] }, "pf-t--global--box-shadow--color--sm": { + "description": "Use as the color of small box-shadows.", "type": "color", "value": "rgba(0, 0, 0, 0.1600)", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of small box-shadows.", "type": "color", "value": "{global.box-shadow.color.100}" }, @@ -22649,11 +23039,13 @@ ] }, "pf-t--global--box-shadow--color--md": { + "description": "Use as the color of medium box-shadows.", "type": "color", "value": "rgba(0, 0, 0, 0.1200)", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of medium box-shadows.", "type": "color", "value": "{global.box-shadow.color.200}" }, @@ -22697,11 +23089,13 @@ ] }, "pf-t--global--box-shadow--color--lg": { + "description": "Use as the color of large box-shadows.", "type": "color", "value": "rgba(0, 0, 0, 0.1200)", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of large box-shadows.", "type": "color", "value": "{global.box-shadow.color.200}" }, @@ -22934,11 +23328,13 @@ ] }, "pf-t--global--breakpoint--xs": { + "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.100}" }, @@ -22978,11 +23374,13 @@ ] }, "pf-t--global--breakpoint--sm": { + "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "576px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.200}" }, @@ -23022,11 +23420,13 @@ ] }, "pf-t--global--breakpoint--md": { + "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "768px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.300}" }, @@ -23066,11 +23466,13 @@ ] }, "pf-t--global--breakpoint--lg": { + "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "992px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.400}" }, @@ -23110,11 +23512,13 @@ ] }, "pf-t--global--breakpoint--xl": { + "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "1200px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.500}" }, @@ -23154,11 +23558,13 @@ ] }, "pf-t--global--breakpoint--2xl": { + "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "1450px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.600}" }, @@ -23198,11 +23604,13 @@ ] }, "pf-t--global--breakpoint--height--sm": { + "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "0px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.100}" }, @@ -23244,11 +23652,13 @@ ] }, "pf-t--global--breakpoint--height--md": { + "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "640px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.250}" }, @@ -23290,11 +23700,13 @@ ] }, "pf-t--global--breakpoint--height--lg": { + "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "768px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.300}" }, @@ -23336,11 +23748,13 @@ ] }, "pf-t--global--breakpoint--height--xl": { + "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "960px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.350}" }, @@ -23382,11 +23796,13 @@ ] }, "pf-t--global--breakpoint--height--2xl": { + "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "1280px", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { + "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.550}" }, @@ -24054,13 +24470,13 @@ ] }, "pf-t--global--background--color--primary--clicked": { - "description": "Use as the selected state for primary backgrounds", + "description": "Use as the clicked state for primary backgrounds", "type": "color", "value": "#f2f2f2", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { - "description": "Use as the selected state for primary backgrounds", + "description": "Use as the clicked state for primary backgrounds", "type": "color", "value": "{global.background.color.200}" }, @@ -24279,13 +24695,13 @@ ] }, "pf-t--global--background--color--secondary--clicked": { - "description": "Use as the selected state for secondary backgrounds", + "description": "Use as the clicked state for secondary backgrounds", "type": "color", "value": "#e0e0e0", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { - "description": "Use as the selected state for secondary backgrounds", + "description": "Use as the clicked state for secondary backgrounds", "type": "color", "value": "{global.background.color.300}" }, @@ -24354,13 +24770,13 @@ ] }, "pf-t--global--background--color--floating--default": { - "description": "Use as background color for components that show over top of other content such as toast alerts, menus, modals, overlay drawers, etc.", + "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { - "description": "Use as background color for components that show over top of other content such as toast alerts, menus, modals, overlay drawers, etc.", + "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", "type": "color", "value": "{global.background.color.100}" }, @@ -24502,13 +24918,13 @@ ] }, "pf-t--global--background--color--floating--clicked": { - "description": "Use as the selected state for floating backgrounds", + "description": "Use as the clicked state for floating backgrounds", "type": "color", "value": "#f2f2f2", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { - "description": "Use as the selected state for floating backgrounds", + "description": "Use as the clicked state for floating backgrounds", "type": "color", "value": "{global.background.color.200}" }, @@ -25303,11 +25719,13 @@ ] }, "pf-t--global--color--brand--default": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", "value": "#0066cc", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", "value": "{global.color.brand.200}" }, @@ -25374,11 +25792,13 @@ ] }, "pf-t--global--color--brand--hover": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", "value": "#004d99", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", "value": "{global.color.brand.300}" }, @@ -25445,11 +25865,13 @@ ] }, "pf-t--global--color--brand--clicked": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", "value": "#004d99", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", "value": "{global.color.brand.300}" }, @@ -25746,11 +26168,13 @@ ] }, "pf-t--global--color--favorite--default": { + "description": "Use as the default color for elements that have been favorited", "type": "color", "value": "#ffcc17", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for elements that have been favorited", "type": "color", "value": "{global.color.favorite.100}" }, @@ -25817,11 +26241,13 @@ ] }, "pf-t--global--color--favorite--hover": { + "description": "Use as the hover state for elements that have been favorited", "type": "color", "value": "#dca614", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for elements that have been favorited", "type": "color", "value": "{global.color.favorite.200}" }, @@ -25888,11 +26314,13 @@ ] }, "pf-t--global--color--favorite--clicked": { + "description": "Use as the clicked state for elements that have been favorited", "type": "color", "value": "#dca614", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for elements that have been favorited", "type": "color", "value": "{global.color.favorite.200}" }, @@ -26055,11 +26483,13 @@ ] }, "pf-t--global--color--status--success--default": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "#3d7317", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "{global.color.status.success.100}" }, @@ -26130,11 +26560,13 @@ ] }, "pf-t--global--color--status--success--hover": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "#204d00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "{global.color.status.success.200}" }, @@ -26205,11 +26637,13 @@ ] }, "pf-t--global--color--status--success--clicked": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "#204d00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "{global.color.status.success.200}" }, @@ -26424,11 +26858,13 @@ ] }, "pf-t--global--color--status--warning--default": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", "value": "#ffcc17", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", "value": "{global.color.status.warning.100}" }, @@ -26499,11 +26935,13 @@ ] }, "pf-t--global--color--status--warning--hover": { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", "value": "#dca614", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", "value": "{global.color.status.warning.200}" }, @@ -26574,11 +27012,13 @@ ] }, "pf-t--global--color--status--warning--clicked": { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", "value": "#dca614", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", "value": "{global.color.status.warning.200}" }, @@ -26793,11 +27233,13 @@ ] }, "pf-t--global--color--status--danger--default": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "#b1380b", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "{global.color.status.danger.100}" }, @@ -26868,11 +27310,13 @@ ] }, "pf-t--global--color--status--danger--hover": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "{global.color.status.danger.200}" }, @@ -26943,11 +27387,13 @@ ] }, "pf-t--global--color--status--danger--clicked": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "{global.color.status.danger.200}" }, @@ -27114,11 +27560,13 @@ ] }, "pf-t--global--color--status--info--default": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "#5e40be", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "{global.color.status.info.100}" }, @@ -27189,11 +27637,13 @@ ] }, "pf-t--global--color--status--info--hover": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "#3d2785", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "{global.color.status.info.200}" }, @@ -27264,11 +27714,13 @@ ] }, "pf-t--global--color--status--info--clicked": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "#3d2785", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "{global.color.status.info.200}" }, @@ -27435,11 +27887,13 @@ ] }, "pf-t--global--color--status--custom--default": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#147878", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.100}" }, @@ -27510,11 +27964,13 @@ ] }, "pf-t--global--color--status--custom--hover": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#004d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.200}" }, @@ -27585,11 +28041,13 @@ ] }, "pf-t--global--color--status--custom--clicked": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#004d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.200}" }, @@ -27659,16 +28117,18 @@ } ] }, - "pf-t--global--color--status--unread--default--default": { + "pf-t--global--color--status--unread--default": { + "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#0066cc", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.color.brand.default}" }, - "name": "pf-t--global--color--status--unread--default--default", + "name": "pf-t--global--color--status--unread--default", "attributes": { "category": "global", "type": "color", @@ -27681,16 +28141,17 @@ "color", "status", "unread", - "default", "default" ], "references": [ { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", "value": "#0066cc", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", "value": "{global.color.brand.200}" }, @@ -27758,38 +28219,41 @@ } ] }, - "pf-t--global--color--status--unread--default--hover": { + "pf-t--global--color--status--unread--hover": { + "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#004d99", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.color.brand.hover}" }, - "name": "pf-t--global--color--status--unread--default--hover", + "name": "pf-t--global--color--status--unread--hover", "attributes": { "category": "global", "type": "color", "item": "status", "subitem": "unread", - "state": "default" + "state": "hover" }, "path": [ "global", "color", "status", "unread", - "default", "hover" ], "references": [ { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", "value": "#004d99", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", "value": "{global.color.brand.300}" }, @@ -27857,38 +28321,41 @@ } ] }, - "pf-t--global--color--status--unread--default--clicked": { + "pf-t--global--color--status--unread--clicked": { + "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#004d99", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.color.brand.clicked}" }, - "name": "pf-t--global--color--status--unread--default--clicked", + "name": "pf-t--global--color--status--unread--clicked", "attributes": { "category": "global", "type": "color", "item": "status", "subitem": "unread", - "state": "default" + "state": "clicked" }, "path": [ "global", "color", "status", "unread", - "default", "clicked" ], "references": [ { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", "value": "#004d99", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", "value": "{global.color.brand.300}" }, @@ -27957,11 +28424,13 @@ ] }, "pf-t--global--color--status--unread--attention--default": { + "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#b1380b", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.color.status.danger.default}" }, @@ -27983,11 +28452,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "#b1380b", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "{global.color.status.danger.100}" }, @@ -28060,11 +28531,13 @@ ] }, "pf-t--global--color--status--unread--attention--clicked": { + "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.color.status.danger.clicked}" }, @@ -28086,11 +28559,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "{global.color.status.danger.200}" }, @@ -28163,11 +28638,13 @@ ] }, "pf-t--global--color--status--unread--attention--hover": { + "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.color.status.danger.hover}" }, @@ -28189,11 +28666,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "{global.color.status.danger.200}" }, @@ -28266,11 +28745,13 @@ ] }, "pf-t--global--color--status--read--on-secondary": { + "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", "type": "color", "value": "{global.background.color.control.default}" }, @@ -28395,11 +28876,13 @@ ] }, "pf-t--global--color--status--read--on-primary": { + "description": "Use as the default color for elements that convey a read status and are placed on a primary background", "type": "color", "value": "#f2f2f2", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for elements that convey a read status and are placed on a primary background", "type": "color", "value": "{global.background.color.secondary.default}" }, @@ -28929,11 +29412,13 @@ ] }, "pf-t--global--color--nonstatus--red--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "#fbc5c5", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.color.nonstatus.red.100}" }, @@ -29004,11 +29489,13 @@ ] }, "pf-t--global--color--nonstatus--red--hover": { + "description": "Use as the hover state color for any element that uses the non status red background color.", "type": "color", "value": "#f9a8a8", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for any element that uses the non status red background color.", "type": "color", "value": "{global.color.nonstatus.red.200}" }, @@ -29079,11 +29566,13 @@ ] }, "pf-t--global--color--nonstatus--red--clicked": { + "description": "Use as the clicked state color for any element that uses the non status red background color.", "type": "color", "value": "#f9a8a8", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that uses the non status red background color.", "type": "color", "value": "{global.color.nonstatus.red.200}" }, @@ -29298,11 +29787,13 @@ ] }, "pf-t--global--color--nonstatus--orangered--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "#fbbea8", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.color.nonstatus.orangered.100}" }, @@ -29373,11 +29864,13 @@ ] }, "pf-t--global--color--nonstatus--orangered--hover": { + "description": "Use as the hover state color for any element that uses the non status orange-red background color.", "type": "color", "value": "#f89b78", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for any element that uses the non status orange-red background color.", "type": "color", "value": "{global.color.nonstatus.orangered.200}" }, @@ -29448,11 +29941,13 @@ ] }, "pf-t--global--color--nonstatus--orangered--clicked": { + "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", "type": "color", "value": "#f89b78", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", "type": "color", "value": "{global.color.nonstatus.orangered.200}" }, @@ -29667,11 +30162,13 @@ ] }, "pf-t--global--color--nonstatus--orange--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "#fccb8f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.color.nonstatus.orange.100}" }, @@ -29742,11 +30239,13 @@ ] }, "pf-t--global--color--nonstatus--orange--hover": { + "description": "Use as the hover state color for any element that uses the non status orange background color.", "type": "color", "value": "#f8ae54", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for any element that uses the non status orange background color.", "type": "color", "value": "{global.color.nonstatus.orange.200}" }, @@ -29817,11 +30316,13 @@ ] }, "pf-t--global--color--nonstatus--orange--clicked": { + "description": "Use as the clicked state color for any element that uses the non status orange background color.", "type": "color", "value": "#f8ae54", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that uses the non status orange background color.", "type": "color", "value": "{global.color.nonstatus.orange.200}" }, @@ -29891,7 +30392,7 @@ } ] }, - "pf-t--global--color--nonstatus--gold--100": { + "pf-t--global--color--nonstatus--yellow--100": { "type": "color", "value": "#ffe072", "filePath": "tokens/default/base.json", @@ -29900,19 +30401,19 @@ "type": "color", "value": "{color.yellow.20}" }, - "name": "pf-t--global--color--nonstatus--gold--100", + "name": "pf-t--global--color--nonstatus--yellow--100", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "gold", + "subitem": "yellow", "state": "100" }, "path": [ "global", "color", "nonstatus", - "gold", + "yellow", "100" ], "references": [ @@ -29939,7 +30440,7 @@ } ] }, - "pf-t--global--color--nonstatus--gold--200": { + "pf-t--global--color--nonstatus--yellow--200": { "type": "color", "value": "#ffcc17", "filePath": "tokens/default/base.json", @@ -29948,19 +30449,19 @@ "type": "color", "value": "{color.yellow.30}" }, - "name": "pf-t--global--color--nonstatus--gold--200", + "name": "pf-t--global--color--nonstatus--yellow--200", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "gold", + "subitem": "yellow", "state": "200" }, "path": [ "global", "color", "nonstatus", - "gold", + "yellow", "200" ], "references": [ @@ -29987,7 +30488,7 @@ } ] }, - "pf-t--global--color--nonstatus--gold--300": { + "pf-t--global--color--nonstatus--yellow--300": { "type": "color", "value": "#dca614", "filePath": "tokens/default/base.json", @@ -29996,19 +30497,19 @@ "type": "color", "value": "{color.yellow.40}" }, - "name": "pf-t--global--color--nonstatus--gold--300", + "name": "pf-t--global--color--nonstatus--yellow--300", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "gold", + "subitem": "yellow", "state": "300" }, "path": [ "global", "color", "nonstatus", - "gold", + "yellow", "300" ], "references": [ @@ -30035,6 +30536,237 @@ } ] }, + "pf-t--global--color--nonstatus--yellow--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.color.nonstatus.yellow.100}" + }, + "name": "pf-t--global--color--nonstatus--yellow--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--color--nonstatus--yellow--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--hover": { + "description": "Use as the hover state color for any element that uses the non status yellow background color.", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status yellow background color.", + "type": "color", + "value": "{global.color.nonstatus.yellow.200}" + }, + "name": "pf-t--global--color--nonstatus--yellow--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--clicked": { + "description": "Use as the clicked state color for any element that uses the non status yellow background color.", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status yellow background color.", + "type": "color", + "value": "{global.color.nonstatus.yellow.200}" + }, + "name": "pf-t--global--color--nonstatus--yellow--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, "pf-t--global--color--nonstatus--green--100": { "type": "color", "value": "#d1f1bb", @@ -30180,11 +30912,13 @@ ] }, "pf-t--global--color--nonstatus--green--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "#d1f1bb", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.color.nonstatus.green.100}" }, @@ -30255,11 +30989,13 @@ ] }, "pf-t--global--color--nonstatus--green--hover": { + "description": "Use as the hover state color for any element that uses the non status green background color.", "type": "color", "value": "#afdc8f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for any element that uses the non status green background color.", "type": "color", "value": "{global.color.nonstatus.green.200}" }, @@ -30330,11 +31066,13 @@ ] }, "pf-t--global--color--nonstatus--green--clicked": { + "description": "Use as the clicked state color for any element that uses the non status green background color.", "type": "color", "value": "#afdc8f", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that uses the non status green background color.", "type": "color", "value": "{global.color.nonstatus.green.200}" }, @@ -30404,7 +31142,7 @@ } ] }, - "pf-t--global--color--nonstatus--cyan--100": { + "pf-t--global--color--nonstatus--teal--100": { "type": "color", "value": "#b9e5e5", "filePath": "tokens/default/base.json", @@ -30413,19 +31151,19 @@ "type": "color", "value": "{color.teal.20}" }, - "name": "pf-t--global--color--nonstatus--cyan--100", + "name": "pf-t--global--color--nonstatus--teal--100", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "cyan", + "subitem": "teal", "state": "100" }, "path": [ "global", "color", "nonstatus", - "cyan", + "teal", "100" ], "references": [ @@ -30452,7 +31190,7 @@ } ] }, - "pf-t--global--color--nonstatus--cyan--200": { + "pf-t--global--color--nonstatus--teal--200": { "type": "color", "value": "#9ad8d8", "filePath": "tokens/default/base.json", @@ -30461,19 +31199,19 @@ "type": "color", "value": "{color.teal.30}" }, - "name": "pf-t--global--color--nonstatus--cyan--200", + "name": "pf-t--global--color--nonstatus--teal--200", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "cyan", + "subitem": "teal", "state": "200" }, "path": [ "global", "color", "nonstatus", - "cyan", + "teal", "200" ], "references": [ @@ -30500,7 +31238,7 @@ } ] }, - "pf-t--global--color--nonstatus--cyan--300": { + "pf-t--global--color--nonstatus--teal--300": { "type": "color", "value": "#63bdbd", "filePath": "tokens/default/base.json", @@ -30509,19 +31247,19 @@ "type": "color", "value": "{color.teal.40}" }, - "name": "pf-t--global--color--nonstatus--cyan--300", + "name": "pf-t--global--color--nonstatus--teal--300", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "cyan", + "subitem": "teal", "state": "300" }, "path": [ "global", "color", "nonstatus", - "cyan", + "teal", "300" ], "references": [ @@ -30548,6 +31286,237 @@ } ] }, + "pf-t--global--color--nonstatus--teal--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.color.nonstatus.teal.100}" + }, + "name": "pf-t--global--color--nonstatus--teal--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--color--nonstatus--teal--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--hover": { + "description": "Use as the hover state color for any element that uses the non status teal background color.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status teal background color.", + "type": "color", + "value": "{global.color.nonstatus.teal.200}" + }, + "name": "pf-t--global--color--nonstatus--teal--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--clicked": { + "description": "Use as the clicked state color for any element that uses the non status teal background color.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status teal background color.", + "type": "color", + "value": "{global.color.nonstatus.teal.200}" + }, + "name": "pf-t--global--color--nonstatus--teal--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, "pf-t--global--color--nonstatus--blue--100": { "type": "color", "value": "#b9dafc", @@ -30693,11 +31662,13 @@ ] }, "pf-t--global--color--nonstatus--blue--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "#b9dafc", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.color.nonstatus.blue.100}" }, @@ -30768,11 +31739,13 @@ ] }, "pf-t--global--color--nonstatus--blue--hover": { + "description": "Use as the hover state color for any element that uses the non status blue background color.", "type": "color", "value": "#92c5f9", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for any element that uses the non status blue background color.", "type": "color", "value": "{global.color.nonstatus.blue.200}" }, @@ -30843,11 +31816,13 @@ ] }, "pf-t--global--color--nonstatus--blue--clicked": { + "description": "Use as the clicked state color for any element that uses the non status blue background color.", "type": "color", "value": "#92c5f9", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that uses the non status blue background color.", "type": "color", "value": "{global.color.nonstatus.blue.200}" }, @@ -31062,11 +32037,13 @@ ] }, "pf-t--global--color--nonstatus--purple--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "#d0c5f4", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.color.nonstatus.purple.100}" }, @@ -31137,11 +32114,13 @@ ] }, "pf-t--global--color--nonstatus--purple--hover": { + "description": "Use as the hover state color for any element that uses the non status purple background color.", "type": "color", "value": "#b6a6e9", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for any element that uses the non status purple background color.", "type": "color", "value": "{global.color.nonstatus.purple.200}" }, @@ -31212,11 +32191,13 @@ ] }, "pf-t--global--color--nonstatus--purple--clicked": { + "description": "Use as the clicked state color for any element that uses the non status purple background color.", "type": "color", "value": "#b6a6e9", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that uses the non status purple background color.", "type": "color", "value": "{global.color.nonstatus.purple.200}" }, @@ -31334,620 +32315,172 @@ } ] }, - "pf-t--global--color--nonstatus--gray--200": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--300": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--nonstatus--gray--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "300" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--default": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.nonstatus.gray.100}" - }, - "name": "pf-t--global--color--nonstatus--gray--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "default" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--color--nonstatus--gray--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "100" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--hover": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.nonstatus.gray.200}" - }, - "name": "pf-t--global--color--nonstatus--gray--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--clicked": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.nonstatus.gray.200}" - }, - "name": "pf-t--global--color--nonstatus--gray--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--yellow--default": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.nonstatus.gold.100}" - }, - "name": "pf-t--global--color--nonstatus--yellow--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--color--nonstatus--gold--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gold", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "gold", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--yellow--hover": { + "pf-t--global--color--nonstatus--gray--200": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{global.color.nonstatus.gold.200}" + "value": "{color.gray.30}" }, - "name": "pf-t--global--color--nonstatus--yellow--hover", + "name": "pf-t--global--color--nonstatus--gray--200", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "yellow", - "state": "hover" + "subitem": "gray", + "state": "200" }, "path": [ "global", "color", "nonstatus", - "yellow", - "hover" + "gray", + "200" ], "references": [ { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.30}" + "value": "#c7c7c7" }, - "name": "pf-t--global--color--nonstatus--gold--200", + "name": "pf-t--color--gray--30", "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gold", - "state": "200" + "category": "color", + "type": "gray", + "item": "30" }, "path": [ - "global", "color", - "nonstatus", - "gold", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } + "gray", + "30" ] } ] }, - "pf-t--global--color--nonstatus--yellow--clicked": { + "pf-t--global--color--nonstatus--gray--300": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{global.color.nonstatus.gold.200}" + "value": "{color.gray.40}" }, - "name": "pf-t--global--color--nonstatus--yellow--clicked", + "name": "pf-t--global--color--nonstatus--gray--300", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "yellow", - "state": "clicked" + "subitem": "gray", + "state": "300" }, "path": [ "global", "color", "nonstatus", - "yellow", - "clicked" + "gray", + "300" ], "references": [ { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.30}" + "value": "#a3a3a3" }, - "name": "pf-t--global--color--nonstatus--gold--200", + "name": "pf-t--color--gray--40", "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gold", - "state": "200" + "category": "color", + "type": "gray", + "item": "40" }, "path": [ - "global", "color", - "nonstatus", - "gold", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } + "gray", + "40" ] } ] }, - "pf-t--global--color--nonstatus--teal--default": { + "pf-t--global--color--nonstatus--gray--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#b9e5e5", + "value": "#e0e0e0", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.color.nonstatus.cyan.100}" + "value": "{global.color.nonstatus.gray.100}" }, - "name": "pf-t--global--color--nonstatus--teal--default", + "name": "pf-t--global--color--nonstatus--gray--default", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "teal", + "subitem": "gray", "state": "default" }, "path": [ "global", "color", "nonstatus", - "teal", + "gray", "default" ], "references": [ { "type": "color", - "value": "#b9e5e5", + "value": "#e0e0e0", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.20}" + "value": "{color.gray.20}" }, - "name": "pf-t--global--color--nonstatus--cyan--100", + "name": "pf-t--global--color--nonstatus--gray--100", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "cyan", + "subitem": "gray", "state": "100" }, "path": [ "global", "color", "nonstatus", - "cyan", + "gray", "100" ], "references": [ { "type": "color", - "value": "#b9e5e5", + "value": "#e0e0e0", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b9e5e5" + "value": "#e0e0e0" }, - "name": "pf-t--color--teal--20", + "name": "pf-t--color--gray--20", "attributes": { "category": "color", - "type": "teal", + "type": "gray", "item": "20" }, "path": [ "color", - "teal", + "gray", "20" ] } @@ -31955,74 +32488,76 @@ } ] }, - "pf-t--global--color--nonstatus--teal--hover": { + "pf-t--global--color--nonstatus--gray--hover": { + "description": "Use as the hover state color for any element that uses the non status gray background color.", "type": "color", - "value": "#9ad8d8", + "value": "#c7c7c7", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for any element that uses the non status gray background color.", "type": "color", - "value": "{global.color.nonstatus.cyan.200}" + "value": "{global.color.nonstatus.gray.200}" }, - "name": "pf-t--global--color--nonstatus--teal--hover", + "name": "pf-t--global--color--nonstatus--gray--hover", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "teal", + "subitem": "gray", "state": "hover" }, "path": [ "global", "color", "nonstatus", - "teal", + "gray", "hover" ], "references": [ { "type": "color", - "value": "#9ad8d8", + "value": "#c7c7c7", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.30}" + "value": "{color.gray.30}" }, - "name": "pf-t--global--color--nonstatus--cyan--200", + "name": "pf-t--global--color--nonstatus--gray--200", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "cyan", + "subitem": "gray", "state": "200" }, "path": [ "global", "color", "nonstatus", - "cyan", + "gray", "200" ], "references": [ { "type": "color", - "value": "#9ad8d8", + "value": "#c7c7c7", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#9ad8d8" + "value": "#c7c7c7" }, - "name": "pf-t--color--teal--30", + "name": "pf-t--color--gray--30", "attributes": { "category": "color", - "type": "teal", + "type": "gray", "item": "30" }, "path": [ "color", - "teal", + "gray", "30" ] } @@ -32030,74 +32565,76 @@ } ] }, - "pf-t--global--color--nonstatus--teal--clicked": { + "pf-t--global--color--nonstatus--gray--clicked": { + "description": "Use as the clicked state color for any element that uses the non status gray background color.", "type": "color", - "value": "#9ad8d8", + "value": "#c7c7c7", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that uses the non status gray background color.", "type": "color", - "value": "{global.color.nonstatus.cyan.200}" + "value": "{global.color.nonstatus.gray.200}" }, - "name": "pf-t--global--color--nonstatus--teal--clicked", + "name": "pf-t--global--color--nonstatus--gray--clicked", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "teal", + "subitem": "gray", "state": "clicked" }, "path": [ "global", "color", "nonstatus", - "teal", + "gray", "clicked" ], "references": [ { "type": "color", - "value": "#9ad8d8", + "value": "#c7c7c7", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.30}" + "value": "{color.gray.30}" }, - "name": "pf-t--global--color--nonstatus--cyan--200", + "name": "pf-t--global--color--nonstatus--gray--200", "attributes": { "category": "global", "type": "color", "item": "nonstatus", - "subitem": "cyan", + "subitem": "gray", "state": "200" }, "path": [ "global", "color", "nonstatus", - "cyan", + "gray", "200" ], "references": [ { "type": "color", - "value": "#9ad8d8", + "value": "#c7c7c7", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#9ad8d8" + "value": "#c7c7c7" }, - "name": "pf-t--color--teal--30", + "name": "pf-t--color--gray--30", "attributes": { "category": "color", - "type": "teal", + "type": "gray", "item": "30" }, "path": [ "color", - "teal", + "gray", "30" ] } @@ -32107,12 +32644,12 @@ }, "pf-t--global--text--color--100": { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -32130,23 +32667,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -32432,11 +32969,13 @@ ] }, "pf-t--global--text--color--link--default": { + "description": "Use as the default text color for links.", "type": "color", "value": "#0066cc", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default text color for links.", "type": "color", "value": "{global.text.color.link.100}" }, @@ -32507,11 +33046,13 @@ ] }, "pf-t--global--text--color--link--hover": { + "description": "Use as the hover state text color for links.", "type": "color", "value": "#004d99", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state text color for links.", "type": "color", "value": "{global.text.color.link.200}" }, @@ -32582,11 +33123,13 @@ ] }, "pf-t--global--text--color--link--visited": { + "description": "Use as the color to indicate that a link has been visited.", "type": "color", "value": "#5e40be", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color to indicate that a link has been visited.", "type": "color", "value": "{global.text.color.link.300}" }, @@ -32656,12 +33199,320 @@ } ] }, + "pf-t--global--text--color--brand--default": { + "description": "Use as the default color for branded text.", + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for branded text.", + "type": "color", + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--text--color--brand--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "brand", + "default" + ], + "references": [ + { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--hover": { + "description": "Use as the hover state color for branded text.", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for branded text.", + "type": "color", + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--text--color--brand--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "brand", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--clicked": { + "description": "Use as the clicked state color for branded text.", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for branded text.", + "type": "color", + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--text--color--brand--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "text", + "color", + "brand", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, "pf-t--global--text--color--regular": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -32681,12 +33532,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -32704,23 +33555,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -32728,11 +33579,13 @@ ] }, "pf-t--global--text--color--subtle": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", "value": "#4d4d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", "value": "{global.text.color.200}" }, @@ -32799,11 +33652,13 @@ ] }, "pf-t--global--text--color--inverse": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -32868,11 +33723,13 @@ ] }, "pf-t--global--text--color--on-brand--default": { + "description": "Use as the default color for text placed on a brand-colored background.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text placed on a brand-colored background.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -32893,11 +33750,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -32964,11 +33823,13 @@ ] }, "pf-t--global--text--color--on-brand--hover": { + "description": "Use as the hover state color for text placed on a brand-colored background.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text placed on a brand-colored background.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -32989,11 +33850,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -33060,11 +33923,13 @@ ] }, "pf-t--global--text--color--on-brand--clicked": { + "description": "Use as the clicked state color for text placed on a brand-colored background.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text placed on a brand-colored background.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -33085,11 +33950,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -33156,11 +34023,13 @@ ] }, "pf-t--global--text--color--placeholder": { + "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", "type": "color", "value": "#4d4d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", "type": "color", "value": "{global.text.color.subtle}" }, @@ -33179,11 +34048,13 @@ ], "references": [ { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", "value": "#4d4d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", "value": "{global.text.color.200}" }, @@ -33252,13 +34123,13 @@ ] }, "pf-t--global--text--color--disabled": { - "description": "for use without disabled background color", + "description": "Use as the color of text on disabled elements, like disabled menu items.", "type": "color", "value": "#a3a3a3", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { - "description": "for use without disabled background color", + "description": "Use as the color of text on disabled elements, like disabled menu items.", "type": "color", "value": "{global.color.disabled.200}" }, @@ -33325,13 +34196,13 @@ ] }, "pf-t--global--text--color--on-disabled": { - "description": "pair with disabled background color", + "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", "type": "color", "value": "#4d4d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { - "description": "pair with disabled background color", + "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", "type": "color", "value": "{global.color.disabled.300}" }, @@ -33397,306 +34268,14 @@ } ] }, - "pf-t--global--text--color--brand--default": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.brand.default}" - }, - "name": "pf-t--global--text--color--brand--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "default" - }, - "path": [ - "global", - "text", - "color", - "brand", - "default" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.brand.200}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--brand--hover": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.brand.hover}" - }, - "name": "pf-t--global--text--color--brand--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "hover" - }, - "path": [ - "global", - "text", - "color", - "brand", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--brand--clicked": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.brand.clicked}" - }, - "name": "pf-t--global--text--color--brand--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "clicked" - }, - "path": [ - "global", - "text", - "color", - "brand", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] - }, "pf-t--global--text--color--required": { + "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", "type": "color", "value": "#f4784a", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", "type": "color", "value": "{global.text.color.400}" }, @@ -33763,11 +34342,13 @@ ] }, "pf-t--global--text--color--on-highlight": { + "description": "Use as the color of text that is highlighted.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is highlighted.", "type": "color", "value": "{global.text.color.100}" }, @@ -33787,12 +34368,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -33810,23 +34391,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -33860,11 +34441,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "#3d7317", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "{global.color.status.success.100}" }, @@ -33963,11 +34546,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "#204d00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "{global.color.status.success.200}" }, @@ -34066,11 +34651,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "#204d00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "{global.color.status.success.200}" }, @@ -34143,11 +34730,13 @@ ] }, "pf-t--global--text--color--status--on-success--default": { + "description": "Use as the default color for text that is placed on a success background color, like in banners.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a success background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -34169,11 +34758,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -34240,11 +34831,13 @@ ] }, "pf-t--global--text--color--status--on-success--hover": { + "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -34266,11 +34859,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -34337,11 +34932,13 @@ ] }, "pf-t--global--text--color--status--on-success--clicked": { + "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -34363,11 +34960,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -34662,11 +35261,13 @@ ] }, "pf-t--global--text--color--status--on-warning--default": { + "description": "Use as the default color for text that is placed on a warning background color, like in banners.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a warning background color, like in banners.", "type": "color", "value": "{global.text.color.regular}" }, @@ -34688,11 +35289,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -34712,12 +35315,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -34735,23 +35338,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -34761,11 +35364,13 @@ ] }, "pf-t--global--text--color--status--on-warning--hover": { + "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", "type": "color", "value": "{global.text.color.regular}" }, @@ -34787,11 +35392,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -34811,12 +35418,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -34834,23 +35441,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -34860,11 +35467,13 @@ ] }, "pf-t--global--text--color--status--on-warning--clicked": { + "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", "type": "color", "value": "{global.text.color.regular}" }, @@ -34886,11 +35495,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -34910,12 +35521,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -34933,23 +35544,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -34959,11 +35570,13 @@ ] }, "pf-t--global--text--color--status--danger--default": { + "description": "Use as the default color for text that communicates a danger status.", "type": "color", "value": "#b1380b", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that communicates a danger status.", "type": "color", "value": "{global.color.status.danger.default}" }, @@ -34985,11 +35598,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "#b1380b", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "{global.color.status.danger.100}" }, @@ -35062,11 +35677,13 @@ ] }, "pf-t--global--text--color--status--danger--hover": { + "description": "Use as the hover state color for text that communicates a danger status.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that communicates a danger status.", "type": "color", "value": "{global.color.status.danger.hover}" }, @@ -35088,11 +35705,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "{global.color.status.danger.200}" }, @@ -35165,11 +35784,13 @@ ] }, "pf-t--global--text--color--status--danger--clicked": { + "description": "Use as the clicked state color for text that communicates a danger status.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that communicates a danger status.", "type": "color", "value": "{global.color.status.danger.clicked}" }, @@ -35191,11 +35812,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "#731f00", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "{global.color.status.danger.200}" }, @@ -35268,11 +35891,13 @@ ] }, "pf-t--global--text--color--status--on-danger--default": { + "description": "Use as the default color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -35294,11 +35919,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -35365,11 +35992,13 @@ ] }, "pf-t--global--text--color--status--on-danger--hover": { + "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -35391,11 +36020,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -35462,11 +36093,13 @@ ] }, "pf-t--global--text--color--status--on-danger--clicked": { + "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "{global.icon.color.inverse}" }, @@ -35488,11 +36121,13 @@ ], "references": [ { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, @@ -35559,11 +36194,13 @@ ] }, "pf-t--global--text--color--status--info--default": { + "description": "Use as the default color for text that communicates am info status.", "type": "color", "value": "#5e40be", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that communicates am info status.", "type": "color", "value": "{global.color.status.info.default}" }, @@ -35585,11 +36222,13 @@ ], "references": [ { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "#5e40be", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "{global.color.status.info.100}" }, @@ -35662,11 +36301,13 @@ ] }, "pf-t--global--text--color--status--info--hover": { + "description": "Use as the hover state color for text that communicates an infostatus.", "type": "color", "value": "#3d2785", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that communicates an infostatus.", "type": "color", "value": "{global.color.status.info.hover}" }, @@ -35688,11 +36329,13 @@ ], "references": [ { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "#3d2785", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "{global.color.status.info.200}" }, @@ -35765,11 +36408,13 @@ ] }, "pf-t--global--text--color--status--info--clicked": { + "description": "Use as the clicked state color for text that communicates an info status.", "type": "color", "value": "#3d2785", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that communicates an info status.", "type": "color", "value": "{global.color.status.info.clicked}" }, @@ -35791,11 +36436,13 @@ ], "references": [ { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "#3d2785", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "{global.color.status.info.200}" }, @@ -35868,11 +36515,13 @@ ] }, "pf-t--global--text--color--status--on-info--default": { + "description": "Use as the default color for text that is placed on an info background color, like in banners.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on an info background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -35894,11 +36543,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -35965,11 +36616,13 @@ ] }, "pf-t--global--text--color--status--on-info--hover": { + "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -35991,11 +36644,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -36062,11 +36717,13 @@ ] }, "pf-t--global--text--color--status--on-info--clicked": { + "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -36088,11 +36745,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -36159,11 +36818,13 @@ ] }, "pf-t--global--text--color--status--custom--default": { + "description": "Use as the default color for text that communicates a custom status.", "type": "color", "value": "#147878", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that communicates a custom status.", "type": "color", "value": "{global.color.status.custom.default}" }, @@ -36185,11 +36846,13 @@ ], "references": [ { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#147878", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.100}" }, @@ -36262,11 +36925,13 @@ ] }, "pf-t--global--text--color--status--custom--hover": { + "description": "Use as the hover state color for text that communicates a custom status.", "type": "color", "value": "#004d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that communicates a custom status.", "type": "color", "value": "{global.color.status.custom.hover}" }, @@ -36288,11 +36953,13 @@ ], "references": [ { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#004d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.200}" }, @@ -36365,11 +37032,13 @@ ] }, "pf-t--global--text--color--status--custom--clicked": { + "description": "Use as the clicked state color for text that communicates a custom status.", "type": "color", "value": "#004d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that communicates a custom status.", "type": "color", "value": "{global.color.status.custom.clicked}" }, @@ -36391,11 +37060,13 @@ ], "references": [ { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "#004d4d", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.200}" }, @@ -36468,11 +37139,13 @@ ] }, "pf-t--global--text--color--status--on-custom--default": { + "description": "Use as the default color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -36494,11 +37167,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -36565,11 +37240,13 @@ ] }, "pf-t--global--text--color--status--on-custom--hover": { + "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -36591,11 +37268,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -36662,11 +37341,13 @@ ] }, "pf-t--global--text--color--status--on-custom--clicked": { + "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -36688,11 +37369,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -36759,11 +37442,13 @@ ] }, "pf-t--global--text--color--status--unread--on-default--default": { + "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -36786,11 +37471,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -36857,11 +37544,13 @@ ] }, "pf-t--global--text--color--status--unread--on-default--hover": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -36884,11 +37573,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -36955,11 +37646,13 @@ ] }, "pf-t--global--text--color--status--unread--on-default--clicked": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -36982,11 +37675,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -37053,11 +37748,13 @@ ] }, "pf-t--global--text--color--status--unread--on-attention--default": { + "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -37080,11 +37777,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -37151,11 +37850,13 @@ ] }, "pf-t--global--text--color--status--unread--on-attention--hover": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -37178,11 +37879,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -37249,11 +37952,13 @@ ] }, "pf-t--global--text--color--status--unread--on-attention--clicked": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, @@ -37276,11 +37981,13 @@ ], "references": [ { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "#ffffff", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, @@ -37347,11 +38054,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-red--default": { + "description": "Use as the default color for text that is placed on a nonstatus red background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus red background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -37373,11 +38082,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -37397,12 +38108,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -37420,23 +38131,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -37446,11 +38157,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-red--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -37472,11 +38185,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -37496,12 +38211,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -37519,23 +38234,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -37545,11 +38260,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-red--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -37571,11 +38288,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -37595,12 +38314,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -37618,23 +38337,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -37644,11 +38363,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-orangered--default": { + "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -37670,11 +38391,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -37694,12 +38417,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -37717,23 +38440,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -37743,11 +38466,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-orangered--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -37769,11 +38494,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -37793,12 +38520,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -37816,23 +38543,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -37842,11 +38569,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-orangered--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -37868,11 +38597,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -37892,12 +38623,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -37915,23 +38646,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -37941,11 +38672,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-orange--default": { + "description": "Use as the default color for text that is placed on a nonstatus orange background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus orange background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -37967,11 +38700,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -37991,12 +38726,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -38014,23 +38749,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -38040,11 +38775,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-orange--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -38066,11 +38803,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -38090,12 +38829,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -38113,23 +38852,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -38139,11 +38878,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-orange--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -38165,11 +38906,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -38189,12 +38932,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -38212,23 +38955,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -38238,11 +38981,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-yellow--default": { + "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -38264,11 +39009,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -38288,12 +39035,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -38311,23 +39058,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -38337,11 +39084,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-yellow--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -38363,11 +39112,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -38387,12 +39138,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -38410,23 +39161,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -38436,11 +39187,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-yellow--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -38462,11 +39215,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -38486,12 +39241,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -38509,23 +39264,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -38535,11 +39290,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-green--default": { + "description": "Use as the default color for text that is placed on a nonstatus green background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus green background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -38561,11 +39318,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -38585,12 +39344,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -38608,23 +39367,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -38634,11 +39393,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-green--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -38660,11 +39421,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -38684,12 +39447,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -38707,23 +39470,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -38733,11 +39496,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-green--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -38759,11 +39524,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -38783,12 +39550,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -38806,23 +39573,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -38832,11 +39599,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-teal--default": { + "description": "Use as the default color for text that is placed on a nonstatus teal background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus teal background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -38858,11 +39627,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -38882,12 +39653,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -38905,23 +39676,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -38931,11 +39702,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-teal--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -38957,11 +39730,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -38981,12 +39756,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -39004,23 +39779,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -39030,11 +39805,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-teal--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -39056,11 +39833,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -39080,12 +39859,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -39103,23 +39882,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -39129,11 +39908,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-blue--default": { + "description": "Use as the default color for text that is placed on a nonstatus blue background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus blue background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -39155,11 +39936,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -39179,12 +39962,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -39202,23 +39985,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -39228,11 +40011,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-blue--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -39254,11 +40039,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -39278,12 +40065,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -39301,23 +40088,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -39327,11 +40114,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-blue--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -39353,11 +40142,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -39377,12 +40168,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -39400,23 +40191,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -39426,11 +40217,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-purple--default": { + "description": "Use as the default color for text that is placed on a nonstatus purple background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus purple background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -39452,11 +40245,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -39476,12 +40271,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -39499,23 +40294,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -39525,11 +40320,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-purple--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -39551,11 +40348,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -39575,12 +40374,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -39598,23 +40397,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -39624,11 +40423,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-purple--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -39650,11 +40451,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -39674,12 +40477,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -39697,23 +40500,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -39723,11 +40526,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-gray--default": { + "description": "Use as the default color for text that is placed on a nonstatus gray background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the default color for text that is placed on a nonstatus gray background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -39749,11 +40554,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -39773,12 +40580,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -39796,23 +40603,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -39822,11 +40629,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-gray--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -39848,11 +40657,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -39872,12 +40683,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -39895,23 +40706,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -39921,11 +40732,13 @@ ] }, "pf-t--global--text--color--nonstatus--on-gray--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", "type": "color", "value": "{global.text.color.regular}" }, @@ -39947,11 +40760,13 @@ ], "references": [ { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/semantic.json", "isSource": true, "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, @@ -39971,12 +40786,12 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/base.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "name": "pf-t--global--text--color--100", "attributes": { @@ -39994,23 +40809,23 @@ "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#151515", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#151515" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--gray--95", "attributes": { "category": "color", "type": "gray", - "item": "90" + "item": "95" }, "path": [ "color", "gray", - "90" + "95" ] } ] @@ -40314,11 +41129,13 @@ ] }, "pf-t--global--motion--duration--xs": { + "description": "Use for the quickest possible duration of an animation.", "type": "number", "value": "50ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for the quickest possible duration of an animation.", "type": "number", "value": "{global.duration.50}" }, @@ -40360,11 +41177,13 @@ ] }, "pf-t--global--motion--duration--sm": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", "value": "100ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", "value": "{global.duration.100}" }, @@ -40406,11 +41225,13 @@ ] }, "pf-t--global--motion--duration--md": { + "description": "Use for a medium animation duration.", "type": "number", "value": "200ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for a medium animation duration.", "type": "number", "value": "{global.duration.200}" }, @@ -40452,11 +41273,13 @@ ] }, "pf-t--global--motion--duration--lg": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "300ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "{global.duration.300}" }, @@ -40498,11 +41321,13 @@ ] }, "pf-t--global--motion--duration--xl": { + "description": "Use for extra long animation duration.", "type": "number", "value": "400ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for extra long animation duration.", "type": "number", "value": "{global.duration.400}" }, @@ -40544,11 +41369,13 @@ ] }, "pf-t--global--motion--duration--2xl": { + "description": "Use for significantly long animation duration.", "type": "number", "value": "500ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for significantly long animation duration.", "type": "number", "value": "{global.duration.500}" }, @@ -40590,11 +41417,13 @@ ] }, "pf-t--global--motion--duration--3xl": { + "description": "Use for the longest possible duration of an animation.", "type": "number", "value": "600ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for the longest possible duration of an animation.", "type": "number", "value": "{global.duration.600}" }, @@ -40636,11 +41465,13 @@ ] }, "pf-t--global--motion--duration--fade--short": { + "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", "type": "number", "value": "100ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", "type": "number", "value": "{global.motion.duration.sm}" }, @@ -40661,11 +41492,13 @@ ], "references": [ { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", "value": "100ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", "value": "{global.duration.100}" }, @@ -40709,11 +41542,13 @@ ] }, "pf-t--global--motion--duration--fade--default": { + "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", "type": "number", "value": "200ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", "type": "number", "value": "{global.motion.duration.md}" }, @@ -40734,11 +41569,13 @@ ], "references": [ { + "description": "Use for a medium animation duration.", "type": "number", "value": "200ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for a medium animation duration.", "type": "number", "value": "{global.duration.200}" }, @@ -40782,11 +41619,13 @@ ] }, "pf-t--global--motion--duration--fade--long": { + "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", "type": "number", "value": "300ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", "type": "number", "value": "{global.motion.duration.lg}" }, @@ -40807,11 +41646,13 @@ ], "references": [ { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "300ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "{global.duration.300}" }, @@ -40855,11 +41696,13 @@ ] }, "pf-t--global--motion--duration--slide-out--short": { + "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", "value": "300ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", "value": "{global.motion.duration.lg}" }, @@ -40880,11 +41723,13 @@ ], "references": [ { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "300ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "{global.duration.300}" }, @@ -40928,11 +41773,13 @@ ] }, "pf-t--global--motion--duration--slide-out--default": { + "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", "value": "400ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", "value": "{global.motion.duration.xl}" }, @@ -40953,11 +41800,13 @@ ], "references": [ { + "description": "Use for extra long animation duration.", "type": "number", "value": "400ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for extra long animation duration.", "type": "number", "value": "{global.duration.400}" }, @@ -41001,11 +41850,13 @@ ] }, "pf-t--global--motion--duration--slide-out--long": { + "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", "value": "500ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", "value": "{global.motion.duration.2xl}" }, @@ -41026,11 +41877,13 @@ ], "references": [ { + "description": "Use for significantly long animation duration.", "type": "number", "value": "500ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for significantly long animation duration.", "type": "number", "value": "{global.duration.500}" }, @@ -41074,11 +41927,13 @@ ] }, "pf-t--global--motion--duration--slide-in--short": { + "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", "value": "300ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", "value": "{global.motion.duration.lg}" }, @@ -41099,11 +41954,13 @@ ], "references": [ { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "300ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "{global.duration.300}" }, @@ -41147,11 +42004,13 @@ ] }, "pf-t--global--motion--duration--slide-in--default": { + "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", "value": "400ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", "value": "{global.motion.duration.xl}" }, @@ -41172,11 +42031,13 @@ ], "references": [ { + "description": "Use for extra long animation duration.", "type": "number", "value": "400ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for extra long animation duration.", "type": "number", "value": "{global.duration.400}" }, @@ -41220,11 +42081,13 @@ ] }, "pf-t--global--motion--duration--slide-in--long": { + "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", "value": "500ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", "value": "{global.motion.duration.2xl}" }, @@ -41245,11 +42108,13 @@ ], "references": [ { + "description": "Use for significantly long animation duration.", "type": "number", "value": "500ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for significantly long animation duration.", "type": "number", "value": "{global.duration.500}" }, @@ -41293,11 +42158,13 @@ ] }, "pf-t--global--motion--duration--icon--short": { + "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", "type": "number", "value": "50ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", "type": "number", "value": "{global.motion.duration.xs}" }, @@ -41318,11 +42185,13 @@ ], "references": [ { + "description": "Use for the quickest possible duration of an animation.", "type": "number", "value": "50ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for the quickest possible duration of an animation.", "type": "number", "value": "{global.duration.50}" }, @@ -41366,11 +42235,13 @@ ] }, "pf-t--global--motion--duration--icon--default": { + "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", "type": "number", "value": "100ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", "type": "number", "value": "{global.motion.duration.sm}" }, @@ -41391,11 +42262,13 @@ ], "references": [ { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", "value": "100ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", "value": "{global.duration.100}" }, @@ -41439,11 +42312,13 @@ ] }, "pf-t--global--motion--duration--icon--long": { + "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", "type": "number", "value": "200ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", "type": "number", "value": "{global.motion.duration.md}" }, @@ -41464,11 +42339,13 @@ ], "references": [ { + "description": "Use for a medium animation duration.", "type": "number", "value": "200ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use for a medium animation duration.", "type": "number", "value": "{global.duration.200}" }, @@ -41512,11 +42389,13 @@ ] }, "pf-t--global--motion--delay--none": { + "description": "Use when there should be no delay before an animation plays.", "type": "number", "value": "0ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use when there should be no delay before an animation plays.", "type": "number", "value": "{global.delay.100}" }, @@ -41558,11 +42437,13 @@ ] }, "pf-t--global--motion--delay--short": { + "description": "Use when there should be a short delay before an animation plays.", "type": "number", "value": "50ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use when there should be a short delay before an animation plays.", "type": "number", "value": "{global.delay.200}" }, @@ -41604,11 +42485,13 @@ ] }, "pf-t--global--motion--delay--default": { + "description": "Use when there should be the default delay length before an animation plays.", "type": "number", "value": "100ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use when there should be the default delay length before an animation plays.", "type": "number", "value": "{global.delay.300}" }, @@ -41650,11 +42533,13 @@ ] }, "pf-t--global--motion--delay--long": { + "description": "Use when there should be a long delay before an animation plays.", "type": "number", "value": "7000ms", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use when there should be a long delay before an animation plays.", "type": "number", "value": "{global.delay.400}" }, @@ -41696,11 +42581,13 @@ ] }, "pf-t--global--motion--timing-function--accelerate": { + "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", "type": "number", "value": "cubic-bezier(.4, 0, .7, .2)", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", "type": "number", "value": "{global.timing-function.100}" }, @@ -41742,11 +42629,13 @@ ] }, "pf-t--global--motion--timing-function--default": { + "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", "type": "number", "value": "cubic-bezier(.4, 0, .2, 1)", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", "type": "number", "value": "{global.timing-function.200}" }, @@ -41788,11 +42677,13 @@ ] }, "pf-t--global--motion--timing-function--decelerate": { + "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", "type": "number", "value": "cubic-bezier(0, 0, .2, 1)", "filePath": "tokens/default/semantic.motion.json", "isSource": true, "original": { + "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", "type": "number", "value": "{global.timing-function.300}" }, diff --git a/packages/module/patternfly-docs/content/semantic-tokens-dark.json b/packages/module/patternfly-docs/content/semantic-tokens-dark.json new file mode 100644 index 0000000..86c187e --- /dev/null +++ b/packages/module/patternfly-docs/content/semantic-tokens-dark.json @@ -0,0 +1,58147 @@ +{ + "semantic": { + "colors": { + "pf-t--global--icon--color--brand--default": { + "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--icon--color--brand--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--brand--hover": { + "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", + "type": "color", + "value": "{global.dark.color.brand.300}" + }, + "name": "pf-t--global--icon--color--brand--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--brand--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--brand--clicked": { + "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", + "type": "color", + "value": "{global.dark.color.brand.300}" + }, + "name": "pf-t--global--icon--color--brand--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--brand--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--on-brand--default": { + "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--on-brand--hover": { + "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--on-brand--clicked": { + "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--favorite--default": { + "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", + "type": "color", + "value": "{global.color.favorite.default}" + }, + "name": "pf-t--global--icon--color--favorite--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "default" + ], + "references": [ + { + "description": "Use as the default color for elements that have been favorited", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that have been favorited", + "type": "color", + "value": "{global.dark.color.favorite.100}" + }, + "name": "pf-t--global--color--favorite--default", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "default" + }, + "path": [ + "global", + "color", + "favorite", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--favorite--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--favorite--hover": { + "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", + "type": "color", + "value": "{global.color.favorite.hover}" + }, + "name": "pf-t--global--icon--color--favorite--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for elements that have been favorited", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have been favorited", + "type": "color", + "value": "{global.dark.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "favorite", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--favorite--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--favorite--clicked": { + "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", + "type": "color", + "value": "{global.color.favorite.clicked}" + }, + "name": "pf-t--global--icon--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for elements that have been favorited", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have been favorited", + "type": "color", + "value": "{global.dark.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "favorite", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--favorite--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--success--default": { + "description": "Use as the default color for text that communicates a success status.", + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates a success status.", + "type": "color", + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--icon--color--status--success--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "type": "color", + "value": "{global.dark.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--dark--color--status--success--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--success--hover": { + "description": "Use as the hover state color for text that communicates a success status.", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates a success status.", + "type": "color", + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--icon--color--status--success--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys a success status.", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a success status.", + "type": "color", + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--success--clicked": { + "description": "Use as the clicked state color for text that communicates a success status.", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates a success status.", + "type": "color", + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--icon--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys a success status.", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a success status.", + "type": "color", + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-success--default": { + "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-success--hover": { + "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-success--clicked": { + "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--warning--default": { + "description": "Use as the default color for text that communicates a warning status.", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates a warning status.", + "type": "color", + "value": "{global.color.status.warning.default}" + }, + "name": "pf-t--global--icon--color--status--warning--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", + "type": "color", + "value": "{global.dark.color.status.warning.100}" + }, + "name": "pf-t--global--color--status--warning--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--status--warning--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--warning--hover": { + "description": "Use as the hover state color for text that communicates a warning status.", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates a warning status.", + "type": "color", + "value": "{global.color.status.warning.hover}" + }, + "name": "pf-t--global--icon--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys a warning status.", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a warning status.", + "type": "color", + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--warning--clicked": { + "description": "Use as the clicked state color for text that communicates a warning status.", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates a warning status.", + "type": "color", + "value": "{global.color.status.warning.clicked}" + }, + "name": "pf-t--global--icon--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys a warning status.", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a warning status.", + "type": "color", + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-warning--default": { + "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-warning--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-warning--hover": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-warning--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-warning--clicked": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-warning--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--danger--default": { + "description": "Use as the default color for icons that convey danger, like in alerts or banners.", + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that convey danger, like in alerts or banners.", + "type": "color", + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--icon--color--status--danger--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "{global.dark.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--status--danger--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--danger--hover": { + "description": "Use as the hover state for icons that indicate danger.", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for icons that indicate danger.", + "type": "color", + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--icon--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--danger--clicked": { + "description": "Use as the clicked state for icons that indicate danger.", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for icons that indicate danger.", + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--icon--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-danger--default": { + "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-danger--hover": { + "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-danger--clicked": { + "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--info--default": { + "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", + "type": "color", + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--icon--color--status--info--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "type": "color", + "value": "{global.dark.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--status--info--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--info--hover": { + "description": "Use as the hover state for icons that identify informational messages.", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for icons that identify informational messages.", + "type": "color", + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--icon--color--status--info--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys an info status.", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys an info status.", + "type": "color", + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--info--clicked": { + "description": "Use as the clicked state for icons that identify informational messages.", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for icons that identify informational messages.", + "type": "color", + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--icon--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys an info status.", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys an info status.", + "type": "color", + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-info--default": { + "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-info--hover": { + "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-info--clicked": { + "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--custom--default": { + "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--icon--color--status--custom--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.dark.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--dark--color--status--custom--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--custom--hover": { + "description": "Use as the hover state for icons that convey generic status with no associated severity.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for icons that convey generic status with no associated severity.", + "type": "color", + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--icon--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--custom--clicked": { + "description": "Use as the clicked state for icons that convey generic status with no associated severity.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for icons that convey generic status with no associated severity.", + "type": "color", + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--icon--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-custom--default": { + "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-custom--hover": { + "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-custom--clicked": { + "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-default--default": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-default--hover": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-default--clicked": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-attention--default": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-attention--hover": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-attention--clicked": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--regular": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.dark.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--icon--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--subtle": { + "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", + "type": "color", + "value": "{global.dark.icon.color.200}" + }, + "name": "pf-t--global--icon--color--subtle", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "icon", + "color", + "subtle" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--icon--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--inverse": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--disabled": { + "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", + "type": "color", + "value": "{global.dark.color.disabled.200}" + }, + "name": "pf-t--global--icon--color--disabled", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "icon", + "color", + "disabled" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--dark--color--disabled--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--on-disabled": { + "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", + "type": "color", + "value": "{global.dark.color.disabled.300}" + }, + "name": "pf-t--global--icon--color--on-disabled", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-disabled" + }, + "path": [ + "global", + "icon", + "color", + "on-disabled" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--color--disabled--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--undefined--default": { + "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", + "type": "color", + "value": "{global.dark.color.severity.undefined.100}" + }, + "name": "pf-t--global--icon--color--severity--undefined--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "undefined" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "undefined", + "default" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--color--severity--undefined--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "undefined" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "undefined", + "100" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--none--default": { + "description": "Use as the default color for severity icons that identify no issues.", + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify no issues.", + "type": "color", + "value": "{global.dark.color.severity.none.100}" + }, + "name": "pf-t--global--icon--color--severity--none--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "none" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "none", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--severity--none--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "none" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "none", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--minor--default": { + "description": "Use as the default color for severity icons that identify issues of minor severity.", + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify issues of minor severity.", + "type": "color", + "value": "{global.dark.color.severity.minor.100}" + }, + "name": "pf-t--global--icon--color--severity--minor--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "minor" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "minor", + "default" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--color--severity--minor--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "minor" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "minor", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--moderate--default": { + "description": "Use as the default color for severity icons that identify issues of moderate severity.", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify issues of moderate severity.", + "type": "color", + "value": "{global.dark.color.severity.moderate.100}" + }, + "name": "pf-t--global--icon--color--severity--moderate--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "moderate" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "moderate", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--severity--moderate--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "moderate" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "moderate", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--important--default": { + "description": "Use as the default color for severity icons that identify issues of important severity.", + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify issues of important severity.", + "type": "color", + "value": "{global.dark.color.severity.important.100}" + }, + "name": "pf-t--global--icon--color--severity--important--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "important" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "important", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--global--dark--color--severity--important--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "important" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "important", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--critical--default": { + "description": "Use as the default color for severity icons that identify issues of critical severity.", + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify issues of critical severity.", + "type": "color", + "value": "{global.dark.color.severity.critical.100}" + }, + "name": "pf-t--global--icon--color--severity--critical--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "critical" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "critical", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--severity--critical--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "critical" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "critical", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-red--default": { + "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-red--hover": { + "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-red--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orangered--default": { + "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orangered--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orangered--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orange--default": { + "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orange--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orange--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-yellow--default": { + "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-yellow--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-yellow--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-green--default": { + "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-green--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-green--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-teal--default": { + "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-teal--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-teal--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-blue--default": { + "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-blue--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-blue--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-purple--default": { + "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-purple--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-purple--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-gray--default": { + "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-gray--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-gray--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--brand--default": { + "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", + "type": "color", + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--border--color--brand--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "border", + "color", + "brand", + "default" + ], + "references": [ + { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "{global.dark.color.brand.100}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--brand--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--brand--hover": { + "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", + "type": "color", + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--border--color--brand--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "border", + "color", + "brand", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--brand--clicked": { + "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", + "type": "color", + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--border--color--brand--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "border", + "color", + "brand", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--success--default": { + "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--border--color--status--success--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "type": "color", + "value": "{global.dark.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--dark--color--status--success--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--success--hover": { + "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", + "type": "color", + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--border--color--status--success--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys a success status.", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a success status.", + "type": "color", + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--success--clicked": { + "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", + "type": "color", + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--border--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys a success status.", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a success status.", + "type": "color", + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--warning--default": { + "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.warning.default}" + }, + "name": "pf-t--global--border--color--status--warning--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", + "type": "color", + "value": "{global.dark.color.status.warning.100}" + }, + "name": "pf-t--global--color--status--warning--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--status--warning--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--warning--hover": { + "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.warning.hover}" + }, + "name": "pf-t--global--border--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys a warning status.", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a warning status.", + "type": "color", + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--warning--clicked": { + "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.warning.clicked}" + }, + "name": "pf-t--global--border--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys a warning status.", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a warning status.", + "type": "color", + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--danger--default": { + "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--border--color--status--danger--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "{global.dark.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--status--danger--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--danger--hover": { + "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--border--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--danger--clicked": { + "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--border--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--info--default": { + "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--border--color--status--info--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "type": "color", + "value": "{global.dark.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--status--info--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--info--hover": { + "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--border--color--status--info--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys an info status.", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys an info status.", + "type": "color", + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--info--clicked": { + "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--border--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys an info status.", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys an info status.", + "type": "color", + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--custom--default": { + "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--border--color--status--custom--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.dark.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--dark--color--status--custom--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--custom--hover": { + "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--border--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--custom--clicked": { + "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--border--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--default": { + "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", + "type": "color", + "value": "{global.dark.border.color.200}" + }, + "name": "pf-t--global--border--color--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "default" + }, + "path": [ + "global", + "border", + "color", + "default" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--border--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "border", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "border", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--hover": { + "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", + "type": "color", + "value": "{global.dark.color.brand.100}" + }, + "name": "pf-t--global--border--color--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "hover" + }, + "path": [ + "global", + "border", + "color", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--brand--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--clicked": { + "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--border--color--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "clicked" + }, + "path": [ + "global", + "border", + "color", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--disabled": { + "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", + "type": "color", + "value": "{global.dark.color.disabled.200}" + }, + "name": "pf-t--global--border--color--disabled", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "border", + "color", + "disabled" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--dark--color--disabled--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--alt": { + "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", + "type": "color", + "value": "{global.background.color.primary.default}" + }, + "name": "pf-t--global--border--color--alt", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "alt" + }, + "path": [ + "global", + "border", + "color", + "alt" + ], + "references": [ + { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--on-secondary": { + "description": "Use on borders/dividers that are placed on a secondary bkg color.", + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use on borders/dividers that are placed on a secondary bkg color.", + "type": "color", + "value": "{global.dark.border.color.200}" + }, + "name": "pf-t--global--border--color--on-secondary", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "on-secondary" + }, + "path": [ + "global", + "border", + "color", + "on-secondary" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--border--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "border", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "border", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--red--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.dark.color.nonstatus.red.100}" + }, + "name": "pf-t--global--border--color--nonstatus--red--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--red--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.red.200}" + }, + "name": "pf-t--global--border--color--nonstatus--red--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--red--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.red.200}" + }, + "name": "pf-t--global--border--color--nonstatus--red--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orangered--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.orangered.100}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orangered--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orangered--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orange--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.orange.100}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orange--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orange--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--yellow--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.yellow.100}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--yellow--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.yellow.200}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--yellow--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.yellow.200}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--green--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.green.100}" + }, + "name": "pf-t--global--border--color--nonstatus--green--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "default" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--green--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.green.200}" + }, + "name": "pf-t--global--border--color--nonstatus--green--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--green--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.green.200}" + }, + "name": "pf-t--global--border--color--nonstatus--green--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--teal--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.teal.100}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "default" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--teal--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.teal.200}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--teal--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.teal.200}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--blue--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.blue.100}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--blue--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--blue--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--purple--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.purple.100}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--purple--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--purple--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--gray--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.gray.100}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "default" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--gray--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--gray--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--box-shadow--color--sm": { + "description": "Use as the color of small box-shadows.", + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of small box-shadows.", + "type": "color", + "value": "{global.dark.box-shadow.color.100}" + }, + "name": "pf-t--global--box-shadow--color--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "color", + "sm" + ], + "references": [ + { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)" + }, + "name": "pf-t--global--dark--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "box-shadow", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "box-shadow", + "color", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--color--md": { + "description": "Use as the color of medium box-shadows.", + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of medium box-shadows.", + "type": "color", + "value": "{global.dark.box-shadow.color.100}" + }, + "name": "pf-t--global--box-shadow--color--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "color", + "md" + ], + "references": [ + { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)" + }, + "name": "pf-t--global--dark--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "box-shadow", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "box-shadow", + "color", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--color--lg": { + "description": "Use as the color of large box-shadows.", + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of large box-shadows.", + "type": "color", + "value": "{global.dark.box-shadow.color.100}" + }, + "name": "pf-t--global--box-shadow--color--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "color", + "lg" + ], + "references": [ + { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)" + }, + "name": "pf-t--global--dark--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "box-shadow", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "box-shadow", + "color", + "100" + ] + } + ] + }, + "pf-t--global--background--color--highlight--default": { + "description": "Use as the background color for highlighted elements", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the background color for highlighted elements", + "type": "color", + "value": "{global.dark.background.color.highlight.100}" + }, + "name": "pf-t--global--background--color--highlight--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--background--color--highlight--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "highlight" + }, + "path": [ + "global", + "dark", + "background", + "color", + "highlight", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--highlight--clicked": { + "description": "Use as the active state for for highlighted elements", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the active state for for highlighted elements", + "type": "color", + "value": "{global.dark.background.color.highlight.200}" + }, + "name": "pf-t--global--background--color--highlight--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--background--color--highlight--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "highlight" + }, + "path": [ + "global", + "dark", + "background", + "color", + "highlight", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--primary--default": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--primary--hover": { + "description": "Use as the hover state for primary backgrounds", + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for primary backgrounds", + "type": "color", + "value": "{global.dark.background.color.300}" + }, + "name": "pf-t--global--background--color--primary--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "primary", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--primary--clicked": { + "description": "Use as the clicked state for primary backgrounds", + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for primary backgrounds", + "type": "color", + "value": "{global.dark.background.color.300}" + }, + "name": "pf-t--global--background--color--primary--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "primary", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--secondary--default": { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "type": "color", + "value": "{global.dark.background.color.100}" + }, + "name": "pf-t--global--background--color--secondary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--dark--background--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--secondary--hover": { + "description": "Use as the hover state for secondary backgrounds", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for secondary backgrounds", + "type": "color", + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--secondary--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--secondary--clicked": { + "description": "Use as the clicked state for secondary backgrounds", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for secondary backgrounds", + "type": "color", + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--secondary--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--floating--default": { + "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", + "type": "color", + "value": "{global.dark.background.color.300}" + }, + "name": "pf-t--global--background--color--floating--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "floating", + "default" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--floating--hover": { + "description": "Use as the hover state for floating backgrounds", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for floating backgrounds", + "type": "color", + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--floating--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "floating", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--floating--clicked": { + "description": "Use as the clicked state for floating backgrounds", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for floating backgrounds", + "type": "color", + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--floating--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "floating", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--action--plain--default": { + "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", + "type": "color", + "value": "rgba(0, 0, 0, 0.0000)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", + "type": "color", + "value": "rgba(0, 0, 0, 0.0000)" + }, + "name": "pf-t--global--background--color--action--plain--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "default" + ] + }, + "pf-t--global--background--color--action--plain--hover": { + "description": "Use as the hover state for components that use the plain action default background.", + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for components that use the plain action default background.", + "type": "color", + "value": "{global.dark.background.color.600}" + }, + "name": "pf-t--global--background--color--action--plain--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "hover" + ], + "references": [ + { + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)" + }, + "name": "pf-t--global--dark--background--color--600", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "600" + }, + "path": [ + "global", + "dark", + "background", + "color", + "600" + ] + } + ] + }, + "pf-t--global--background--color--action--plain--clicked": { + "description": "Use as the active/pressed state for components that use the plain action default background.", + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the active/pressed state for components that use the plain action default background.", + "type": "color", + "value": "{global.dark.background.color.600}" + }, + "name": "pf-t--global--background--color--action--plain--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)" + }, + "name": "pf-t--global--dark--background--color--600", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "600" + }, + "path": [ + "global", + "dark", + "background", + "color", + "600" + ] + } + ] + }, + "pf-t--global--background--color--action--plain--alt--hover": { + "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", + "type": "color", + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--action--plain--alt--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "alt", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--action--plain--alt--clicked": { + "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", + "type": "color", + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--action--plain--alt--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "alt", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--control--default": { + "description": "Use as the default background for control elements like form inputs and menu toggles.", + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background for control elements like form inputs and menu toggles.", + "type": "color", + "value": "{global.dark.background.color.300}" + }, + "name": "pf-t--global--background--color--control--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "control", + "default" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--inverse--default": { + "description": "Use as the background color components with inversed backgrounds like tooltips.", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the background color components with inversed backgrounds like tooltips.", + "type": "color", + "value": "{global.dark.background.color.400}" + }, + "name": "pf-t--global--background--color--inverse--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "inverse", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "inverse", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--background--color--400", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "400" + }, + "path": [ + "global", + "dark", + "background", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--disabled--default": { + "description": "Use as the background color for disabled components.", + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the background color for disabled components.", + "type": "color", + "value": "{global.dark.color.disabled.100}" + }, + "name": "pf-t--global--background--color--disabled--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "disabled", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "disabled", + "default" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--color--disabled--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "100" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--backdrop--default": { + "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", + "type": "color", + "value": "rgba(21, 21, 21, 0.8000)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", + "type": "color", + "value": "{global.dark.background.color.500}" + }, + "name": "pf-t--global--background--color--backdrop--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "backdrop", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "backdrop", + "default" + ], + "references": [ + { + "type": "color", + "value": "rgba(21, 21, 21, 0.8000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(21, 21, 21, 0.8000)" + }, + "name": "pf-t--global--dark--background--color--500", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "500" + }, + "path": [ + "global", + "dark", + "background", + "color", + "500" + ] + } + ] + }, + "pf-t--global--color--brand--default": { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "{global.dark.color.brand.100}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--brand--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--brand--hover": { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--brand--clicked": { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--favorite--default": { + "description": "Use as the default color for elements that have been favorited", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that have been favorited", + "type": "color", + "value": "{global.dark.color.favorite.100}" + }, + "name": "pf-t--global--color--favorite--default", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "default" + }, + "path": [ + "global", + "color", + "favorite", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--favorite--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--favorite--hover": { + "description": "Use as the hover state for elements that have been favorited", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have been favorited", + "type": "color", + "value": "{global.dark.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "favorite", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--favorite--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--favorite--clicked": { + "description": "Use as the clicked state for elements that have been favorited", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have been favorited", + "type": "color", + "value": "{global.dark.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "favorite", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--favorite--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--success--default": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "type": "color", + "value": "{global.dark.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--dark--color--status--success--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--success--hover": { + "description": "Use as the hover state for any element that conveys a success status.", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a success status.", + "type": "color", + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--success--clicked": { + "description": "Use as the clicked state for any element that conveys a success status.", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a success status.", + "type": "color", + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--warning--default": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", + "type": "color", + "value": "{global.dark.color.status.warning.100}" + }, + "name": "pf-t--global--color--status--warning--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--status--warning--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--warning--hover": { + "description": "Use as the hover state for any element that conveys a warning status.", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a warning status.", + "type": "color", + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--warning--clicked": { + "description": "Use as the clicked state for any element that conveys a warning status.", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a warning status.", + "type": "color", + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--danger--default": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "{global.dark.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--status--danger--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--danger--hover": { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--danger--clicked": { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--info--default": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "type": "color", + "value": "{global.dark.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--status--info--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--info--hover": { + "description": "Use as the hover state for any element that conveys an info status.", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys an info status.", + "type": "color", + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--info--clicked": { + "description": "Use as the clicked state for any element that conveys an info status.", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys an info status.", + "type": "color", + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--custom--default": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.dark.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--dark--color--status--custom--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--custom--hover": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--custom--clicked": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--default": { + "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--color--status--unread--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "unread", + "default" + ], + "references": [ + { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "{global.dark.color.brand.100}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--brand--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--hover": { + "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--color--status--unread--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "unread", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--clicked": { + "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--color--status--unread--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "unread", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--attention--default": { + "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--color--status--unread--attention--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "{global.dark.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--status--danger--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--attention--clicked": { + "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--color--status--unread--attention--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--attention--hover": { + "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--color--status--unread--attention--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--read--on-secondary": { + "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", + "type": "color", + "value": "{global.background.color.control.default}" + }, + "name": "pf-t--global--color--status--read--on-secondary", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "read", + "state": "on-secondary" + }, + "path": [ + "global", + "color", + "status", + "read", + "on-secondary" + ], + "references": [ + { + "description": "Use as the default background for control elements like form inputs and menu toggles.", + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background for control elements like form inputs and menu toggles.", + "type": "color", + "value": "{global.dark.background.color.300}" + }, + "name": "pf-t--global--background--color--control--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "control", + "default" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--read--on-primary": { + "description": "Use as the default color for elements that convey a read status and are placed on a primary background", + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that convey a read status and are placed on a primary background", + "type": "color", + "value": "{global.background.color.secondary.default}" + }, + "name": "pf-t--global--color--status--read--on-primary", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "read", + "state": "on-primary" + }, + "path": [ + "global", + "color", + "status", + "read", + "on-primary" + ], + "references": [ + { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "type": "color", + "value": "{global.dark.background.color.100}" + }, + "name": "pf-t--global--background--color--secondary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--dark--background--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.dark.color.nonstatus.red.100}" + }, + "name": "pf-t--global--color--nonstatus--red--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--hover": { + "description": "Use as the hover state color for any element that uses the non status red background color.", + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status red background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.red.200}" + }, + "name": "pf-t--global--color--nonstatus--red--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--clicked": { + "description": "Use as the clicked state color for any element that uses the non status red background color.", + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status red background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.red.200}" + }, + "name": "pf-t--global--color--nonstatus--red--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.dark.color.nonstatus.orangered.100}" + }, + "name": "pf-t--global--color--nonstatus--orangered--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--hover": { + "description": "Use as the hover state color for any element that uses the non status orange-red background color.", + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status orange-red background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--color--nonstatus--orangered--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--clicked": { + "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--color--nonstatus--orangered--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.dark.color.nonstatus.orange.100}" + }, + "name": "pf-t--global--color--nonstatus--orange--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--hover": { + "description": "Use as the hover state color for any element that uses the non status orange background color.", + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status orange background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--color--nonstatus--orange--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--clicked": { + "description": "Use as the clicked state color for any element that uses the non status orange background color.", + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status orange background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--color--nonstatus--orange--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.dark.color.nonstatus.yellow.100}" + }, + "name": "pf-t--global--color--nonstatus--yellow--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--hover": { + "description": "Use as the hover state color for any element that uses the non status yellow background color.", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status yellow background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.yellow.200}" + }, + "name": "pf-t--global--color--nonstatus--yellow--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--clicked": { + "description": "Use as the clicked state color for any element that uses the non status yellow background color.", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status yellow background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.yellow.200}" + }, + "name": "pf-t--global--color--nonstatus--yellow--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.dark.color.nonstatus.green.100}" + }, + "name": "pf-t--global--color--nonstatus--green--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "default" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--hover": { + "description": "Use as the hover state color for any element that uses the non status green background color.", + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status green background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.green.200}" + }, + "name": "pf-t--global--color--nonstatus--green--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--clicked": { + "description": "Use as the clicked state color for any element that uses the non status green background color.", + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status green background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.green.200}" + }, + "name": "pf-t--global--color--nonstatus--green--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.dark.color.nonstatus.teal.100}" + }, + "name": "pf-t--global--color--nonstatus--teal--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "default" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--hover": { + "description": "Use as the hover state color for any element that uses the non status teal background color.", + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status teal background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.teal.200}" + }, + "name": "pf-t--global--color--nonstatus--teal--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--clicked": { + "description": "Use as the clicked state color for any element that uses the non status teal background color.", + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status teal background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.teal.200}" + }, + "name": "pf-t--global--color--nonstatus--teal--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.dark.color.nonstatus.blue.100}" + }, + "name": "pf-t--global--color--nonstatus--blue--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--hover": { + "description": "Use as the hover state color for any element that uses the non status blue background color.", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status blue background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--color--nonstatus--blue--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--clicked": { + "description": "Use as the clicked state color for any element that uses the non status blue background color.", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status blue background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--color--nonstatus--blue--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.dark.color.nonstatus.purple.100}" + }, + "name": "pf-t--global--color--nonstatus--purple--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--hover": { + "description": "Use as the hover state color for any element that uses the non status purple background color.", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status purple background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--color--nonstatus--purple--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--clicked": { + "description": "Use as the clicked state color for any element that uses the non status purple background color.", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status purple background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--color--nonstatus--purple--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.dark.color.nonstatus.gray.100}" + }, + "name": "pf-t--global--color--nonstatus--gray--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "default" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--hover": { + "description": "Use as the hover state color for any element that uses the non status gray background color.", + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status gray background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--color--nonstatus--gray--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--clicked": { + "description": "Use as the clicked state color for any element that uses the non status gray background color.", + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status gray background color.", + "type": "color", + "value": "{global.dark.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--color--nonstatus--gray--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--link--default": { + "description": "Use as the default text color for links.", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default text color for links.", + "type": "color", + "value": "{global.dark.text.color.link.100}" + }, + "name": "pf-t--global--text--color--link--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "link", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--text--color--link--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--link--hover": { + "description": "Use as the hover state text color for links.", + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state text color for links.", + "type": "color", + "value": "{global.dark.text.color.link.200}" + }, + "name": "pf-t--global--text--color--link--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "link", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--text--color--link--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--link--visited": { + "description": "Use as the color to indicate that a link has been visited.", + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color to indicate that a link has been visited.", + "type": "color", + "value": "{global.dark.text.color.link.300}" + }, + "name": "pf-t--global--text--color--link--visited", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "visited" + }, + "path": [ + "global", + "text", + "color", + "link", + "visited" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--text--color--link--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--default": { + "description": "Use as the default color for branded text.", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for branded text.", + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--text--color--brand--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--hover": { + "description": "Use as the hover state color for branded text.", + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for branded text.", + "type": "color", + "value": "{global.dark.color.brand.300}" + }, + "name": "pf-t--global--text--color--brand--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--brand--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--clicked": { + "description": "Use as the clicked state color for branded text.", + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for branded text.", + "type": "color", + "value": "{global.dark.color.brand.300}" + }, + "name": "pf-t--global--text--color--brand--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "text", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--brand--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--regular": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.dark.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--text--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--subtle": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", + "type": "color", + "value": "{global.dark.text.color.200}" + }, + "name": "pf-t--global--text--color--subtle", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "text", + "color", + "subtle" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--text--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "text", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--inverse": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-brand--default": { + "description": "Use as the default color for text placed on a brand-colored background.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text placed on a brand-colored background.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-brand--hover": { + "description": "Use as the hover state color for text placed on a brand-colored background.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text placed on a brand-colored background.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-brand--clicked": { + "description": "Use as the clicked state color for text placed on a brand-colored background.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text placed on a brand-colored background.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "clicked" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--placeholder": { + "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", + "type": "color", + "value": "{global.text.color.subtle}" + }, + "name": "pf-t--global--text--color--placeholder", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "placeholder" + }, + "path": [ + "global", + "text", + "color", + "placeholder" + ], + "references": [ + { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", + "type": "color", + "value": "{global.dark.text.color.200}" + }, + "name": "pf-t--global--text--color--subtle", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "text", + "color", + "subtle" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--text--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "text", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--disabled": { + "description": "Use as the color of text on disabled elements, like disabled menu items.", + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text on disabled elements, like disabled menu items.", + "type": "color", + "value": "{global.dark.color.disabled.200}" + }, + "name": "pf-t--global--text--color--disabled", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "text", + "color", + "disabled" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--dark--color--disabled--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-disabled": { + "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", + "type": "color", + "value": "{global.dark.color.disabled.300}" + }, + "name": "pf-t--global--text--color--on-disabled", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-disabled" + }, + "path": [ + "global", + "text", + "color", + "on-disabled" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--color--disabled--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--required": { + "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", + "type": "color", + "value": "{global.dark.text.color.400}" + }, + "name": "pf-t--global--text--color--required", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "required" + }, + "path": [ + "global", + "text", + "color", + "required" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--text--color--400", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "400" + }, + "path": [ + "global", + "dark", + "text", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-highlight": { + "description": "Use as the color of text that is highlighted.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is highlighted.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--on-highlight", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-highlight" + }, + "path": [ + "global", + "text", + "color", + "on-highlight" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--success--default": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--text--color--status--success--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "type": "color", + "value": "{global.dark.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--dark--color--status--success--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--success--hover": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--text--color--status--success--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys a success status.", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a success status.", + "type": "color", + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--success--clicked": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--text--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys a success status.", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a success status.", + "type": "color", + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-success--default": { + "description": "Use as the default color for text that is placed on a success background color, like in banners.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a success background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-success--hover": { + "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-success--clicked": { + "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--warning--default": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.default}" + }, + "name": "pf-t--global--text--color--status--warning--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", + "type": "color", + "value": "{global.dark.color.status.warning.100}" + }, + "name": "pf-t--global--color--status--warning--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--status--warning--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--warning--hover": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.hover}" + }, + "name": "pf-t--global--text--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys a warning status.", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a warning status.", + "type": "color", + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--warning--clicked": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.clicked}" + }, + "name": "pf-t--global--text--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys a warning status.", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a warning status.", + "type": "color", + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-warning--default": { + "description": "Use as the default color for text that is placed on a warning background color, like in banners.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a warning background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-warning--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-warning--hover": { + "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-warning--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-warning--clicked": { + "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-warning--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--danger--default": { + "description": "Use as the default color for text that communicates a danger status.", + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates a danger status.", + "type": "color", + "value": "{global.dark.color.status.danger.250}" + }, + "name": "pf-t--global--text--color--status--danger--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--color--status--danger--250", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "250" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--danger--hover": { + "description": "Use as the hover state color for text that communicates a danger status.", + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates a danger status.", + "type": "color", + "value": "{global.dark.color.status.danger.300}" + }, + "name": "pf-t--global--text--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--status--danger--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "300" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--danger--clicked": { + "description": "Use as the clicked state color for text that communicates a danger status.", + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates a danger status.", + "type": "color", + "value": "{global.dark.color.status.danger.300}" + }, + "name": "pf-t--global--text--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--status--danger--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "300" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-danger--default": { + "description": "Use as the default color for text that is placed on a danger background color, like in banners.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a danger background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-danger--hover": { + "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-danger--clicked": { + "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--info--default": { + "description": "Use as the default color for text that communicates am info status.", + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates am info status.", + "type": "color", + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--text--color--status--info--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "type": "color", + "value": "{global.dark.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--status--info--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--info--hover": { + "description": "Use as the hover state color for text that communicates an infostatus.", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates an infostatus.", + "type": "color", + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--text--color--status--info--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys an info status.", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys an info status.", + "type": "color", + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--info--clicked": { + "description": "Use as the clicked state color for text that communicates an info status.", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates an info status.", + "type": "color", + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--text--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys an info status.", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys an info status.", + "type": "color", + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-info--default": { + "description": "Use as the default color for text that is placed on an info background color, like in banners.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on an info background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-info--hover": { + "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-info--clicked": { + "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--custom--default": { + "description": "Use as the default color for text that communicates a custom status.", + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates a custom status.", + "type": "color", + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--text--color--status--custom--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.dark.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--dark--color--status--custom--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--custom--hover": { + "description": "Use as the hover state color for text that communicates a custom status.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates a custom status.", + "type": "color", + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--text--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--custom--clicked": { + "description": "Use as the clicked state color for text that communicates a custom status.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates a custom status.", + "type": "color", + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--text--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-custom--default": { + "description": "Use as the default color for text that is placed on a custom background color, like in banners.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a custom background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-custom--hover": { + "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-custom--clicked": { + "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-default--default": { + "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-default--hover": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-default--clicked": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-attention--default": { + "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-attention--hover": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-attention--clicked": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-red--default": { + "description": "Use as the default color for text that is placed on a nonstatus red background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus red background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-red--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-red--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orangered--default": { + "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orangered--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orangered--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orange--default": { + "description": "Use as the default color for text that is placed on a nonstatus orange background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus orange background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orange--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orange--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-yellow--default": { + "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-yellow--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-yellow--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-green--default": { + "description": "Use as the default color for text that is placed on a nonstatus green background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus green background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-green--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-green--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-teal--default": { + "description": "Use as the default color for text that is placed on a nonstatus teal background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus teal background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-teal--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-teal--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-blue--default": { + "description": "Use as the default color for text that is placed on a nonstatus blue background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus blue background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-blue--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-blue--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-purple--default": { + "description": "Use as the default color for text that is placed on a nonstatus purple background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus purple background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-purple--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-purple--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-gray--default": { + "description": "Use as the default color for text that is placed on a nonstatus gray background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus gray background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-gray--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-gray--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } + }, + "dimension": { + "pf-t--global--spacer--xs": { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + }, + "pf-t--global--spacer--sm": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + }, + "pf-t--global--spacer--md": { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + }, + "pf-t--global--spacer--lg": { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + }, + "pf-t--global--spacer--xl": { + "description": "Use for extra large spaces between elements.", + "type": "number", + "value": "32px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra large spaces between elements.", + "type": "number", + "value": "{global.spacer.500}" + }, + "name": "pf-t--global--spacer--xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xl" + }, + "path": [ + "global", + "spacer", + "xl" + ], + "references": [ + { + "type": "number", + "value": "32px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + } + ] + }, + "pf-t--global--spacer--2xl": { + "description": "Use for double extra large spaces spacing between elements.", + "type": "number", + "value": "48px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for double extra large spaces spacing between elements.", + "type": "number", + "value": "{global.spacer.600}" + }, + "name": "pf-t--global--spacer--2xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "2xl" + }, + "path": [ + "global", + "spacer", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "48px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + } + ] + }, + "pf-t--global--spacer--3xl": { + "description": "Use for triple extra large spaces between elements.", + "type": "number", + "value": "64px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for triple extra large spaces between elements.", + "type": "number", + "value": "{global.spacer.700}" + }, + "name": "pf-t--global--spacer--3xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "3xl" + }, + "path": [ + "global", + "spacer", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "64px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 64 + }, + "name": "pf-t--global--spacer--700", + "attributes": { + "category": "global", + "type": "spacer", + "item": "700" + }, + "path": [ + "global", + "spacer", + "700" + ] + } + ] + }, + "pf-t--global--spacer--4xl": { + "description": "Use for quadruple extra large spaces between elements.", + "type": "number", + "value": "80px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for quadruple extra large spaces between elements.", + "type": "number", + "value": "{global.spacer.800}" + }, + "name": "pf-t--global--spacer--4xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "4xl" + }, + "path": [ + "global", + "spacer", + "4xl" + ], + "references": [ + { + "type": "number", + "value": "80px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 80 + }, + "name": "pf-t--global--spacer--800", + "attributes": { + "category": "global", + "type": "spacer", + "item": "800" + }, + "path": [ + "global", + "spacer", + "800" + ] + } + ] + }, + "pf-t--global--spacer--control--vertical--default": { + "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--vertical--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "default" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "default" + ], + "references": [ + { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--vertical--compact": { + "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", + "type": "number", + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--control--vertical--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "compact" + ], + "references": [ + { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--vertical--plain": { + "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--vertical--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "plain" + ], + "references": [ + { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--horizontal--default": { + "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--control--horizontal--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "default" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "default" + ], + "references": [ + { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--horizontal--plain": { + "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--horizontal--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "plain" + ], + "references": [ + { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--horizontal--compact": { + "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--horizontal--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "compact" + ], + "references": [ + { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--horizontal--spacious": { + "description": "Use to set the horizontal padding in large/display controls.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding in large/display controls.", + "type": "number", + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--control--horizontal--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "spacious" + ], + "references": [ + { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--text-to-element--default": { + "description": "Use to space an element, like an icon or badge, inline with text", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to space an element, like an icon or badge, inline with text", + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--gap--text-to-element--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "text-to-element", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "text-to-element", + "default" + ], + "references": [ + { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--control-to-control--default": { + "description": "Use to set the space between controls, like in input groups or filter groups", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the space between controls, like in input groups or filter groups", + "type": "number", + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--gap--control-to-control--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "control-to-control", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "control-to-control", + "default" + ], + "references": [ + { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--group--vertical": { + "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--gap--group--vertical", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group", + "state": "vertical" + }, + "path": [ + "global", + "spacer", + "gap", + "group", + "vertical" + ], + "references": [ + { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--group--horizontal": { + "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--gap--group--horizontal", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group", + "state": "horizontal" + }, + "path": [ + "global", + "spacer", + "gap", + "group", + "horizontal" + ], + "references": [ + { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--group-to-group--horizontal": { + "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", + "type": "number", + "value": "48px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", + "type": "number", + "value": "{global.spacer.2xl}" + }, + "name": "pf-t--global--spacer--gap--group-to-group--horizontal", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group-to-group", + "state": "horizontal" + }, + "path": [ + "global", + "spacer", + "gap", + "group-to-group", + "horizontal" + ], + "references": [ + { + "description": "Use for double extra large spaces spacing between elements.", + "type": "number", + "value": "48px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for double extra large spaces spacing between elements.", + "type": "number", + "value": "{global.spacer.600}" + }, + "name": "pf-t--global--spacer--2xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "2xl" + }, + "path": [ + "global", + "spacer", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "48px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--group-to-group--vertical": { + "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", + "type": "number", + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--gap--group-to-group--vertical", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group-to-group", + "state": "vertical" + }, + "path": [ + "global", + "spacer", + "gap", + "group-to-group", + "vertical" + ], + "references": [ + { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--action-to-action--default": { + "description": "Use to set the space between actions, like in an action list group.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the space between actions, like in an action list group.", + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--gap--action-to-action--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "action-to-action", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "action-to-action", + "default" + ], + "references": [ + { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--action-to-action--plain": { + "description": "Use to set the space between plain actions, like in an action list group.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the space between plain actions, like in an action list group.", + "type": "number", + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--gap--action-to-action--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "action-to-action", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "gap", + "action-to-action", + "plain" + ], + "references": [ + { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--horizontal--default": { + "description": "Use to set the horizontal padding inside a default action, like buttons.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding inside a default action, like buttons.", + "type": "number", + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--action--horizontal--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "default" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "default" + ], + "references": [ + { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--horizontal--plain": { + "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", + "type": "number", + "value": "8px", + "compact": { + "description": "Use to set the horizontal padding inside a compact, plain action/button.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false + }, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", + "type": "number", + "value": "{global.spacer.sm}", + "compact": { + "description": "Use to set the horizontal padding inside a compact, plain action/button.", + "type": "number", + "value": "{global.spacer.xs}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false + } + }, + "name": "pf-t--global--spacer--action--horizontal--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "plain" + ], + "references": [ + { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--horizontal--compact": { + "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--action--horizontal--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "compact" + ], + "references": [ + { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--horizontal--spacious": { + "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", + "type": "number", + "value": "32px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", + "type": "number", + "value": "{global.spacer.xl}" + }, + "name": "pf-t--global--spacer--action--horizontal--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "spacious" + ], + "references": [ + { + "description": "Use for extra large spaces between elements.", + "type": "number", + "value": "32px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra large spaces between elements.", + "type": "number", + "value": "{global.spacer.500}" + }, + "name": "pf-t--global--spacer--xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xl" + }, + "path": [ + "global", + "spacer", + "xl" + ], + "references": [ + { + "type": "number", + "value": "32px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--vertical--compact": { + "description": "Use to set the vertical padding inside a compact action, like compact buttons.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the vertical padding inside a compact action, like compact buttons.", + "type": "number", + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--action--vertical--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "vertical", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "action", + "vertical", + "compact" + ], + "references": [ + { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--vertical--spacious": { + "description": "Use to set the vertical padding inside a large/display action, like CTAs.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the vertical padding inside a large/display action, like CTAs.", + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--action--vertical--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "vertical", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "action", + "vertical", + "spacious" + ], + "references": [ + { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--sm": { + "description": "Use for small icons.", + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small icons.", + "type": "number", + "value": "{global.icon.size.100}" + }, + "name": "pf-t--global--icon--size--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "icon", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--icon--size--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "size", + "100" + ] + } + ] + }, + "pf-t--global--icon--size--md": { + "description": "Use for medium icons.", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for medium icons.", + "type": "number", + "value": "{global.icon.size.200}" + }, + "name": "pf-t--global--icon--size--md", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "icon", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--icon--size--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "size", + "200" + ] + } + ] + }, + "pf-t--global--icon--size--lg": { + "description": "Use for large icons.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for large icons.", + "type": "number", + "value": "{global.icon.size.250}" + }, + "name": "pf-t--global--icon--size--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "icon", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--icon--size--250", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "250" + }, + "path": [ + "global", + "icon", + "size", + "250" + ] + } + ] + }, + "pf-t--global--icon--size--xl": { + "description": "Use for extra large icons.", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra large icons.", + "type": "number", + "value": "{global.icon.size.300}" + }, + "name": "pf-t--global--icon--size--xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "icon", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--icon--size--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "size", + "300" + ] + } + ] + }, + "pf-t--global--icon--size--2xl": { + "description": "Use for double extra large icons.", + "type": "number", + "value": "56px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for double extra large icons.", + "type": "number", + "value": "{global.icon.size.400}" + }, + "name": "pf-t--global--icon--size--2xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "icon", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "56px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 56 + }, + "name": "pf-t--global--icon--size--400", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "icon", + "size", + "400" + ] + } + ] + }, + "pf-t--global--icon--size--3xl": { + "description": "Use for triple extra large icons.", + "type": "number", + "value": "96px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for triple extra large icons.", + "type": "number", + "value": "{global.icon.size.500}" + }, + "name": "pf-t--global--icon--size--3xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "icon", + "size", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "96px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 96 + }, + "name": "pf-t--global--icon--size--500", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "icon", + "size", + "500" + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h1": { + "description": "Use for icons that are placed inline with first level headings", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with first level headings", + "type": "number", + "value": "{global.font.size.heading.h1}" + }, + "name": "pf-t--global--icon--size--font--heading--h1", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h1" + ], + "references": [ + { + "description": "Use as the font size for first level headings.", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for first level headings.", + "type": "number", + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--font--size--heading--h1", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h1" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h1" + ], + "references": [ + { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h2": { + "description": "Use for icons that are placed inline with second level headings", + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with second level headings", + "type": "number", + "value": "{global.font.size.heading.h2}" + }, + "name": "pf-t--global--icon--size--font--heading--h2", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h2" + ], + "references": [ + { + "description": "Use as the font size for second level headings.", + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for second level headings.", + "type": "number", + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--font--size--heading--h2", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h2" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h2" + ], + "references": [ + { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h3": { + "description": "Use for icons that are placed inline with third level headings", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with third level headings", + "type": "number", + "value": "{global.font.size.heading.h3}" + }, + "name": "pf-t--global--icon--size--font--heading--h3", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h3" + ], + "references": [ + { + "description": "Use as the font size for third level headings.", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for third level headings.", + "type": "number", + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--font--size--heading--h3", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h3" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h3" + ], + "references": [ + { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h4": { + "description": "Use for icons that are placed inline with fourth level headings", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with fourth level headings", + "type": "number", + "value": "{global.font.size.heading.h4}" + }, + "name": "pf-t--global--icon--size--font--heading--h4", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h4" + ], + "references": [ + { + "description": "Use as the font size for fourth-level headings.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for fourth-level headings.", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h4", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h4" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h4" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h5": { + "description": "Use for icons that are placed inline with fifth level headings", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with fifth level headings", + "type": "number", + "value": "{global.font.size.heading.h5}" + }, + "name": "pf-t--global--icon--size--font--heading--h5", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h5" + ], + "references": [ + { + "description": "Use as the font size for fifth level headings.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for fifth level headings.", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h5", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h5" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h5" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h6": { + "description": "Use for icons that are placed inline with sixth level headings", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with sixth level headings", + "type": "number", + "value": "{global.font.size.heading.h6}" + }, + "name": "pf-t--global--icon--size--font--heading--h6", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h6" + ], + "references": [ + { + "description": "Use as the font size for sixth level headings.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for sixth level headings.", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h6", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h6" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h6" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--body--sm": { + "description": "Use for icons that are placed inline with small body text", + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with small body text", + "type": "number", + "value": "{global.font.size.body.sm}" + }, + "name": "pf-t--global--icon--size--font--body--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "sm" + ], + "references": [ + { + "description": "Use for a smaller font size in body sections.", + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for a smaller font size in body sections.", + "type": "number", + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--font--size--body--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "sm" + }, + "path": [ + "global", + "font", + "size", + "body", + "sm" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--body--default": { + "description": "Use for icons that are placed inline with default body text", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with default body text", + "type": "number", + "value": "{global.font.size.body.default}" + }, + "name": "pf-t--global--icon--size--font--body--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "default" + ], + "references": [ + { + "description": "Use as the default font size in body sections.", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the default font size in body sections.", + "type": "number", + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--font--size--body--default", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "default" + }, + "path": [ + "global", + "font", + "size", + "body", + "default" + ], + "references": [ + { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--body--lg": { + "description": "Use for icons that are placed inline with large body text", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with large body text", + "type": "number", + "value": "{global.font.size.body.lg}" + }, + "name": "pf-t--global--icon--size--font--body--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "lg" + ], + "references": [ + { + "description": "Use for a larger font size in body sections.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for a larger font size in body sections.", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--body--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "lg" + }, + "path": [ + "global", + "font", + "size", + "body", + "lg" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--xs": { + "description": "Use for icons that are placed inline with font–size–xs text", + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with font–size–xs text", + "type": "number", + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--icon--size--font--xs", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "xs" + }, + "path": [ + "global", + "icon", + "size", + "font", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--sm": { + "description": "Use for icons that are placed inline with font–size–sm text", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with font–size–sm text", + "type": "number", + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--icon--size--font--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "sm" + }, + "path": [ + "global", + "icon", + "size", + "font", + "sm" + ], + "references": [ + { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--md": { + "description": "Use for icons that are placed inline with font–size–md text", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with font–size–md text", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--icon--size--font--md", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "md" + }, + "path": [ + "global", + "icon", + "size", + "font", + "md" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--lg": { + "description": "Use for icons that are placed inline with font–size–lg text", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with font–size–lg text", + "type": "number", + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--icon--size--font--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "lg" + }, + "path": [ + "global", + "icon", + "size", + "font", + "lg" + ], + "references": [ + { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--xl": { + "description": "Use for icons that are placed inline with font–size–xl text", + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with font–size–xl text", + "type": "number", + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--icon--size--font--xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "xl" + ], + "references": [ + { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--2xl": { + "description": "Use for icons that are placed inline with font–size–2xl text", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with font–size–2xl text", + "type": "number", + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--icon--size--font--2xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "2xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "2xl" + ], + "references": [ + { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--3xl": { + "description": "Use for icons that are placed inline with font–size–3xl text", + "type": "number", + "value": "28px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with font–size–3xl text", + "type": "number", + "value": "{global.font.size.3xl}" + }, + "name": "pf-t--global--icon--size--font--3xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "3xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "3xl" + ], + "references": [ + { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "28px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.700}" + }, + "name": "pf-t--global--font--size--3xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "font", + "size", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "28px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--4xl": { + "description": "Use for icons that are placed inline with font–size–3xl text", + "type": "number", + "value": "36px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with font–size–3xl text", + "type": "number", + "value": "{global.font.size.4xl}" + }, + "name": "pf-t--global--icon--size--font--4xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "4xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "4xl" + ], + "references": [ + { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "36px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.800}" + }, + "name": "pf-t--global--font--size--4xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "4xl" + }, + "path": [ + "global", + "font", + "size", + "4xl" + ], + "references": [ + { + "type": "number", + "value": "36px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + } + ] + } + ] + }, + "pf-t--global--border--width--regular": { + "description": "Use as the default border width for elements.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the default border width for elements.", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--regular", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "regular" + }, + "path": [ + "global", + "border", + "width", + "regular" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--divider--default": { + "description": "Use as the default border width for dividers.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the default border width for dividers.", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "divider", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--divider--hover": { + "description": "Use as the border width hover state for dividers.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the border width hover state for dividers.", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "divider", + "hover" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--divider--clicked": { + "description": "Use as the border width clicked state for dividers.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the border width clicked state for dividers.", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "divider", + "clicked" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--strong": { + "description": "Use as a stronger/wider border width for elements.", + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as a stronger/wider border width for elements.", + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--strong", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "strong" + }, + "path": [ + "global", + "border", + "width", + "strong" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--extra-strong": { + "description": "Use as the strongest/widest border width for elements.", + "type": "number", + "value": "3px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the strongest/widest border width for elements.", + "type": "number", + "value": "{global.border.width.300}" + }, + "name": "pf-t--global--border--width--extra-strong", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "extra-strong" + }, + "path": [ + "global", + "border", + "width", + "extra-strong" + ], + "references": [ + { + "type": "number", + "value": "3px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 3 + }, + "name": "pf-t--global--border--width--300", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "300" + }, + "path": [ + "global", + "border", + "width", + "300" + ] + } + ] + }, + "pf-t--global--border--width--box--default": { + "description": "Use as the default border width for containers like cards, panels, code editors, etc.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the default border width for containers like cards, panels, code editors, etc.", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "box", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--box--hover": { + "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "box", + "hover" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--box--clicked": { + "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--box--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "box", + "clicked" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--box--status--default": { + "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--box--status--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "status" + }, + "path": [ + "global", + "border", + "width", + "box", + "status", + "default" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--box--status--read": { + "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--status--read", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "status" + }, + "path": [ + "global", + "border", + "width", + "box", + "status", + "read" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--action--default": { + "description": "Use as the default border width for actions like secondary and tertiary buttons", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the default border width for actions like secondary and tertiary buttons", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--action--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "action", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "action", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--action--hover": { + "description": "Use as the hover state border width for actions like secondary and tertiary buttons", + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the hover state border width for actions like secondary and tertiary buttons", + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--action--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "action", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "action", + "hover" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--action--clicked": { + "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--action--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "action", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "action", + "clicked" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--control--default": { + "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--control--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "control", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--control--hover": { + "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--control--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "control", + "hover" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--control--clicked": { + "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--control--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "control", + "clicked" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--radius--sharp": { + "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", + "type": "number", + "value": "{global.border.radius.0}" + }, + "name": "pf-t--global--border--radius--sharp", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "sharp" + }, + "path": [ + "global", + "border", + "radius", + "sharp" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--border--radius--0", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "0" + }, + "path": [ + "global", + "border", + "radius", + "0" + ] + } + ] + }, + "pf-t--global--border--radius--tiny": { + "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", + "type": "number", + "value": "{global.border.radius.100}" + }, + "name": "pf-t--global--border--radius--tiny", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "tiny" + }, + "path": [ + "global", + "border", + "radius", + "tiny" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--border--radius--100", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "100" + }, + "path": [ + "global", + "border", + "radius", + "100" + ] + } + ] + }, + "pf-t--global--border--radius--small": { + "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", + "type": "number", + "value": "6px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", + "type": "number", + "value": "{global.border.radius.200}" + }, + "name": "pf-t--global--border--radius--small", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "small" + }, + "path": [ + "global", + "border", + "radius", + "small" + ], + "references": [ + { + "type": "number", + "value": "6px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 6 + }, + "name": "pf-t--global--border--radius--200", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "200" + }, + "path": [ + "global", + "border", + "radius", + "200" + ] + } + ] + }, + "pf-t--global--border--radius--medium": { + "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", + "type": "number", + "value": "{global.border.radius.300}" + }, + "name": "pf-t--global--border--radius--medium", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "medium" + }, + "path": [ + "global", + "border", + "radius", + "medium" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--border--radius--300", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "300" + }, + "path": [ + "global", + "border", + "radius", + "300" + ] + } + ] + }, + "pf-t--global--border--radius--large": { + "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", + "type": "number", + "value": "{global.border.radius.400}" + }, + "name": "pf-t--global--border--radius--large", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "large" + }, + "path": [ + "global", + "border", + "radius", + "large" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--border--radius--400", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "400" + }, + "path": [ + "global", + "border", + "radius", + "400" + ] + } + ] + }, + "pf-t--global--border--radius--pill": { + "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", + "type": "number", + "value": "999px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", + "type": "number", + "value": "{global.border.radius.500}" + }, + "name": "pf-t--global--border--radius--pill", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "pill" + }, + "path": [ + "global", + "border", + "radius", + "pill" + ], + "references": [ + { + "type": "number", + "value": "999px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 999 + }, + "name": "pf-t--global--border--radius--500", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "500" + }, + "path": [ + "global", + "border", + "radius", + "500" + ] + } + ] + }, + "pf-t--global--font--family--body": { + "description": "Use to define the font family for body text", + "type": "number", + "value": "Red Hat Text VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the font family for body text", + "type": "number", + "value": "{global.font.family.100}" + }, + "name": "pf-t--global--font--family--body", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "body" + }, + "path": [ + "global", + "font", + "family", + "body" + ], + "references": [ + { + "type": "string", + "value": "Red Hat Text VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Text VF" + }, + "name": "pf-t--global--font--family--100", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "100" + }, + "path": [ + "global", + "font", + "family", + "100" + ] + } + ] + }, + "pf-t--global--font--family--heading": { + "description": "Use to define the font family for heading text", + "type": "number", + "value": "Red Hat Display VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the font family for heading text", + "type": "number", + "value": "{global.font.family.200}" + }, + "name": "pf-t--global--font--family--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "family", + "heading" + ], + "references": [ + { + "type": "string", + "value": "Red Hat Display VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Display VF" + }, + "name": "pf-t--global--font--family--200", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "200" + }, + "path": [ + "global", + "font", + "family", + "200" + ] + } + ] + }, + "pf-t--global--font--family--mono": { + "description": "Use to define the font family for mono text", + "type": "number", + "value": "Red Hat Mono VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the font family for mono text", + "type": "number", + "value": "{global.font.family.300}" + }, + "name": "pf-t--global--font--family--mono", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "mono" + }, + "path": [ + "global", + "font", + "family", + "mono" + ], + "references": [ + { + "type": "string", + "value": "Red Hat Mono VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Mono VF" + }, + "name": "pf-t--global--font--family--300", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "300" + }, + "path": [ + "global", + "font", + "family", + "300" + ] + } + ] + }, + "pf-t--global--font--weight--body": { + "description": "Use to define the default weight for body text", + "type": "number", + "value": 400, + "bold": { + "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", + "type": "number", + "value": 500, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false + }, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the default weight for body text", + "type": "number", + "value": "{global.font.weight.100}", + "bold": { + "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", + "type": "number", + "value": "{global.font.weight.200}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false + } + }, + "name": "pf-t--global--font--weight--body", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "body" + }, + "path": [ + "global", + "font", + "weight", + "body" + ], + "references": [ + { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--font--weight--100", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "100" + }, + "path": [ + "global", + "font", + "weight", + "100" + ] + } + ] + }, + "pf-t--global--font--weight--heading": { + "description": "Use to define the default weight for heading text", + "type": "number", + "value": 700, + "bold": { + "description": "Use to define the bold weight for heading text, often used to add emphasis.", + "type": "number", + "value": 700, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false + }, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the default weight for heading text", + "type": "number", + "value": "{global.font.weight.300}", + "bold": { + "description": "Use to define the bold weight for heading text, often used to add emphasis.", + "type": "number", + "value": "{global.font.weight.400}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false + } + }, + "name": "pf-t--global--font--weight--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "weight", + "heading" + ], + "references": [ + { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 700 + }, + "name": "pf-t--global--font--weight--300", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "300" + }, + "path": [ + "global", + "font", + "weight", + "300" + ] + } + ] + }, + "pf-t--global--font--line-height--body": { + "description": "Use to define the line height for body text", + "type": "number", + "value": 1.2999999523162842, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the line height for body text", + "type": "number", + "value": "{global.font.line-height.100}" + }, + "name": "pf-t--global--font--line-height--body", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "body" + }, + "path": [ + "global", + "font", + "line-height", + "body" + ], + "references": [ + { + "type": "number", + "value": 1.2999999523162842, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1.2999999523162842 + }, + "name": "pf-t--global--font--line-height--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "100" + }, + "path": [ + "global", + "font", + "line-height", + "100" + ] + } + ] + }, + "pf-t--global--font--line-height--heading": { + "description": "Use to define the line height for heading text", + "type": "number", + "value": 1.5, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the line height for heading text", + "type": "number", + "value": "{global.font.line-height.200}" + }, + "name": "pf-t--global--font--line-height--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "heading" + ], + "references": [ + { + "type": "number", + "value": 1.5, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1.5 + }, + "name": "pf-t--global--font--line-height--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "200" + }, + "path": [ + "global", + "font", + "line-height", + "200" + ] + } + ] + }, + "pf-t--global--font--size--body--sm": { + "description": "Use for a smaller font size in body sections.", + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for a smaller font size in body sections.", + "type": "number", + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--font--size--body--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "sm" + }, + "path": [ + "global", + "font", + "size", + "body", + "sm" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--body--default": { + "description": "Use as the default font size in body sections.", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the default font size in body sections.", + "type": "number", + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--font--size--body--default", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "default" + }, + "path": [ + "global", + "font", + "size", + "body", + "default" + ], + "references": [ + { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--body--lg": { + "description": "Use for a larger font size in body sections.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for a larger font size in body sections.", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--body--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "lg" + }, + "path": [ + "global", + "font", + "size", + "body", + "lg" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h1": { + "description": "Use as the font size for first level headings.", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for first level headings.", + "type": "number", + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--font--size--heading--h1", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h1" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h1" + ], + "references": [ + { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h2": { + "description": "Use as the font size for second level headings.", + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for second level headings.", + "type": "number", + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--font--size--heading--h2", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h2" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h2" + ], + "references": [ + { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h3": { + "description": "Use as the font size for third level headings.", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for third level headings.", + "type": "number", + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--font--size--heading--h3", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h3" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h3" + ], + "references": [ + { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h4": { + "description": "Use as the font size for fourth-level headings.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for fourth-level headings.", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h4", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h4" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h4" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h5": { + "description": "Use as the font size for fifth level headings.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for fifth level headings.", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h5", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h5" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h5" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h6": { + "description": "Use as the font size for sixth level headings.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for sixth level headings.", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h6", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h6" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h6" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--xs": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + }, + "pf-t--global--font--size--sm": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + }, + "pf-t--global--font--size--md": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + }, + "pf-t--global--font--size--lg": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + }, + "pf-t--global--font--size--xl": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + }, + "pf-t--global--font--size--2xl": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + }, + "pf-t--global--font--size--3xl": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "28px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.700}" + }, + "name": "pf-t--global--font--size--3xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "font", + "size", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "28px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + } + ] + }, + "pf-t--global--font--size--4xl": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "36px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.800}" + }, + "name": "pf-t--global--font--size--4xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "4xl" + }, + "path": [ + "global", + "font", + "size", + "4xl" + ], + "references": [ + { + "type": "number", + "value": "36px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + } + ] + }, + "pf-t--global--z-index--xs": { + "type": "number", + "value": 100, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.z-index.100}" + }, + "name": "pf-t--global--z-index--xs", + "attributes": { + "category": "global", + "type": "z-index", + "item": "xs" + }, + "path": [ + "global", + "z-index", + "xs" + ], + "references": [ + { + "type": "number", + "value": 100, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--z-index--100", + "attributes": { + "category": "global", + "type": "z-index", + "item": "100" + }, + "path": [ + "global", + "z-index", + "100" + ] + } + ] + }, + "pf-t--global--z-index--sm": { + "type": "number", + "value": 200, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.z-index.200}" + }, + "name": "pf-t--global--z-index--sm", + "attributes": { + "category": "global", + "type": "z-index", + "item": "sm" + }, + "path": [ + "global", + "z-index", + "sm" + ], + "references": [ + { + "type": "number", + "value": 200, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--z-index--200", + "attributes": { + "category": "global", + "type": "z-index", + "item": "200" + }, + "path": [ + "global", + "z-index", + "200" + ] + } + ] + }, + "pf-t--global--z-index--md": { + "type": "number", + "value": 300, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.z-index.300}" + }, + "name": "pf-t--global--z-index--md", + "attributes": { + "category": "global", + "type": "z-index", + "item": "md" + }, + "path": [ + "global", + "z-index", + "md" + ], + "references": [ + { + "type": "number", + "value": 300, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--z-index--300", + "attributes": { + "category": "global", + "type": "z-index", + "item": "300" + }, + "path": [ + "global", + "z-index", + "300" + ] + } + ] + }, + "pf-t--global--z-index--lg": { + "type": "number", + "value": 400, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.z-index.400}" + }, + "name": "pf-t--global--z-index--lg", + "attributes": { + "category": "global", + "type": "z-index", + "item": "lg" + }, + "path": [ + "global", + "z-index", + "lg" + ], + "references": [ + { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--z-index--400", + "attributes": { + "category": "global", + "type": "z-index", + "item": "400" + }, + "path": [ + "global", + "z-index", + "400" + ] + } + ] + }, + "pf-t--global--z-index--xl": { + "type": "number", + "value": 500, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.z-index.500}" + }, + "name": "pf-t--global--z-index--xl", + "attributes": { + "category": "global", + "type": "z-index", + "item": "xl" + }, + "path": [ + "global", + "z-index", + "xl" + ], + "references": [ + { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--z-index--500", + "attributes": { + "category": "global", + "type": "z-index", + "item": "500" + }, + "path": [ + "global", + "z-index", + "500" + ] + } + ] + }, + "pf-t--global--z-index--2xl": { + "type": "number", + "value": 600, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.z-index.600}" + }, + "name": "pf-t--global--z-index--2xl", + "attributes": { + "category": "global", + "type": "z-index", + "item": "2xl" + }, + "path": [ + "global", + "z-index", + "2xl" + ], + "references": [ + { + "type": "number", + "value": 600, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--z-index--600", + "attributes": { + "category": "global", + "type": "z-index", + "item": "600" + }, + "path": [ + "global", + "z-index", + "600" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--default": { + "description": "Use to define the X value for a default small box-shadow, like in sticky sections", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a default small box-shadow, like in sticky sections", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "default" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--top": { + "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "top" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--bottom": { + "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--left": { + "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", + "type": "number", + "value": "-1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", + "type": "number", + "value": "{global.box-shadow.X.300}" + }, + "name": "pf-t--global--box-shadow--X--sm--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "left" + ], + "references": [ + { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--X--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "X", + "300" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--right": { + "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", + "type": "number", + "value": "{global.box-shadow.X.500}" + }, + "name": "pf-t--global--box-shadow--X--sm--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "right" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--X--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "X", + "500" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--default": { + "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "default" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--top": { + "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "top" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--bottom": { + "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--left": { + "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", + "type": "number", + "value": "-4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", + "type": "number", + "value": "{global.box-shadow.X.200}" + }, + "name": "pf-t--global--box-shadow--X--md--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "left" + ], + "references": [ + { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--X--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "X", + "200" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--right": { + "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", + "type": "number", + "value": "{global.box-shadow.X.600}" + }, + "name": "pf-t--global--box-shadow--X--md--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "right" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--X--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "X", + "600" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--default": { + "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "default" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--top": { + "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "top" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--bottom": { + "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--left": { + "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", + "type": "number", + "value": "-8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", + "type": "number", + "value": "{global.box-shadow.X.100}" + }, + "name": "pf-t--global--box-shadow--X--lg--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "left" + ], + "references": [ + { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--X--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "X", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--right": { + "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", + "type": "number", + "value": "{global.box-shadow.X.700}" + }, + "name": "pf-t--global--box-shadow--X--lg--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "right" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--X--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "X", + "700" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--default": { + "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", + "type": "number", + "value": "{global.box-shadow.Y.500}" + }, + "name": "pf-t--global--box-shadow--Y--sm--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--top": { + "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", + "type": "number", + "value": "-1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", + "type": "number", + "value": "{global.box-shadow.Y.300}" + }, + "name": "pf-t--global--box-shadow--Y--sm--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "top" + ], + "references": [ + { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--Y--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "Y", + "300" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--bottom": { + "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", + "type": "number", + "value": "{global.box-shadow.Y.500}" + }, + "name": "pf-t--global--box-shadow--Y--sm--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--left": { + "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--sm--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "left" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--right": { + "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--sm--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "right" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--default": { + "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", + "type": "number", + "value": "{global.box-shadow.Y.600}" + }, + "name": "pf-t--global--box-shadow--Y--md--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "default" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--top": { + "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", + "type": "number", + "value": "-4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", + "type": "number", + "value": "{global.box-shadow.Y.200}" + }, + "name": "pf-t--global--box-shadow--Y--md--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "top" + ], + "references": [ + { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--Y--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "Y", + "200" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--bottom": { + "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", + "type": "number", + "value": "{global.box-shadow.Y.600}" + }, + "name": "pf-t--global--box-shadow--Y--md--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--left": { + "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--md--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "left" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--right": { + "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--md--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "right" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--default": { + "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", + "type": "number", + "value": "{global.box-shadow.Y.700}" + }, + "name": "pf-t--global--box-shadow--Y--lg--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "default" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--top": { + "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", + "type": "number", + "value": "-8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", + "type": "number", + "value": "{global.box-shadow.Y.100}" + }, + "name": "pf-t--global--box-shadow--Y--lg--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "top" + ], + "references": [ + { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--Y--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "Y", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--bottom": { + "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", + "type": "number", + "value": "{global.box-shadow.Y.700}" + }, + "name": "pf-t--global--box-shadow--Y--lg--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--left": { + "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--lg--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "left" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--right": { + "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--lg--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "right" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--blur--sm": { + "description": "Use to define the blur for a small box-shadow", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the blur for a small box-shadow", + "type": "number", + "value": "{global.box-shadow.blur.100}" + }, + "name": "pf-t--global--box-shadow--blur--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "blur", + "sm" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--blur--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "blur", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--blur--md": { + "description": "Use to define the blur for a medium box-shadow", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the blur for a medium box-shadow", + "type": "number", + "value": "{global.box-shadow.blur.200}" + }, + "name": "pf-t--global--box-shadow--blur--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "blur", + "md" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--blur--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "blur", + "200" + ] + } + ] + }, + "pf-t--global--box-shadow--blur--lg": { + "description": "Use to define the blue for a large box-shadow", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the blue for a large box-shadow", + "type": "number", + "value": "{global.box-shadow.blur.300}" + }, + "name": "pf-t--global--box-shadow--blur--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "blur", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--box-shadow--blur--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "blur", + "300" + ] + } + ] + }, + "pf-t--global--box-shadow--spread--sm": { + "description": "Use to define the spread for a small box-shadow", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the spread for a small box-shadow", + "type": "number", + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "spread", + "sm" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--spread--md": { + "description": "Use to define the spread of a medium box-shadow", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the spread of a medium box-shadow", + "type": "number", + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "spread", + "md" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--spread--lg": { + "description": "Use to define the spread of a large box-shadow", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the spread of a large box-shadow", + "type": "number", + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "spread", + "lg" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + }, + "pf-t--global--breakpoint--xs": { + "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.100}" + }, + "name": "pf-t--global--breakpoint--xs", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "xs" + }, + "path": [ + "global", + "breakpoint", + "xs" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + } + ] + }, + "pf-t--global--breakpoint--sm": { + "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "576px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.200}" + }, + "name": "pf-t--global--breakpoint--sm", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "sm" + }, + "path": [ + "global", + "breakpoint", + "sm" + ], + "references": [ + { + "type": "number", + "value": "576px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 576 + }, + "name": "pf-t--global--breakpoint--200", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "200" + }, + "path": [ + "global", + "breakpoint", + "200" + ] + } + ] + }, + "pf-t--global--breakpoint--md": { + "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "768px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.300}" + }, + "name": "pf-t--global--breakpoint--md", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "md" + }, + "path": [ + "global", + "breakpoint", + "md" + ], + "references": [ + { + "type": "number", + "value": "768px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + } + ] + }, + "pf-t--global--breakpoint--lg": { + "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "992px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.400}" + }, + "name": "pf-t--global--breakpoint--lg", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "lg" + }, + "path": [ + "global", + "breakpoint", + "lg" + ], + "references": [ + { + "type": "number", + "value": "992px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 992 + }, + "name": "pf-t--global--breakpoint--400", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "400" + }, + "path": [ + "global", + "breakpoint", + "400" + ] + } + ] + }, + "pf-t--global--breakpoint--xl": { + "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "1200px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.500}" + }, + "name": "pf-t--global--breakpoint--xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "xl" + }, + "path": [ + "global", + "breakpoint", + "xl" + ], + "references": [ + { + "type": "number", + "value": "1200px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1200 + }, + "name": "pf-t--global--breakpoint--500", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "500" + }, + "path": [ + "global", + "breakpoint", + "500" + ] + } + ] + }, + "pf-t--global--breakpoint--2xl": { + "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "1450px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.600}" + }, + "name": "pf-t--global--breakpoint--2xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "2xl" + }, + "path": [ + "global", + "breakpoint", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "1450px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1450 + }, + "name": "pf-t--global--breakpoint--600", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "600" + }, + "path": [ + "global", + "breakpoint", + "600" + ] + } + ] + }, + "pf-t--global--breakpoint--height--sm": { + "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.100}" + }, + "name": "pf-t--global--breakpoint--height--sm", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "sm" + }, + "path": [ + "global", + "breakpoint", + "height", + "sm" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + } + ] + }, + "pf-t--global--breakpoint--height--md": { + "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "640px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.250}" + }, + "name": "pf-t--global--breakpoint--height--md", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "md" + }, + "path": [ + "global", + "breakpoint", + "height", + "md" + ], + "references": [ + { + "type": "number", + "value": "640px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 640 + }, + "name": "pf-t--global--breakpoint--250", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "250" + }, + "path": [ + "global", + "breakpoint", + "250" + ] + } + ] + }, + "pf-t--global--breakpoint--height--lg": { + "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "768px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.300}" + }, + "name": "pf-t--global--breakpoint--height--lg", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "lg" + }, + "path": [ + "global", + "breakpoint", + "height", + "lg" + ], + "references": [ + { + "type": "number", + "value": "768px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + } + ] + }, + "pf-t--global--breakpoint--height--xl": { + "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "960px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.350}" + }, + "name": "pf-t--global--breakpoint--height--xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "xl" + }, + "path": [ + "global", + "breakpoint", + "height", + "xl" + ], + "references": [ + { + "type": "number", + "value": "960px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 960 + }, + "name": "pf-t--global--breakpoint--350", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "350" + }, + "path": [ + "global", + "breakpoint", + "350" + ] + } + ] + }, + "pf-t--global--breakpoint--height--2xl": { + "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "1280px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.550}" + }, + "name": "pf-t--global--breakpoint--height--2xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "2xl" + }, + "path": [ + "global", + "breakpoint", + "height", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "1280px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1280 + }, + "name": "pf-t--global--breakpoint--550", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "550" + }, + "path": [ + "global", + "breakpoint", + "550" + ] + } + ] + } + }, + "motion": { + "pf-t--global--motion--duration--xs": { + "description": "Use for the quickest possible duration of an animation.", + "type": "number", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for the quickest possible duration of an animation.", + "type": "number", + "value": "{global.duration.50}" + }, + "name": "pf-t--global--motion--duration--xs", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xs" + }, + "path": [ + "global", + "motion", + "duration", + "xs" + ], + "references": [ + { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + } + ] + }, + "pf-t--global--motion--duration--sm": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", + "type": "number", + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + }, + "pf-t--global--motion--duration--md": { + "description": "Use for a medium animation duration.", + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a medium animation duration.", + "type": "number", + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + }, + "pf-t--global--motion--duration--lg": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", + "type": "number", + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + }, + "pf-t--global--motion--duration--xl": { + "description": "Use for extra long animation duration.", + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for extra long animation duration.", + "type": "number", + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + }, + "pf-t--global--motion--duration--2xl": { + "description": "Use for significantly long animation duration.", + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for significantly long animation duration.", + "type": "number", + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + }, + "pf-t--global--motion--duration--3xl": { + "description": "Use for the longest possible duration of an animation.", + "type": "number", + "value": "600ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for the longest possible duration of an animation.", + "type": "number", + "value": "{global.duration.600}" + }, + "name": "pf-t--global--motion--duration--3xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "3xl" + }, + "path": [ + "global", + "motion", + "duration", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "600ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--duration--600", + "attributes": { + "category": "global", + "type": "duration", + "item": "600" + }, + "path": [ + "global", + "duration", + "600" + ] + } + ] + }, + "pf-t--global--motion--duration--fade--short": { + "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", + "type": "number", + "value": "{global.motion.duration.sm}" + }, + "name": "pf-t--global--motion--duration--fade--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "short" + ], + "references": [ + { + "description": "Use for a short animation duration. Use for simple and/or small animations.", + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", + "type": "number", + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--fade--default": { + "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", + "type": "number", + "value": "{global.motion.duration.md}" + }, + "name": "pf-t--global--motion--duration--fade--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "default" + ], + "references": [ + { + "description": "Use for a medium animation duration.", + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a medium animation duration.", + "type": "number", + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--fade--long": { + "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", + "type": "number", + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--fade--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "long" + ], + "references": [ + { + "description": "Use for long animation duration. Use for larger, more expressive animations.", + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", + "type": "number", + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-out--short": { + "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", + "type": "number", + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--slide-out--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "short" + ], + "references": [ + { + "description": "Use for long animation duration. Use for larger, more expressive animations.", + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", + "type": "number", + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-out--default": { + "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", + "type": "number", + "value": "{global.motion.duration.xl}" + }, + "name": "pf-t--global--motion--duration--slide-out--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "default" + ], + "references": [ + { + "description": "Use for extra long animation duration.", + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for extra long animation duration.", + "type": "number", + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-out--long": { + "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", + "type": "number", + "value": "{global.motion.duration.2xl}" + }, + "name": "pf-t--global--motion--duration--slide-out--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "long" + ], + "references": [ + { + "description": "Use for significantly long animation duration.", + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for significantly long animation duration.", + "type": "number", + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-in--short": { + "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", + "type": "number", + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--slide-in--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "short" + ], + "references": [ + { + "description": "Use for long animation duration. Use for larger, more expressive animations.", + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", + "type": "number", + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-in--default": { + "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", + "type": "number", + "value": "{global.motion.duration.xl}" + }, + "name": "pf-t--global--motion--duration--slide-in--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "default" + ], + "references": [ + { + "description": "Use for extra long animation duration.", + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for extra long animation duration.", + "type": "number", + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-in--long": { + "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", + "type": "number", + "value": "{global.motion.duration.2xl}" + }, + "name": "pf-t--global--motion--duration--slide-in--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "long" + ], + "references": [ + { + "description": "Use for significantly long animation duration.", + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for significantly long animation duration.", + "type": "number", + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--icon--short": { + "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", + "type": "number", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", + "type": "number", + "value": "{global.motion.duration.xs}" + }, + "name": "pf-t--global--motion--duration--icon--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "short" + ], + "references": [ + { + "description": "Use for the quickest possible duration of an animation.", + "type": "number", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for the quickest possible duration of an animation.", + "type": "number", + "value": "{global.duration.50}" + }, + "name": "pf-t--global--motion--duration--xs", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xs" + }, + "path": [ + "global", + "motion", + "duration", + "xs" + ], + "references": [ + { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--icon--default": { + "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", + "type": "number", + "value": "{global.motion.duration.sm}" + }, + "name": "pf-t--global--motion--duration--icon--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "default" + ], + "references": [ + { + "description": "Use for a short animation duration. Use for simple and/or small animations.", + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", + "type": "number", + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--icon--long": { + "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", + "type": "number", + "value": "{global.motion.duration.md}" + }, + "name": "pf-t--global--motion--duration--icon--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "long" + ], + "references": [ + { + "description": "Use for a medium animation duration.", + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a medium animation duration.", + "type": "number", + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--motion--delay--none": { + "description": "Use when there should be no delay before an animation plays.", + "type": "number", + "value": "0ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use when there should be no delay before an animation plays.", + "type": "number", + "value": "{global.delay.100}" + }, + "name": "pf-t--global--motion--delay--none", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "none" + }, + "path": [ + "global", + "motion", + "delay", + "none" + ], + "references": [ + { + "type": "number", + "value": "0ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--delay--100", + "attributes": { + "category": "global", + "type": "delay", + "item": "100" + }, + "path": [ + "global", + "delay", + "100" + ] + } + ] + }, + "pf-t--global--motion--delay--short": { + "description": "Use when there should be a short delay before an animation plays.", + "type": "number", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use when there should be a short delay before an animation plays.", + "type": "number", + "value": "{global.delay.200}" + }, + "name": "pf-t--global--motion--delay--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "short" + }, + "path": [ + "global", + "motion", + "delay", + "short" + ], + "references": [ + { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--delay--200", + "attributes": { + "category": "global", + "type": "delay", + "item": "200" + }, + "path": [ + "global", + "delay", + "200" + ] + } + ] + }, + "pf-t--global--motion--delay--default": { + "description": "Use when there should be the default delay length before an animation plays.", + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use when there should be the default delay length before an animation plays.", + "type": "number", + "value": "{global.delay.300}" + }, + "name": "pf-t--global--motion--delay--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "default" + }, + "path": [ + "global", + "motion", + "delay", + "default" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--delay--300", + "attributes": { + "category": "global", + "type": "delay", + "item": "300" + }, + "path": [ + "global", + "delay", + "300" + ] + } + ] + }, + "pf-t--global--motion--delay--long": { + "description": "Use when there should be a long delay before an animation plays.", + "type": "number", + "value": "7000ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use when there should be a long delay before an animation plays.", + "type": "number", + "value": "{global.delay.400}" + }, + "name": "pf-t--global--motion--delay--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "long" + }, + "path": [ + "global", + "motion", + "delay", + "long" + ], + "references": [ + { + "type": "number", + "value": "7000ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 7000 + }, + "name": "pf-t--global--delay--400", + "attributes": { + "category": "global", + "type": "delay", + "item": "400" + }, + "path": [ + "global", + "delay", + "400" + ] + } + ] + }, + "pf-t--global--motion--timing-function--accelerate": { + "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", + "type": "number", + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", + "type": "number", + "value": "{global.timing-function.100}" + }, + "name": "pf-t--global--motion--timing-function--accelerate", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "accelerate" + }, + "path": [ + "global", + "motion", + "timing-function", + "accelerate" + ], + "references": [ + { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)" + }, + "name": "pf-t--global--timing-function--100", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "100" + }, + "path": [ + "global", + "timing-function", + "100" + ] + } + ] + }, + "pf-t--global--motion--timing-function--default": { + "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", + "type": "number", + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", + "type": "number", + "value": "{global.timing-function.200}" + }, + "name": "pf-t--global--motion--timing-function--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "default" + }, + "path": [ + "global", + "motion", + "timing-function", + "default" + ], + "references": [ + { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--200", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "200" + }, + "path": [ + "global", + "timing-function", + "200" + ] + } + ] + }, + "pf-t--global--motion--timing-function--decelerate": { + "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", + "type": "number", + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", + "type": "number", + "value": "{global.timing-function.300}" + }, + "name": "pf-t--global--motion--timing-function--decelerate", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "decelerate" + }, + "path": [ + "global", + "motion", + "timing-function", + "decelerate" + ], + "references": [ + { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--300", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "300" + }, + "path": [ + "global", + "timing-function", + "300" + ] + } + ] + } + } + }, + "base": { + "colors": { + "pf-t--global--icon--color--100": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + }, + "pf-t--global--icon--color--200": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--icon--color--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--global--icon--color--300": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--global--border--color--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--border--color--100", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "border", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--border--color--200": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--border--color--200", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "border", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--border--color--300": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--border--color--300", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "border", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--global--box-shadow--color--100": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)" + }, + "name": "pf-t--global--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "color", + "100" + ] + }, + "pf-t--global--box-shadow--color--200": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)" + }, + "name": "pf-t--global--box-shadow--color--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "color", + "200" + ] + }, + "pf-t--global--background--color--100": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--global--background--color--200": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--global--background--color--300": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--background--color--300", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--global--background--color--400": { + "type": "color", + "value": "#292929", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--background--color--400", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "background", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + }, + "pf-t--global--background--color--500": { + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)" + }, + "name": "pf-t--global--background--color--500", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "500" + }, + "path": [ + "global", + "background", + "color", + "500" + ] + }, + "pf-t--global--background--color--600": { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)" + }, + "name": "pf-t--global--background--color--600", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "600" + }, + "path": [ + "global", + "background", + "color", + "600" + ] + }, + "pf-t--global--background--color--highlight--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--background--color--highlight--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "100" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--background--color--highlight--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--background--color--highlight--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "200" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--brand--100": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--brand--100", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "100" + }, + "path": [ + "global", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + }, + "pf-t--global--color--brand--200": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + }, + "pf-t--global--color--brand--300": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + }, + "pf-t--global--color--disabled--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--disabled--100", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "100" + }, + "path": [ + "global", + "color", + "disabled", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--color--disabled--200": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--disabled--200", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "200" + }, + "path": [ + "global", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--color--disabled--300": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--color--disabled--300", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "300" + }, + "path": [ + "global", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + }, + "pf-t--global--color--favorite--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--favorite--100", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "100" + }, + "path": [ + "global", + "color", + "favorite", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--color--favorite--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--status--success--100": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + }, + "pf-t--global--color--status--success--200": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + }, + "pf-t--global--color--status--warning--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--status--warning--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--color--status--warning--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--status--warning--300": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + }, + "pf-t--global--color--status--danger--100": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + }, + "pf-t--global--color--status--danger--200": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + }, + "pf-t--global--color--status--danger--300": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "danger", + "300" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + }, + "pf-t--global--color--status--info--100": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + }, + "pf-t--global--color--status--info--200": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + }, + "pf-t--global--color--status--custom--100": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + }, + "pf-t--global--color--status--custom--200": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + }, + "pf-t--global--color--severity--undefined--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--severity--undefined--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "undefined", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "undefined", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--color--severity--none--100": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--severity--none--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "none", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "none", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + }, + "pf-t--global--color--severity--minor--100": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--color--severity--minor--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "minor", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "minor", + "100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--global--color--severity--moderate--100": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--severity--moderate--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "moderate", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "moderate", + "100" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--severity--important--100": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--global--color--severity--important--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "important", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "important", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + }, + "pf-t--global--color--severity--critical--100": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--severity--critical--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "critical", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "critical", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--100": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red.20}" + }, + "name": "pf-t--global--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--200": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red.30}" + }, + "name": "pf-t--global--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--300": { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red.40}" + }, + "name": "pf-t--global--color--nonstatus--red--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--100": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--200": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--300": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orangered--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--100": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--200": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--300": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orange--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--100": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--color--nonstatus--yellow--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--200": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--300": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--nonstatus--yellow--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--100": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--global--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--200": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--300": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--color--nonstatus--green--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--100": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--color--nonstatus--teal--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--200": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--300": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--color--nonstatus--teal--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--100": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--200": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--300": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--nonstatus--blue--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--100": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--200": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--300": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--global--color--nonstatus--purple--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--100": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--200": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--300": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--nonstatus--gray--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "300" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--text--color--100": { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + }, + "pf-t--global--text--color--200": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--text--color--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "text", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + }, + "pf-t--global--text--color--300": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--global--text--color--400": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--text--color--400", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "text", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + }, + "pf-t--global--text--color--link--100": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--text--color--link--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "100" + }, + "path": [ + "global", + "text", + "color", + "link", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + }, + "pf-t--global--text--color--link--200": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--text--color--link--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "200" + }, + "path": [ + "global", + "text", + "color", + "link", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + }, + "pf-t--global--text--color--link--300": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--text--color--link--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "300" + }, + "path": [ + "global", + "text", + "color", + "link", + "300" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + }, + "pf-t--global--dark--background--color--100": { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--dark--background--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + }, + "pf-t--global--dark--background--color--200": { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + }, + "pf-t--global--dark--background--color--300": { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + }, + "pf-t--global--dark--background--color--400": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--background--color--400", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "400" + }, + "path": [ + "global", + "dark", + "background", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--global--dark--background--color--500": { + "type": "color", + "value": "rgba(21, 21, 21, 0.8000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(21, 21, 21, 0.8000)" + }, + "name": "pf-t--global--dark--background--color--500", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "500" + }, + "path": [ + "global", + "dark", + "background", + "color", + "500" + ] + }, + "pf-t--global--dark--background--color--600": { + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)" + }, + "name": "pf-t--global--dark--background--color--600", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "600" + }, + "path": [ + "global", + "dark", + "background", + "color", + "600" + ] + }, + "pf-t--global--dark--background--color--highlight--100": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--background--color--highlight--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "highlight" + }, + "path": [ + "global", + "dark", + "background", + "color", + "highlight", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + }, + "pf-t--global--dark--background--color--highlight--200": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--background--color--highlight--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "highlight" + }, + "path": [ + "global", + "dark", + "background", + "color", + "highlight", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--brand--100": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--brand--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--brand--200": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--brand--300": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--brand--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--disabled--100": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--color--disabled--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "100" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--dark--color--disabled--200": { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--dark--color--disabled--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--global--dark--color--disabled--300": { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--color--disabled--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + }, + "pf-t--global--dark--color--favorite--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--favorite--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--favorite--200": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--favorite--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--severity--undefined--100": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--color--severity--undefined--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "undefined" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "undefined", + "100" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--dark--color--severity--none--100": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--severity--none--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "none" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "none", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--severity--minor--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--color--severity--minor--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "minor" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "minor", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--severity--moderate--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--severity--moderate--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "moderate" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "moderate", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--severity--important--100": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--global--dark--color--severity--important--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "important" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "important", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + }, + "pf-t--global--dark--color--severity--critical--100": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--severity--critical--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "critical" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "critical", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + }, + "pf-t--global--dark--color--status--success--100": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--dark--color--status--success--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + }, + "pf-t--global--dark--color--status--success--200": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--status--warning--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--status--warning--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--status--warning--200": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--status--danger--100": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--status--danger--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + }, + "pf-t--global--dark--color--status--danger--200": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + }, + "pf-t--global--dark--color--status--danger--250": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--color--status--danger--250", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "250" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--status--danger--300": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--status--danger--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "300" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--status--info--100": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--status--info--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--status--info--200": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--status--custom--100": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--dark--color--status--custom--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + }, + "pf-t--global--dark--color--status--custom--200": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--red--100": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--red--200": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--red--300": { + "type": "color", + "value": "#fce3e3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "300" + ], + "references": [ + { + "type": "color", + "value": "#fce3e3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fce3e3" + }, + "name": "pf-t--color--red--10", + "attributes": { + "category": "color", + "type": "red", + "item": "10" + }, + "path": [ + "color", + "red", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--orangered--100": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--orangered--200": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--orangered--300": { + "type": "color", + "value": "#ffe3d9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffe3d9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe3d9" + }, + "name": "pf-t--color--red-orange--10", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "10" + }, + "path": [ + "color", + "red-orange", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--orange--100": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--orange--200": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--orange--300": { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--yellow--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--yellow--200": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--yellow--300": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--green--100": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--green--200": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--green--300": { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--teal--100": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--teal--200": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--teal--300": { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--blue--100": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--blue--200": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--blue--300": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--purple--100": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--purple--200": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--purple--300": { + "type": "color", + "value": "#ece6ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ece6ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ece6ff" + }, + "name": "pf-t--color--purple--10", + "attributes": { + "category": "color", + "type": "purple", + "item": "10" + }, + "path": [ + "color", + "purple", + "10" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--gray--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--gray--200": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--global--dark--color--nonstatus--gray--300": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--global--dark--border--color--100": { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--dark--border--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "border", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "border", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--global--dark--border--color--200": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--border--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "border", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "border", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--dark--text--color--100": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--text--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--global--dark--text--color--200": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--text--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "text", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--dark--text--color--300": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + }, + "pf-t--global--dark--text--color--400": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--text--color--400", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "400" + }, + "path": [ + "global", + "dark", + "text", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + }, + "pf-t--global--dark--text--color--link--100": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--text--color--link--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + }, + "pf-t--global--dark--text--color--link--200": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--text--color--link--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + }, + "pf-t--global--dark--text--color--link--300": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--text--color--link--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + }, + "pf-t--global--dark--icon--color--100": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--icon--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--global--dark--icon--color--200": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--icon--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--dark--icon--color--300": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + }, + "pf-t--global--dark--box-shadow--color--100": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)" + }, + "name": "pf-t--global--dark--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "box-shadow", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "box-shadow", + "color", + "100" + ] + } + }, + "dimension": { + "pf-t--global--spacer--100": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + }, + "pf-t--global--spacer--200": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + }, + "pf-t--global--spacer--300": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + }, + "pf-t--global--spacer--400": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + }, + "pf-t--global--spacer--500": { + "type": "number", + "value": "32px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + }, + "pf-t--global--spacer--600": { + "type": "number", + "value": "48px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + }, + "pf-t--global--spacer--700": { + "type": "number", + "value": "64px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 64 + }, + "name": "pf-t--global--spacer--700", + "attributes": { + "category": "global", + "type": "spacer", + "item": "700" + }, + "path": [ + "global", + "spacer", + "700" + ] + }, + "pf-t--global--spacer--800": { + "type": "number", + "value": "80px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 80 + }, + "name": "pf-t--global--spacer--800", + "attributes": { + "category": "global", + "type": "spacer", + "item": "800" + }, + "path": [ + "global", + "spacer", + "800" + ] + }, + "pf-t--global--icon--size--100": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--icon--size--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "size", + "100" + ] + }, + "pf-t--global--icon--size--200": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--icon--size--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "size", + "200" + ] + }, + "pf-t--global--icon--size--250": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--icon--size--250", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "250" + }, + "path": [ + "global", + "icon", + "size", + "250" + ] + }, + "pf-t--global--icon--size--300": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--icon--size--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "size", + "300" + ] + }, + "pf-t--global--icon--size--400": { + "type": "number", + "value": "56px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 56 + }, + "name": "pf-t--global--icon--size--400", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "icon", + "size", + "400" + ] + }, + "pf-t--global--icon--size--500": { + "type": "number", + "value": "96px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 96 + }, + "name": "pf-t--global--icon--size--500", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "icon", + "size", + "500" + ] + }, + "pf-t--global--border--width--100": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + }, + "pf-t--global--border--width--200": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + }, + "pf-t--global--border--width--300": { + "type": "number", + "value": "3px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 3 + }, + "name": "pf-t--global--border--width--300", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "300" + }, + "path": [ + "global", + "border", + "width", + "300" + ] + }, + "pf-t--global--border--radius--0": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--border--radius--0", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "0" + }, + "path": [ + "global", + "border", + "radius", + "0" + ] + }, + "pf-t--global--border--radius--100": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--border--radius--100", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "100" + }, + "path": [ + "global", + "border", + "radius", + "100" + ] + }, + "pf-t--global--border--radius--200": { + "type": "number", + "value": "6px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 6 + }, + "name": "pf-t--global--border--radius--200", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "200" + }, + "path": [ + "global", + "border", + "radius", + "200" + ] + }, + "pf-t--global--border--radius--300": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--border--radius--300", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "300" + }, + "path": [ + "global", + "border", + "radius", + "300" + ] + }, + "pf-t--global--border--radius--400": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--border--radius--400", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "400" + }, + "path": [ + "global", + "border", + "radius", + "400" + ] + }, + "pf-t--global--border--radius--500": { + "type": "number", + "value": "999px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 999 + }, + "name": "pf-t--global--border--radius--500", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "500" + }, + "path": [ + "global", + "border", + "radius", + "500" + ] + }, + "pf-t--global--font--family--100": { + "type": "string", + "value": "Red Hat Text VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Text VF" + }, + "name": "pf-t--global--font--family--100", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "100" + }, + "path": [ + "global", + "font", + "family", + "100" + ] + }, + "pf-t--global--font--family--200": { + "type": "string", + "value": "Red Hat Display VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Display VF" + }, + "name": "pf-t--global--font--family--200", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "200" + }, + "path": [ + "global", + "font", + "family", + "200" + ] + }, + "pf-t--global--font--family--300": { + "type": "string", + "value": "Red Hat Mono VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Mono VF" + }, + "name": "pf-t--global--font--family--300", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "300" + }, + "path": [ + "global", + "font", + "family", + "300" + ] + }, + "pf-t--global--font--weight--100": { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--font--weight--100", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "100" + }, + "path": [ + "global", + "font", + "weight", + "100" + ] + }, + "pf-t--global--font--weight--200": { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--font--weight--200", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "200" + }, + "path": [ + "global", + "font", + "weight", + "200" + ] + }, + "pf-t--global--font--weight--300": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 700 + }, + "name": "pf-t--global--font--weight--300", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "300" + }, + "path": [ + "global", + "font", + "weight", + "300" + ] + }, + "pf-t--global--font--weight--400": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 700 + }, + "name": "pf-t--global--font--weight--400", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "400" + }, + "path": [ + "global", + "font", + "weight", + "400" + ] + }, + "pf-t--global--font--line-height--100": { + "type": "number", + "value": 1.2999999523162842, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1.2999999523162842 + }, + "name": "pf-t--global--font--line-height--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "100" + }, + "path": [ + "global", + "font", + "line-height", + "100" + ] + }, + "pf-t--global--font--line-height--200": { + "type": "number", + "value": 1.5, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1.5 + }, + "name": "pf-t--global--font--line-height--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "200" + }, + "path": [ + "global", + "font", + "line-height", + "200" + ] + }, + "pf-t--global--font--size--100": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + }, + "pf-t--global--font--size--200": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + }, + "pf-t--global--font--size--300": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + }, + "pf-t--global--font--size--400": { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + }, + "pf-t--global--font--size--500": { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + }, + "pf-t--global--font--size--600": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + }, + "pf-t--global--font--size--700": { + "type": "number", + "value": "28px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + }, + "pf-t--global--font--size--800": { + "type": "number", + "value": "36px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + }, + "pf-t--global--z-index--100": { + "type": "number", + "value": 100, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--z-index--100", + "attributes": { + "category": "global", + "type": "z-index", + "item": "100" + }, + "path": [ + "global", + "z-index", + "100" + ] + }, + "pf-t--global--z-index--200": { + "type": "number", + "value": 200, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--z-index--200", + "attributes": { + "category": "global", + "type": "z-index", + "item": "200" + }, + "path": [ + "global", + "z-index", + "200" + ] + }, + "pf-t--global--z-index--300": { + "type": "number", + "value": 300, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--z-index--300", + "attributes": { + "category": "global", + "type": "z-index", + "item": "300" + }, + "path": [ + "global", + "z-index", + "300" + ] + }, + "pf-t--global--z-index--400": { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--z-index--400", + "attributes": { + "category": "global", + "type": "z-index", + "item": "400" + }, + "path": [ + "global", + "z-index", + "400" + ] + }, + "pf-t--global--z-index--500": { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--z-index--500", + "attributes": { + "category": "global", + "type": "z-index", + "item": "500" + }, + "path": [ + "global", + "z-index", + "500" + ] + }, + "pf-t--global--z-index--600": { + "type": "number", + "value": 600, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--z-index--600", + "attributes": { + "category": "global", + "type": "z-index", + "item": "600" + }, + "path": [ + "global", + "z-index", + "600" + ] + }, + "pf-t--global--box-shadow--X--100": { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--X--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "X", + "100" + ] + }, + "pf-t--global--box-shadow--X--200": { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--X--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "X", + "200" + ] + }, + "pf-t--global--box-shadow--X--300": { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--X--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "X", + "300" + ] + }, + "pf-t--global--box-shadow--X--400": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + }, + "pf-t--global--box-shadow--X--500": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--X--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "X", + "500" + ] + }, + "pf-t--global--box-shadow--X--600": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--X--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "X", + "600" + ] + }, + "pf-t--global--box-shadow--X--700": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--X--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "X", + "700" + ] + }, + "pf-t--global--box-shadow--Y--100": { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--Y--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "Y", + "100" + ] + }, + "pf-t--global--box-shadow--Y--200": { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--Y--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "Y", + "200" + ] + }, + "pf-t--global--box-shadow--Y--300": { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--Y--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "Y", + "300" + ] + }, + "pf-t--global--box-shadow--Y--400": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + }, + "pf-t--global--box-shadow--Y--500": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + }, + "pf-t--global--box-shadow--Y--600": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + }, + "pf-t--global--box-shadow--Y--700": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + }, + "pf-t--global--box-shadow--blur--100": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--blur--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "blur", + "100" + ] + }, + "pf-t--global--box-shadow--blur--200": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--blur--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "blur", + "200" + ] + }, + "pf-t--global--box-shadow--blur--300": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--box-shadow--blur--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "blur", + "300" + ] + }, + "pf-t--global--box-shadow--spread--100": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + }, + "pf-t--global--breakpoint--100": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + }, + "pf-t--global--breakpoint--200": { + "type": "number", + "value": "576px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 576 + }, + "name": "pf-t--global--breakpoint--200", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "200" + }, + "path": [ + "global", + "breakpoint", + "200" + ] + }, + "pf-t--global--breakpoint--250": { + "type": "number", + "value": "640px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 640 + }, + "name": "pf-t--global--breakpoint--250", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "250" + }, + "path": [ + "global", + "breakpoint", + "250" + ] + }, + "pf-t--global--breakpoint--300": { + "type": "number", + "value": "768px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + }, + "pf-t--global--breakpoint--350": { + "type": "number", + "value": "960px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 960 + }, + "name": "pf-t--global--breakpoint--350", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "350" + }, + "path": [ + "global", + "breakpoint", + "350" + ] + }, + "pf-t--global--breakpoint--400": { + "type": "number", + "value": "992px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 992 + }, + "name": "pf-t--global--breakpoint--400", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "400" + }, + "path": [ + "global", + "breakpoint", + "400" + ] + }, + "pf-t--global--breakpoint--500": { + "type": "number", + "value": "1200px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1200 + }, + "name": "pf-t--global--breakpoint--500", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "500" + }, + "path": [ + "global", + "breakpoint", + "500" + ] + }, + "pf-t--global--breakpoint--550": { + "type": "number", + "value": "1280px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1280 + }, + "name": "pf-t--global--breakpoint--550", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "550" + }, + "path": [ + "global", + "breakpoint", + "550" + ] + }, + "pf-t--global--breakpoint--600": { + "type": "number", + "value": "1450px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1450 + }, + "name": "pf-t--global--breakpoint--600", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "600" + }, + "path": [ + "global", + "breakpoint", + "600" + ] + } + }, + "motion": { + "pf-t--global--duration--50": { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + }, + "pf-t--global--duration--100": { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + }, + "pf-t--global--duration--200": { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + }, + "pf-t--global--duration--300": { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + }, + "pf-t--global--duration--400": { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + }, + "pf-t--global--duration--500": { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + }, + "pf-t--global--duration--600": { + "type": "number", + "value": "600ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--duration--600", + "attributes": { + "category": "global", + "type": "duration", + "item": "600" + }, + "path": [ + "global", + "duration", + "600" + ] + }, + "pf-t--global--delay--100": { + "type": "number", + "value": "0ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--delay--100", + "attributes": { + "category": "global", + "type": "delay", + "item": "100" + }, + "path": [ + "global", + "delay", + "100" + ] + }, + "pf-t--global--delay--200": { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--delay--200", + "attributes": { + "category": "global", + "type": "delay", + "item": "200" + }, + "path": [ + "global", + "delay", + "200" + ] + }, + "pf-t--global--delay--300": { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--delay--300", + "attributes": { + "category": "global", + "type": "delay", + "item": "300" + }, + "path": [ + "global", + "delay", + "300" + ] + }, + "pf-t--global--delay--400": { + "type": "number", + "value": "7000ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 7000 + }, + "name": "pf-t--global--delay--400", + "attributes": { + "category": "global", + "type": "delay", + "item": "400" + }, + "path": [ + "global", + "delay", + "400" + ] + }, + "pf-t--global--timing-function--100": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)" + }, + "name": "pf-t--global--timing-function--100", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "100" + }, + "path": [ + "global", + "timing-function", + "100" + ] + }, + "pf-t--global--timing-function--200": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--200", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "200" + }, + "path": [ + "global", + "timing-function", + "200" + ] + }, + "pf-t--global--timing-function--300": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--300", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "300" + }, + "path": [ + "global", + "timing-function", + "300" + ] + } + } + }, + "palette": { + "pf-t--chart--color--blue--100": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + }, + "pf-t--chart--color--blue--200": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + }, + "pf-t--chart--color--blue--300": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + }, + "pf-t--chart--color--blue--400": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + }, + "pf-t--chart--color--blue--500": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + }, + "pf-t--chart--color--green--100": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + }, + "pf-t--chart--color--green--200": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + }, + "pf-t--chart--color--green--300": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + }, + "pf-t--chart--color--green--400": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + }, + "pf-t--chart--color--green--500": { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.10}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + }, + "pf-t--chart--color--teal--100": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + }, + "pf-t--chart--color--teal--200": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + }, + "pf-t--chart--color--teal--300": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + }, + "pf-t--chart--color--teal--400": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + }, + "pf-t--chart--color--teal--500": { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.10}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + }, + "pf-t--chart--color--purple--100": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + }, + "pf-t--chart--color--purple--200": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + }, + "pf-t--chart--color--purple--300": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + }, + "pf-t--chart--color--purple--400": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + }, + "pf-t--chart--color--purple--500": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + }, + "pf-t--chart--color--yellow--100": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + }, + "pf-t--chart--color--yellow--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--chart--color--yellow--300": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--chart--color--yellow--400": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + }, + "pf-t--chart--color--yellow--500": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.10}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + }, + "pf-t--chart--color--orange--100": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + }, + "pf-t--chart--color--orange--200": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + }, + "pf-t--chart--color--orange--300": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + }, + "pf-t--chart--color--orange--400": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + }, + "pf-t--chart--color--orange--500": { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.10}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + }, + "pf-t--chart--color--red-orange--100": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--chart--color--red-orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "red-orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + }, + "pf-t--chart--color--red-orange--200": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--chart--color--red-orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "red-orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + }, + "pf-t--chart--color--red-orange--300": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--chart--color--red-orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "red-orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + }, + "pf-t--chart--color--red-orange--400": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--chart--color--red-orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "red-orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + }, + "pf-t--chart--color--red-orange--500": { + "type": "color", + "value": "#ffe3d9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.10}" + }, + "name": "pf-t--chart--color--red-orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "red-orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ffe3d9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe3d9" + }, + "name": "pf-t--color--red-orange--10", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "10" + }, + "path": [ + "color", + "red-orange", + "10" + ] + } + ] + }, + "pf-t--chart--color--black--100": { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--chart--color--black--200": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--chart--color--black--300": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--chart--color--black--400": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--chart--color--black--500": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--chart--global--BorderWidth--xs": { + "type": "number", + "value": 1, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--chart--global--BorderWidth--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "xs" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "xs" + ] + }, + "pf-t--chart--global--BorderWidth--sm": { + "type": "number", + "value": 2, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--chart--global--BorderWidth--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "sm" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "sm" + ] + }, + "pf-t--chart--global--BorderWidth--lg": { + "type": "number", + "value": 8, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--chart--global--BorderWidth--lg", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "lg" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "lg" + ] + }, + "pf-t--chart--global--stroke--width--xs": { + "type": "number", + "value": 1, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--chart--global--stroke--width--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke", + "subitem": "width", + "state": "xs" + }, + "path": [ + "chart", + "global", + "stroke", + "width", + "xs" + ] + }, + "pf-t--chart--global--stroke--width--sm": { + "type": "number", + "value": 2, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--chart--global--stroke--width--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke", + "subitem": "width", + "state": "sm" + }, + "path": [ + "chart", + "global", + "stroke", + "width", + "sm" + ] + }, + "pf-t--chart--global--fill--color--100": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--chart--global--fill--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + }, + "pf-t--chart--global--fill--color--200": { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--global--fill--color--200", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "200" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--chart--global--fill--color--300": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--global--fill--color--300", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "300" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--chart--global--fill--color--400": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--global--fill--color--400", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "400" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--chart--global--fill--color--500": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--global--fill--color--500", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "500" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--chart--global--fill--color--700": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--global--fill--color--700", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "700" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "700" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--chart--global--fill--color--900": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--chart--global--fill--color--900", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "900" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "900" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--chart--global--fill--color--white": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--chart--global--fill--color--white", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "white" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "white" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--chart--global--warning--color--100": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--global--warning--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "warning", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "warning", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + }, + "pf-t--chart--global--warning--color--200": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--global--warning--color--200", + "attributes": { + "category": "chart", + "type": "global", + "item": "warning", + "subitem": "color", + "state": "200" + }, + "path": [ + "chart", + "global", + "warning", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--chart--global--success--color--100": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--global--success--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "success", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "success", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + }, + "pf-t--chart--global--danger--color--100": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--chart--global--danger--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "danger", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "danger", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + }, + "pf-t--chart--global--FontSize--xs": { + "type": "number", + "value": 12, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--chart--global--FontSize--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "xs" + }, + "path": [ + "chart", + "global", + "FontSize", + "xs" + ] + }, + "pf-t--chart--global--FontSize--sm": { + "type": "number", + "value": 14, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--chart--global--FontSize--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "sm" + }, + "path": [ + "chart", + "global", + "FontSize", + "sm" + ] + }, + "pf-t--chart--global--FontSize--lg": { + "type": "number", + "value": 18, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--chart--global--FontSize--lg", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "lg" + }, + "path": [ + "chart", + "global", + "FontSize", + "lg" + ] + }, + "pf-t--chart--global--FontSize--2xl": { + "type": "number", + "value": 22, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--chart--global--FontSize--2xl", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "2xl" + }, + "path": [ + "chart", + "global", + "FontSize", + "2xl" + ] + }, + "pf-t--chart--global--letter-spacing": { + "type": "string", + "value": "normal", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "string", + "value": "normal" + }, + "name": "pf-t--chart--global--letter-spacing", + "attributes": { + "category": "chart", + "type": "global", + "item": "letter-spacing" + }, + "path": [ + "chart", + "global", + "letter-spacing" + ] + }, + "pf-t--chart--global--stroke-line-cap": { + "type": "string", + "value": "round", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "string", + "value": "round" + }, + "name": "pf-t--chart--global--stroke-line-cap", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke-line-cap" + }, + "path": [ + "chart", + "global", + "stroke-line-cap" + ] + }, + "pf-t--chart--global--label--padding": { + "type": "number", + "value": 10, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 10 + }, + "name": "pf-t--chart--global--label--padding", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "padding" + }, + "path": [ + "chart", + "global", + "label", + "padding" + ] + }, + "pf-t--chart--global--label--margin": { + "type": "number", + "value": 8, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--chart--global--label--margin", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "margin" + }, + "path": [ + "chart", + "global", + "label", + "margin" + ] + }, + "pf-t--chart--global--label--stroke": { + "width": { + "type": "number", + "value": 0, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true + }, + "type": "string", + "value": "transparent", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "width": { + "type": "number", + "value": 0, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true + }, + "type": "string", + "value": "transparent" + }, + "name": "pf-t--chart--global--label--stroke", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "stroke" + }, + "path": [ + "chart", + "global", + "label", + "stroke" + ] + }, + "pf-t--chart--global--label--text-anchor": { + "type": "string", + "value": "middle", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "string", + "value": "middle" + }, + "name": "pf-t--chart--global--label--text-anchor", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "text-anchor" + }, + "path": [ + "chart", + "global", + "label", + "text-anchor" + ] + }, + "pf-t--chart--global--label--fill": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--chart--global--label--fill", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "fill" + }, + "path": [ + "chart", + "global", + "label", + "fill" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--chart--global--layout--padding": { + "type": "number", + "value": 50, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--chart--global--layout--padding", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "padding" + }, + "path": [ + "chart", + "global", + "layout", + "padding" + ] + }, + "pf-t--chart--global--layout--height": { + "type": "number", + "value": 300, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--chart--global--layout--height", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "height" + }, + "path": [ + "chart", + "global", + "layout", + "height" + ] + }, + "pf-t--chart--global--layout--width": { + "type": "number", + "value": 450, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 450 + }, + "name": "pf-t--chart--global--layout--width", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "width" + }, + "path": [ + "chart", + "global", + "layout", + "width" + ] + }, + "pf-t--chart--global--stroke-line-join": { + "type": "string", + "value": "round", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "string", + "value": "round" + }, + "name": "pf-t--chart--global--stroke-line-join", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke-line-join" + }, + "path": [ + "chart", + "global", + "stroke-line-join" + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--100": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--200": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--300": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--400": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--500": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--100": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--200": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--300": { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.10}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--400": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--500": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--200": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--300": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.10}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--400": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--500": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.300}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--200": { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.100}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--300": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.500}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--400": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.200}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--500": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.400}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--100": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--200": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--300": { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.10}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--400": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--500": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--100": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.300}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--200": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.100}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--300": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.500}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--400": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.200}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--500": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.400}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--100": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--200": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--300": { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.10}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--400": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--500": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "600" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "700" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "800" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "900" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1000" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1100" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1200" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300": { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1300" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.10}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1400" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500": { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1500" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.10}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1600" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700": { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1700" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.10}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1800" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1900" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.10}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2000" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2100" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2300" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2400" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2500" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "600" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "700" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "800" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "900" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1000" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1300" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1400" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1500" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1600" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.10}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1700" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1800" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1900" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000": { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2000" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.10}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100": { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2200" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400": { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2400" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.10}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2500" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600": { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2600" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.10}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2700" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2800" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2900" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3000" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3100" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3300" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3400" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3500" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--color--white": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + }, + "pf-t--color--gray--10": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + }, + "pf-t--color--gray--20": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + }, + "pf-t--color--gray--30": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + }, + "pf-t--color--gray--40": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + }, + "pf-t--color--gray--50": { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + }, + "pf-t--color--gray--60": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + }, + "pf-t--color--gray--70": { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + }, + "pf-t--color--gray--80": { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + }, + "pf-t--color--gray--90": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + }, + "pf-t--color--gray--95": { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + }, + "pf-t--color--black": { + "type": "color", + "value": "#000000", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#000000" + }, + "name": "pf-t--color--black", + "attributes": { + "category": "color", + "type": "black" + }, + "path": [ + "color", + "black" + ] + }, + "pf-t--color--blue--10": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + }, + "pf-t--color--blue--20": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + }, + "pf-t--color--blue--30": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + }, + "pf-t--color--blue--40": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + }, + "pf-t--color--blue--50": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + }, + "pf-t--color--blue--60": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + }, + "pf-t--color--blue--70": { + "type": "color", + "value": "#003366", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + }, + "pf-t--color--teal--10": { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + }, + "pf-t--color--teal--20": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + }, + "pf-t--color--teal--30": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + }, + "pf-t--color--teal--40": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + }, + "pf-t--color--teal--50": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + }, + "pf-t--color--teal--60": { + "type": "color", + "value": "#147878", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + }, + "pf-t--color--teal--70": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + }, + "pf-t--color--yellow--10": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + }, + "pf-t--color--yellow--20": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + }, + "pf-t--color--yellow--30": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + }, + "pf-t--color--yellow--40": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + }, + "pf-t--color--yellow--50": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + }, + "pf-t--color--yellow--60": { + "type": "color", + "value": "#96640f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + }, + "pf-t--color--yellow--70": { + "type": "color", + "value": "#73480b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#73480b" + }, + "name": "pf-t--color--yellow--70", + "attributes": { + "category": "color", + "type": "yellow", + "item": "70" + }, + "path": [ + "color", + "yellow", + "70" + ] + }, + "pf-t--color--green--10": { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + }, + "pf-t--color--green--20": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + }, + "pf-t--color--green--30": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + }, + "pf-t--color--green--40": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + }, + "pf-t--color--green--50": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + }, + "pf-t--color--green--60": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + }, + "pf-t--color--green--70": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + }, + "pf-t--color--orange--10": { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + }, + "pf-t--color--orange--20": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + }, + "pf-t--color--orange--30": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + }, + "pf-t--color--orange--40": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + }, + "pf-t--color--orange--50": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + }, + "pf-t--color--orange--60": { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + }, + "pf-t--color--orange--70": { + "type": "color", + "value": "#732e00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + }, + "pf-t--color--red-orange--10": { + "type": "color", + "value": "#ffe3d9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe3d9" + }, + "name": "pf-t--color--red-orange--10", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "10" + }, + "path": [ + "color", + "red-orange", + "10" + ] + }, + "pf-t--color--red-orange--20": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + }, + "pf-t--color--red-orange--30": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + }, + "pf-t--color--red-orange--40": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + }, + "pf-t--color--red-orange--50": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + }, + "pf-t--color--red-orange--60": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + }, + "pf-t--color--red-orange--70": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + }, + "pf-t--color--purple--10": { + "type": "color", + "value": "#ece6ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ece6ff" + }, + "name": "pf-t--color--purple--10", + "attributes": { + "category": "color", + "type": "purple", + "item": "10" + }, + "path": [ + "color", + "purple", + "10" + ] + }, + "pf-t--color--purple--20": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + }, + "pf-t--color--purple--30": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + }, + "pf-t--color--purple--40": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + }, + "pf-t--color--purple--50": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + }, + "pf-t--color--purple--60": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + }, + "pf-t--color--purple--70": { + "type": "color", + "value": "#21134d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#21134d" + }, + "name": "pf-t--color--purple--70", + "attributes": { + "category": "color", + "type": "purple", + "item": "70" + }, + "path": [ + "color", + "purple", + "70" + ] + }, + "pf-t--color--red--10": { + "type": "color", + "value": "#fce3e3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fce3e3" + }, + "name": "pf-t--color--red--10", + "attributes": { + "category": "color", + "type": "red", + "item": "10" + }, + "path": [ + "color", + "red", + "10" + ] + }, + "pf-t--color--red--20": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + }, + "pf-t--color--red--30": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + }, + "pf-t--color--red--40": { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + }, + "pf-t--color--red--50": { + "type": "color", + "value": "#ee0000", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ee0000" + }, + "name": "pf-t--color--red--50", + "attributes": { + "category": "color", + "type": "red", + "item": "50" + }, + "path": [ + "color", + "red", + "50" + ] + }, + "pf-t--color--red--60": { + "type": "color", + "value": "#a60000", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a60000" + }, + "name": "pf-t--color--red--60", + "attributes": { + "category": "color", + "type": "red", + "item": "60" + }, + "path": [ + "color", + "red", + "60" + ] + }, + "pf-t--color--red--70": { + "type": "color", + "value": "#5f0000", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5f0000" + }, + "name": "pf-t--color--red--70", + "attributes": { + "category": "color", + "type": "red", + "item": "70" + }, + "path": [ + "color", + "red", + "70" + ] + } + } +} \ No newline at end of file diff --git a/packages/module/patternfly-docs/content/semantic-tokens-default.json b/packages/module/patternfly-docs/content/semantic-tokens-default.json new file mode 100644 index 0000000..5c15e14 --- /dev/null +++ b/packages/module/patternfly-docs/content/semantic-tokens-default.json @@ -0,0 +1,54106 @@ +{ + "semantic": { + "colors": { + "pf-t--global--icon--color--brand--default": { + "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", + "type": "color", + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--icon--color--brand--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "default" + ], + "references": [ + { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--brand--hover": { + "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", + "type": "color", + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--icon--color--brand--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--brand--clicked": { + "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", + "type": "color", + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--icon--color--brand--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--on-brand--default": { + "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--on-brand--hover": { + "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--on-brand--clicked": { + "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--favorite--default": { + "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", + "type": "color", + "value": "{global.color.favorite.default}" + }, + "name": "pf-t--global--icon--color--favorite--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "default" + ], + "references": [ + { + "description": "Use as the default color for elements that have been favorited", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that have been favorited", + "type": "color", + "value": "{global.color.favorite.100}" + }, + "name": "pf-t--global--color--favorite--default", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "default" + }, + "path": [ + "global", + "color", + "favorite", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--favorite--100", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "100" + }, + "path": [ + "global", + "color", + "favorite", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--favorite--hover": { + "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", + "type": "color", + "value": "{global.color.favorite.hover}" + }, + "name": "pf-t--global--icon--color--favorite--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for elements that have been favorited", + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have been favorited", + "type": "color", + "value": "{global.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "favorite", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--favorite--clicked": { + "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", + "type": "color", + "value": "{global.color.favorite.clicked}" + }, + "name": "pf-t--global--icon--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for elements that have been favorited", + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have been favorited", + "type": "color", + "value": "{global.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "favorite", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--success--default": { + "description": "Use as the default color for text that communicates a success status.", + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates a success status.", + "type": "color", + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--icon--color--status--success--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "type": "color", + "value": "{global.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--success--hover": { + "description": "Use as the hover state color for text that communicates a success status.", + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates a success status.", + "type": "color", + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--icon--color--status--success--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys a success status.", + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a success status.", + "type": "color", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--success--clicked": { + "description": "Use as the clicked state color for text that communicates a success status.", + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates a success status.", + "type": "color", + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--icon--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys a success status.", + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a success status.", + "type": "color", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-success--default": { + "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-success--hover": { + "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-success--clicked": { + "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--warning--default": { + "description": "Use as the default color for text that communicates a warning status.", + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates a warning status.", + "type": "color", + "value": "{global.color.status.warning.200}" + }, + "name": "pf-t--global--icon--color--status--warning--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--warning--hover": { + "description": "Use as the hover state color for text that communicates a warning status.", + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates a warning status.", + "type": "color", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--icon--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--warning--clicked": { + "description": "Use as the clicked state color for text that communicates a warning status.", + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates a warning status.", + "type": "color", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--icon--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-warning--default": { + "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--status--on-warning--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "default" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-warning--hover": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--status--on-warning--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "hover" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-warning--clicked": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--status--on-warning--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "clicked" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--danger--default": { + "description": "Use as the default color for icons that convey danger, like in alerts or banners.", + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that convey danger, like in alerts or banners.", + "type": "color", + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--icon--color--status--danger--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "{global.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--danger--hover": { + "description": "Use as the hover state for icons that indicate danger.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for icons that indicate danger.", + "type": "color", + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--icon--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--danger--clicked": { + "description": "Use as the clicked state for icons that indicate danger.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for icons that indicate danger.", + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--icon--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-danger--default": { + "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-danger--hover": { + "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-danger--clicked": { + "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--info--default": { + "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", + "type": "color", + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--icon--color--status--info--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "type": "color", + "value": "{global.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--info--hover": { + "description": "Use as the hover state for icons that identify informational messages.", + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for icons that identify informational messages.", + "type": "color", + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--icon--color--status--info--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys an info status.", + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys an info status.", + "type": "color", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--info--clicked": { + "description": "Use as the clicked state for icons that identify informational messages.", + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for icons that identify informational messages.", + "type": "color", + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--icon--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys an info status.", + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys an info status.", + "type": "color", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-info--default": { + "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-info--hover": { + "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-info--clicked": { + "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--custom--default": { + "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--icon--color--status--custom--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--custom--hover": { + "description": "Use as the hover state for icons that convey generic status with no associated severity.", + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for icons that convey generic status with no associated severity.", + "type": "color", + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--icon--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--custom--clicked": { + "description": "Use as the clicked state for icons that convey generic status with no associated severity.", + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for icons that convey generic status with no associated severity.", + "type": "color", + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--icon--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-custom--default": { + "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-custom--hover": { + "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--on-custom--clicked": { + "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-default--default": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-default--hover": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-default--clicked": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-attention--default": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-attention--hover": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "hover" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--status--unread--on-attention--clicked": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--regular": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--subtle": { + "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", + "type": "color", + "value": "#707070", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", + "type": "color", + "value": "{global.icon.color.200}" + }, + "name": "pf-t--global--icon--color--subtle", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "icon", + "color", + "subtle" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--icon--color--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--inverse": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--disabled": { + "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", + "type": "color", + "value": "{global.color.disabled.200}" + }, + "name": "pf-t--global--icon--color--disabled", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "icon", + "color", + "disabled" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--disabled--200", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "200" + }, + "path": [ + "global", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--on-disabled": { + "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", + "type": "color", + "value": "{global.color.disabled.300}" + }, + "name": "pf-t--global--icon--color--on-disabled", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-disabled" + }, + "path": [ + "global", + "icon", + "color", + "on-disabled" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--color--disabled--300", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "300" + }, + "path": [ + "global", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--undefined--default": { + "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", + "type": "color", + "value": "{global.color.severity.undefined.100}" + }, + "name": "pf-t--global--icon--color--severity--undefined--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "undefined" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "undefined", + "default" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--severity--undefined--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "undefined", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "undefined", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--none--default": { + "description": "Use as the default color for severity icons that identify no issues.", + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify no issues.", + "type": "color", + "value": "{global.color.severity.none.100}" + }, + "name": "pf-t--global--icon--color--severity--none--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "none" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "none", + "default" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--severity--none--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "none", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "none", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--minor--default": { + "description": "Use as the default color for severity icons that identify issues of minor severity.", + "type": "color", + "value": "#707070", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify issues of minor severity.", + "type": "color", + "value": "{global.color.severity.minor.100}" + }, + "name": "pf-t--global--icon--color--severity--minor--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "minor" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "minor", + "default" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--color--severity--minor--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "minor", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "minor", + "100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--moderate--default": { + "description": "Use as the default color for severity icons that identify issues of moderate severity.", + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify issues of moderate severity.", + "type": "color", + "value": "{global.color.severity.moderate.100}" + }, + "name": "pf-t--global--icon--color--severity--moderate--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "moderate" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "moderate", + "default" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--severity--moderate--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "moderate", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "moderate", + "100" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--important--default": { + "description": "Use as the default color for severity icons that identify issues of important severity.", + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify issues of important severity.", + "type": "color", + "value": "{global.color.severity.important.100}" + }, + "name": "pf-t--global--icon--color--severity--important--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "important" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "important", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--global--color--severity--important--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "important", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "important", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--severity--critical--default": { + "description": "Use as the default color for severity icons that identify issues of critical severity.", + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify issues of critical severity.", + "type": "color", + "value": "{global.color.severity.critical.100}" + }, + "name": "pf-t--global--icon--color--severity--critical--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "critical" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "critical", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--severity--critical--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "critical", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "critical", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-red--default": { + "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "default" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-red--hover": { + "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "hover" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-red--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "clicked" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orangered--default": { + "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "default" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orangered--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "hover" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orangered--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "clicked" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orange--default": { + "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "default" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orange--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "hover" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-orange--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "clicked" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-yellow--default": { + "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "default" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-yellow--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "hover" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-yellow--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "clicked" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-green--default": { + "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "default" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-green--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "hover" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-green--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "clicked" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-teal--default": { + "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "default" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-teal--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "hover" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-teal--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "clicked" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-blue--default": { + "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "default" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-blue--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "hover" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-blue--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "clicked" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-purple--default": { + "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "default" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-purple--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "hover" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-purple--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "clicked" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-gray--default": { + "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "default" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-gray--hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "hover" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--color--nonstatus--on-gray--clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "clicked" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--brand--default": { + "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", + "type": "color", + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--border--color--brand--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "border", + "color", + "brand", + "default" + ], + "references": [ + { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--brand--hover": { + "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", + "type": "color", + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--border--color--brand--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "border", + "color", + "brand", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--brand--clicked": { + "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", + "type": "color", + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--border--color--brand--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "border", + "color", + "brand", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--success--default": { + "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--border--color--status--success--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "type": "color", + "value": "{global.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--success--hover": { + "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", + "type": "color", + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--border--color--status--success--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys a success status.", + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a success status.", + "type": "color", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--success--clicked": { + "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", + "type": "color", + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--border--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys a success status.", + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a success status.", + "type": "color", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--warning--default": { + "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.warning.200}" + }, + "name": "pf-t--global--border--color--status--warning--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--warning--hover": { + "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--border--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--warning--clicked": { + "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--border--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--danger--default": { + "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--border--color--status--danger--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "{global.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--danger--hover": { + "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--border--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--danger--clicked": { + "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--border--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--info--default": { + "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--border--color--status--info--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "type": "color", + "value": "{global.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--info--hover": { + "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--border--color--status--info--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys an info status.", + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys an info status.", + "type": "color", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--info--clicked": { + "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--border--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys an info status.", + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys an info status.", + "type": "color", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--custom--default": { + "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--border--color--status--custom--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--custom--hover": { + "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--border--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--status--custom--clicked": { + "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", + "type": "color", + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--border--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--default": { + "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", + "type": "color", + "value": "{global.border.color.100}" + }, + "name": "pf-t--global--border--color--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "default" + }, + "path": [ + "global", + "border", + "color", + "default" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--border--color--100", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "border", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--hover": { + "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", + "type": "color", + "value": "{global.color.brand.100}" + }, + "name": "pf-t--global--border--color--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "hover" + }, + "path": [ + "global", + "border", + "color", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--brand--100", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "100" + }, + "path": [ + "global", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--clicked": { + "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", + "type": "color", + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--border--color--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "clicked" + }, + "path": [ + "global", + "border", + "color", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--disabled": { + "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", + "type": "color", + "value": "{global.color.disabled.200}" + }, + "name": "pf-t--global--border--color--disabled", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "border", + "color", + "disabled" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--disabled--200", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "200" + }, + "path": [ + "global", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--alt": { + "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", + "type": "color", + "value": "{global.background.color.primary.default}" + }, + "name": "pf-t--global--border--color--alt", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "alt" + }, + "path": [ + "global", + "border", + "color", + "alt" + ], + "references": [ + { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--border--color--on-secondary": { + "description": "Use on borders/dividers that are placed on a secondary bkg color.", + "type": "color", + "value": "#707070", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use on borders/dividers that are placed on a secondary bkg color.", + "type": "color", + "value": "{global.border.color.300}" + }, + "name": "pf-t--global--border--color--on-secondary", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "on-secondary" + }, + "path": [ + "global", + "border", + "color", + "on-secondary" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--border--color--300", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "border", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--red--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.color.nonstatus.red.200}" + }, + "name": "pf-t--global--border--color--nonstatus--red--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.30}" + }, + "name": "pf-t--global--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--red--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.red.300}" + }, + "name": "pf-t--global--border--color--nonstatus--red--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.40}" + }, + "name": "pf-t--global--color--nonstatus--red--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--red--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.red.300}" + }, + "name": "pf-t--global--border--color--nonstatus--red--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.40}" + }, + "name": "pf-t--global--color--nonstatus--red--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orangered--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orangered--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.orangered.300}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orangered--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orangered--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.orangered.300}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orangered--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orange--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orange--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.orange.300}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orange--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--orange--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.orange.300}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orange--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--yellow--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.yellow.200}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--yellow--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.yellow.300}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--nonstatus--yellow--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--yellow--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.yellow.300}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--nonstatus--yellow--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--green--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.green.200}" + }, + "name": "pf-t--global--border--color--nonstatus--green--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "default" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--green--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.green.300}" + }, + "name": "pf-t--global--border--color--nonstatus--green--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--color--nonstatus--green--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--green--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.green.300}" + }, + "name": "pf-t--global--border--color--nonstatus--green--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--color--nonstatus--green--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--teal--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.teal.200}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "default" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--teal--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.teal.300}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--color--nonstatus--teal--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--teal--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.teal.300}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--color--nonstatus--teal--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--blue--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--blue--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.blue.300}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--nonstatus--blue--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--blue--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.blue.300}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--nonstatus--blue--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--purple--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--purple--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.purple.300}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--global--color--nonstatus--purple--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--purple--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.purple.300}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--global--color--nonstatus--purple--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--gray--default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "default" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--gray--hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.gray.300}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--nonstatus--gray--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "300" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--border--color--nonstatus--gray--clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", + "type": "color", + "value": "{global.color.nonstatus.gray.300}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--nonstatus--gray--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "300" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--box-shadow--color--sm": { + "description": "Use as the color of small box-shadows.", + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of small box-shadows.", + "type": "color", + "value": "{global.box-shadow.color.100}" + }, + "name": "pf-t--global--box-shadow--color--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "color", + "sm" + ], + "references": [ + { + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)" + }, + "name": "pf-t--global--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "color", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--color--md": { + "description": "Use as the color of medium box-shadows.", + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of medium box-shadows.", + "type": "color", + "value": "{global.box-shadow.color.200}" + }, + "name": "pf-t--global--box-shadow--color--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "color", + "md" + ], + "references": [ + { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)" + }, + "name": "pf-t--global--box-shadow--color--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "color", + "200" + ] + } + ] + }, + "pf-t--global--box-shadow--color--lg": { + "description": "Use as the color of large box-shadows.", + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of large box-shadows.", + "type": "color", + "value": "{global.box-shadow.color.200}" + }, + "name": "pf-t--global--box-shadow--color--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "color", + "lg" + ], + "references": [ + { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)" + }, + "name": "pf-t--global--box-shadow--color--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "color", + "200" + ] + } + ] + }, + "pf-t--global--background--color--highlight--default": { + "description": "Use as the background color for highlighted elements", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the background color for highlighted elements", + "type": "color", + "value": "{global.background.color.highlight.100}" + }, + "name": "pf-t--global--background--color--highlight--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--background--color--highlight--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "100" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--highlight--clicked": { + "description": "Use as the active state for for highlighted elements", + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the active state for for highlighted elements", + "type": "color", + "value": "{global.background.color.highlight.200}" + }, + "name": "pf-t--global--background--color--highlight--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--background--color--highlight--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "200" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--primary--default": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--primary--hover": { + "description": "Use as the hover state for primary backgrounds", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for primary backgrounds", + "type": "color", + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--primary--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "primary", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--primary--clicked": { + "description": "Use as the clicked state for primary backgrounds", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for primary backgrounds", + "type": "color", + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--primary--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "primary", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--secondary--default": { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "type": "color", + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--secondary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--secondary--hover": { + "description": "Use as the hover state for secondary backgrounds", + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for secondary backgrounds", + "type": "color", + "value": "{global.background.color.300}" + }, + "name": "pf-t--global--background--color--secondary--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--background--color--300", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--secondary--clicked": { + "description": "Use as the clicked state for secondary backgrounds", + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for secondary backgrounds", + "type": "color", + "value": "{global.background.color.300}" + }, + "name": "pf-t--global--background--color--secondary--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--background--color--300", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--floating--default": { + "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", + "type": "color", + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--floating--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "floating", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--floating--hover": { + "description": "Use as the hover state for floating backgrounds", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for floating backgrounds", + "type": "color", + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--floating--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "floating", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--floating--clicked": { + "description": "Use as the clicked state for floating backgrounds", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for floating backgrounds", + "type": "color", + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--floating--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "floating", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--action--plain--default": { + "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", + "type": "color", + "value": "rgba(255, 255, 255, 0.0000)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", + "type": "color", + "value": "rgba(255, 255, 255, 0.0000)" + }, + "name": "pf-t--global--background--color--action--plain--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "default" + ] + }, + "pf-t--global--background--color--action--plain--hover": { + "description": "Use as the hover state for components that use the plain action default background.", + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for components that use the plain action default background.", + "type": "color", + "value": "{global.background.color.600}" + }, + "name": "pf-t--global--background--color--action--plain--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "hover" + ], + "references": [ + { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)" + }, + "name": "pf-t--global--background--color--600", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "600" + }, + "path": [ + "global", + "background", + "color", + "600" + ] + } + ] + }, + "pf-t--global--background--color--action--plain--clicked": { + "description": "Use as the active/pressed state for components that use the plain action default background.", + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the active/pressed state for components that use the plain action default background.", + "type": "color", + "value": "{global.background.color.600}" + }, + "name": "pf-t--global--background--color--action--plain--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)" + }, + "name": "pf-t--global--background--color--600", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "600" + }, + "path": [ + "global", + "background", + "color", + "600" + ] + } + ] + }, + "pf-t--global--background--color--action--plain--alt--hover": { + "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", + "type": "color", + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--action--plain--alt--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "alt", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--action--plain--alt--clicked": { + "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", + "type": "color", + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--action--plain--alt--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "alt", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--control--default": { + "description": "Use as the default background for control elements like form inputs and menu toggles.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background for control elements like form inputs and menu toggles.", + "type": "color", + "value": "{global.background.color.primary.default}" + }, + "name": "pf-t--global--background--color--control--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "control", + "default" + ], + "references": [ + { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--background--color--inverse--default": { + "description": "Use as the background color components with inversed backgrounds like tooltips.", + "type": "color", + "value": "#292929", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the background color components with inversed backgrounds like tooltips.", + "type": "color", + "value": "{global.background.color.400}" + }, + "name": "pf-t--global--background--color--inverse--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "inverse", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "inverse", + "default" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--background--color--400", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "background", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--disabled--default": { + "description": "Use as the background color for disabled components.", + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the background color for disabled components.", + "type": "color", + "value": "{global.color.disabled.100}" + }, + "name": "pf-t--global--background--color--disabled--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "disabled", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "disabled", + "default" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--disabled--100", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "100" + }, + "path": [ + "global", + "color", + "disabled", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--background--color--backdrop--default": { + "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", + "type": "color", + "value": "{global.background.color.500}" + }, + "name": "pf-t--global--background--color--backdrop--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "backdrop", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "backdrop", + "default" + ], + "references": [ + { + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)" + }, + "name": "pf-t--global--background--color--500", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "500" + }, + "path": [ + "global", + "background", + "color", + "500" + ] + } + ] + }, + "pf-t--global--color--brand--default": { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--color--brand--hover": { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--color--brand--clicked": { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--color--favorite--default": { + "description": "Use as the default color for elements that have been favorited", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that have been favorited", + "type": "color", + "value": "{global.color.favorite.100}" + }, + "name": "pf-t--global--color--favorite--default", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "default" + }, + "path": [ + "global", + "color", + "favorite", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--favorite--100", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "100" + }, + "path": [ + "global", + "color", + "favorite", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--favorite--hover": { + "description": "Use as the hover state for elements that have been favorited", + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have been favorited", + "type": "color", + "value": "{global.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "favorite", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--color--favorite--clicked": { + "description": "Use as the clicked state for elements that have been favorited", + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have been favorited", + "type": "color", + "value": "{global.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "favorite", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--success--default": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "type": "color", + "value": "{global.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--success--hover": { + "description": "Use as the hover state for any element that conveys a success status.", + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a success status.", + "type": "color", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--success--clicked": { + "description": "Use as the clicked state for any element that conveys a success status.", + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a success status.", + "type": "color", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--warning--default": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", + "type": "color", + "value": "{global.color.status.warning.100}" + }, + "name": "pf-t--global--color--status--warning--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--status--warning--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--warning--hover": { + "description": "Use as the hover state for any element that conveys a warning status.", + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a warning status.", + "type": "color", + "value": "{global.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--warning--clicked": { + "description": "Use as the clicked state for any element that conveys a warning status.", + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a warning status.", + "type": "color", + "value": "{global.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--danger--default": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "{global.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--danger--hover": { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--danger--clicked": { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--info--default": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "type": "color", + "value": "{global.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--info--hover": { + "description": "Use as the hover state for any element that conveys an info status.", + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys an info status.", + "type": "color", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--info--clicked": { + "description": "Use as the clicked state for any element that conveys an info status.", + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys an info status.", + "type": "color", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--custom--default": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--custom--hover": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--custom--clicked": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--default": { + "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--color--status--unread--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "unread", + "default" + ], + "references": [ + { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--hover": { + "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--color--status--unread--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "unread", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--clicked": { + "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--color--status--unread--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "unread", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--attention--default": { + "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--color--status--unread--attention--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "{global.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--attention--clicked": { + "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--color--status--unread--attention--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--unread--attention--hover": { + "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--color--status--unread--attention--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--read--on-secondary": { + "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", + "type": "color", + "value": "{global.background.color.control.default}" + }, + "name": "pf-t--global--color--status--read--on-secondary", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "read", + "state": "on-secondary" + }, + "path": [ + "global", + "color", + "status", + "read", + "on-secondary" + ], + "references": [ + { + "description": "Use as the default background for control elements like form inputs and menu toggles.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background for control elements like form inputs and menu toggles.", + "type": "color", + "value": "{global.background.color.primary.default}" + }, + "name": "pf-t--global--background--color--control--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "control", + "default" + ], + "references": [ + { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--status--read--on-primary": { + "description": "Use as the default color for elements that convey a read status and are placed on a primary background", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that convey a read status and are placed on a primary background", + "type": "color", + "value": "{global.background.color.secondary.default}" + }, + "name": "pf-t--global--color--status--read--on-primary", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "read", + "state": "on-primary" + }, + "path": [ + "global", + "color", + "status", + "read", + "on-primary" + ], + "references": [ + { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "type": "color", + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--secondary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.color.nonstatus.red.100}" + }, + "name": "pf-t--global--color--nonstatus--red--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "default" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.20}" + }, + "name": "pf-t--global--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--hover": { + "description": "Use as the hover state color for any element that uses the non status red background color.", + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status red background color.", + "type": "color", + "value": "{global.color.nonstatus.red.200}" + }, + "name": "pf-t--global--color--nonstatus--red--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.30}" + }, + "name": "pf-t--global--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--clicked": { + "description": "Use as the clicked state color for any element that uses the non status red background color.", + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status red background color.", + "type": "color", + "value": "{global.color.nonstatus.red.200}" + }, + "name": "pf-t--global--color--nonstatus--red--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.30}" + }, + "name": "pf-t--global--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.color.nonstatus.orangered.100}" + }, + "name": "pf-t--global--color--nonstatus--orangered--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "default" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--hover": { + "description": "Use as the hover state color for any element that uses the non status orange-red background color.", + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status orange-red background color.", + "type": "color", + "value": "{global.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--color--nonstatus--orangered--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--clicked": { + "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", + "type": "color", + "value": "{global.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--color--nonstatus--orangered--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.color.nonstatus.orange.100}" + }, + "name": "pf-t--global--color--nonstatus--orange--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "default" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--hover": { + "description": "Use as the hover state color for any element that uses the non status orange background color.", + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status orange background color.", + "type": "color", + "value": "{global.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--color--nonstatus--orange--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--clicked": { + "description": "Use as the clicked state color for any element that uses the non status orange background color.", + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status orange background color.", + "type": "color", + "value": "{global.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--color--nonstatus--orange--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.color.nonstatus.yellow.100}" + }, + "name": "pf-t--global--color--nonstatus--yellow--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--color--nonstatus--yellow--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--hover": { + "description": "Use as the hover state color for any element that uses the non status yellow background color.", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status yellow background color.", + "type": "color", + "value": "{global.color.nonstatus.yellow.200}" + }, + "name": "pf-t--global--color--nonstatus--yellow--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--clicked": { + "description": "Use as the clicked state color for any element that uses the non status yellow background color.", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status yellow background color.", + "type": "color", + "value": "{global.color.nonstatus.yellow.200}" + }, + "name": "pf-t--global--color--nonstatus--yellow--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.color.nonstatus.green.100}" + }, + "name": "pf-t--global--color--nonstatus--green--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "default" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--global--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--hover": { + "description": "Use as the hover state color for any element that uses the non status green background color.", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status green background color.", + "type": "color", + "value": "{global.color.nonstatus.green.200}" + }, + "name": "pf-t--global--color--nonstatus--green--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--clicked": { + "description": "Use as the clicked state color for any element that uses the non status green background color.", + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status green background color.", + "type": "color", + "value": "{global.color.nonstatus.green.200}" + }, + "name": "pf-t--global--color--nonstatus--green--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.color.nonstatus.teal.100}" + }, + "name": "pf-t--global--color--nonstatus--teal--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--color--nonstatus--teal--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--hover": { + "description": "Use as the hover state color for any element that uses the non status teal background color.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status teal background color.", + "type": "color", + "value": "{global.color.nonstatus.teal.200}" + }, + "name": "pf-t--global--color--nonstatus--teal--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--clicked": { + "description": "Use as the clicked state color for any element that uses the non status teal background color.", + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status teal background color.", + "type": "color", + "value": "{global.color.nonstatus.teal.200}" + }, + "name": "pf-t--global--color--nonstatus--teal--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.color.nonstatus.blue.100}" + }, + "name": "pf-t--global--color--nonstatus--blue--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--hover": { + "description": "Use as the hover state color for any element that uses the non status blue background color.", + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status blue background color.", + "type": "color", + "value": "{global.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--color--nonstatus--blue--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--clicked": { + "description": "Use as the clicked state color for any element that uses the non status blue background color.", + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status blue background color.", + "type": "color", + "value": "{global.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--color--nonstatus--blue--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.color.nonstatus.purple.100}" + }, + "name": "pf-t--global--color--nonstatus--purple--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "default" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--hover": { + "description": "Use as the hover state color for any element that uses the non status purple background color.", + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status purple background color.", + "type": "color", + "value": "{global.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--color--nonstatus--purple--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--clicked": { + "description": "Use as the clicked state color for any element that uses the non status purple background color.", + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status purple background color.", + "type": "color", + "value": "{global.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--color--nonstatus--purple--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", + "type": "color", + "value": "{global.color.nonstatus.gray.100}" + }, + "name": "pf-t--global--color--nonstatus--gray--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "default" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--hover": { + "description": "Use as the hover state color for any element that uses the non status gray background color.", + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status gray background color.", + "type": "color", + "value": "{global.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--color--nonstatus--gray--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--clicked": { + "description": "Use as the clicked state color for any element that uses the non status gray background color.", + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status gray background color.", + "type": "color", + "value": "{global.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--color--nonstatus--gray--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--link--default": { + "description": "Use as the default text color for links.", + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default text color for links.", + "type": "color", + "value": "{global.text.color.link.100}" + }, + "name": "pf-t--global--text--color--link--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "link", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--text--color--link--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "100" + }, + "path": [ + "global", + "text", + "color", + "link", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--link--hover": { + "description": "Use as the hover state text color for links.", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state text color for links.", + "type": "color", + "value": "{global.text.color.link.200}" + }, + "name": "pf-t--global--text--color--link--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "link", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--text--color--link--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "200" + }, + "path": [ + "global", + "text", + "color", + "link", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--link--visited": { + "description": "Use as the color to indicate that a link has been visited.", + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color to indicate that a link has been visited.", + "type": "color", + "value": "{global.text.color.link.300}" + }, + "name": "pf-t--global--text--color--link--visited", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "visited" + }, + "path": [ + "global", + "text", + "color", + "link", + "visited" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--text--color--link--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "300" + }, + "path": [ + "global", + "text", + "color", + "link", + "300" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--default": { + "description": "Use as the default color for branded text.", + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for branded text.", + "type": "color", + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--text--color--brand--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "brand", + "default" + ], + "references": [ + { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", + "type": "color", + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--hover": { + "description": "Use as the hover state color for branded text.", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for branded text.", + "type": "color", + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--text--color--brand--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "brand", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--brand--clicked": { + "description": "Use as the clicked state color for branded text.", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for branded text.", + "type": "color", + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--text--color--brand--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "text", + "color", + "brand", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", + "type": "color", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--regular": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--subtle": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", + "type": "color", + "value": "{global.text.color.200}" + }, + "name": "pf-t--global--text--color--subtle", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "text", + "color", + "subtle" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--text--color--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "text", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--inverse": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-brand--default": { + "description": "Use as the default color for text placed on a brand-colored background.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text placed on a brand-colored background.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-brand--hover": { + "description": "Use as the hover state color for text placed on a brand-colored background.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text placed on a brand-colored background.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-brand--clicked": { + "description": "Use as the clicked state color for text placed on a brand-colored background.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text placed on a brand-colored background.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "clicked" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--placeholder": { + "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", + "type": "color", + "value": "{global.text.color.subtle}" + }, + "name": "pf-t--global--text--color--placeholder", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "placeholder" + }, + "path": [ + "global", + "text", + "color", + "placeholder" + ], + "references": [ + { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", + "type": "color", + "value": "{global.text.color.200}" + }, + "name": "pf-t--global--text--color--subtle", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "text", + "color", + "subtle" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--text--color--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "text", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--disabled": { + "description": "Use as the color of text on disabled elements, like disabled menu items.", + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text on disabled elements, like disabled menu items.", + "type": "color", + "value": "{global.color.disabled.200}" + }, + "name": "pf-t--global--text--color--disabled", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "text", + "color", + "disabled" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--disabled--200", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "200" + }, + "path": [ + "global", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-disabled": { + "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", + "type": "color", + "value": "{global.color.disabled.300}" + }, + "name": "pf-t--global--text--color--on-disabled", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-disabled" + }, + "path": [ + "global", + "text", + "color", + "on-disabled" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--color--disabled--300", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "300" + }, + "path": [ + "global", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--required": { + "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", + "type": "color", + "value": "{global.text.color.400}" + }, + "name": "pf-t--global--text--color--required", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "required" + }, + "path": [ + "global", + "text", + "color", + "required" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--text--color--400", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "text", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--on-highlight": { + "description": "Use as the color of text that is highlighted.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is highlighted.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--on-highlight", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-highlight" + }, + "path": [ + "global", + "text", + "color", + "on-highlight" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--success--default": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--text--color--status--success--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "type": "color", + "value": "{global.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--success--hover": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--text--color--status--success--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys a success status.", + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a success status.", + "type": "color", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--success--clicked": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--text--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys a success status.", + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a success status.", + "type": "color", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-success--default": { + "description": "Use as the default color for text that is placed on a success background color, like in banners.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a success background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-success--hover": { + "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-success--clicked": { + "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--warning--default": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.200}" + }, + "name": "pf-t--global--text--color--status--warning--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--warning--hover": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--text--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--warning--clicked": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "type": "color", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--text--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-warning--default": { + "description": "Use as the default color for text that is placed on a warning background color, like in banners.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a warning background color, like in banners.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--status--on-warning--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "default" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-warning--hover": { + "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--status--on-warning--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "hover" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-warning--clicked": { + "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--status--on-warning--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "clicked" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--danger--default": { + "description": "Use as the default color for text that communicates a danger status.", + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates a danger status.", + "type": "color", + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--text--color--status--danger--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "type": "color", + "value": "{global.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--danger--hover": { + "description": "Use as the hover state color for text that communicates a danger status.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates a danger status.", + "type": "color", + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--text--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--danger--clicked": { + "description": "Use as the clicked state color for text that communicates a danger status.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates a danger status.", + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--text--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", + "type": "color", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-danger--default": { + "description": "Use as the default color for text that is placed on a danger background color, like in banners.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a danger background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-danger--hover": { + "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-danger--clicked": { + "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", + "type": "color", + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--info--default": { + "description": "Use as the default color for text that communicates am info status.", + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates am info status.", + "type": "color", + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--text--color--status--info--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "type": "color", + "value": "{global.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--info--hover": { + "description": "Use as the hover state color for text that communicates an infostatus.", + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates an infostatus.", + "type": "color", + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--text--color--status--info--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "description": "Use as the hover state for any element that conveys an info status.", + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys an info status.", + "type": "color", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--info--clicked": { + "description": "Use as the clicked state color for text that communicates an info status.", + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates an info status.", + "type": "color", + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--text--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state for any element that conveys an info status.", + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys an info status.", + "type": "color", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-info--default": { + "description": "Use as the default color for text that is placed on an info background color, like in banners.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on an info background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-info--hover": { + "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-info--clicked": { + "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--custom--default": { + "description": "Use as the default color for text that communicates a custom status.", + "type": "color", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates a custom status.", + "type": "color", + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--text--color--status--custom--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--custom--hover": { + "description": "Use as the hover state color for text that communicates a custom status.", + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates a custom status.", + "type": "color", + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--text--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--custom--clicked": { + "description": "Use as the clicked state color for text that communicates a custom status.", + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates a custom status.", + "type": "color", + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--text--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "type": "color", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-custom--default": { + "description": "Use as the default color for text that is placed on a custom background color, like in banners.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a custom background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-custom--hover": { + "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--on-custom--clicked": { + "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-default--default": { + "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-default--hover": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-default--clicked": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-attention--default": { + "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-attention--hover": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "hover" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--status--unread--on-attention--clicked": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-red--default": { + "description": "Use as the default color for text that is placed on a nonstatus red background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus red background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "default" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-red--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "hover" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-red--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "clicked" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orangered--default": { + "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "default" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orangered--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "hover" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orangered--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "clicked" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orange--default": { + "description": "Use as the default color for text that is placed on a nonstatus orange background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus orange background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "default" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orange--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "hover" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-orange--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "clicked" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-yellow--default": { + "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "default" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-yellow--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "hover" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-yellow--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "clicked" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-green--default": { + "description": "Use as the default color for text that is placed on a nonstatus green background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus green background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "default" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-green--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "hover" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-green--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "clicked" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-teal--default": { + "description": "Use as the default color for text that is placed on a nonstatus teal background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus teal background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "default" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-teal--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "hover" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-teal--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "clicked" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-blue--default": { + "description": "Use as the default color for text that is placed on a nonstatus blue background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus blue background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "default" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-blue--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "hover" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-blue--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "clicked" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-purple--default": { + "description": "Use as the default color for text that is placed on a nonstatus purple background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus purple background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "default" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-purple--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "hover" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-purple--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "clicked" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-gray--default": { + "description": "Use as the default color for text that is placed on a nonstatus gray background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus gray background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "default" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-gray--hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "hover" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--text--color--nonstatus--on-gray--clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", + "type": "color", + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "clicked" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } + }, + "dimension": { + "pf-t--global--spacer--xs": { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + }, + "pf-t--global--spacer--sm": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + }, + "pf-t--global--spacer--md": { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + }, + "pf-t--global--spacer--lg": { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + }, + "pf-t--global--spacer--xl": { + "description": "Use for extra large spaces between elements.", + "type": "number", + "value": "32px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra large spaces between elements.", + "type": "number", + "value": "{global.spacer.500}" + }, + "name": "pf-t--global--spacer--xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xl" + }, + "path": [ + "global", + "spacer", + "xl" + ], + "references": [ + { + "type": "number", + "value": "32px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + } + ] + }, + "pf-t--global--spacer--2xl": { + "description": "Use for double extra large spaces spacing between elements.", + "type": "number", + "value": "48px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for double extra large spaces spacing between elements.", + "type": "number", + "value": "{global.spacer.600}" + }, + "name": "pf-t--global--spacer--2xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "2xl" + }, + "path": [ + "global", + "spacer", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "48px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + } + ] + }, + "pf-t--global--spacer--3xl": { + "description": "Use for triple extra large spaces between elements.", + "type": "number", + "value": "64px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for triple extra large spaces between elements.", + "type": "number", + "value": "{global.spacer.700}" + }, + "name": "pf-t--global--spacer--3xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "3xl" + }, + "path": [ + "global", + "spacer", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "64px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 64 + }, + "name": "pf-t--global--spacer--700", + "attributes": { + "category": "global", + "type": "spacer", + "item": "700" + }, + "path": [ + "global", + "spacer", + "700" + ] + } + ] + }, + "pf-t--global--spacer--4xl": { + "description": "Use for quadruple extra large spaces between elements.", + "type": "number", + "value": "80px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for quadruple extra large spaces between elements.", + "type": "number", + "value": "{global.spacer.800}" + }, + "name": "pf-t--global--spacer--4xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "4xl" + }, + "path": [ + "global", + "spacer", + "4xl" + ], + "references": [ + { + "type": "number", + "value": "80px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 80 + }, + "name": "pf-t--global--spacer--800", + "attributes": { + "category": "global", + "type": "spacer", + "item": "800" + }, + "path": [ + "global", + "spacer", + "800" + ] + } + ] + }, + "pf-t--global--spacer--control--vertical--default": { + "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--vertical--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "default" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "default" + ], + "references": [ + { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--vertical--compact": { + "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", + "type": "number", + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--control--vertical--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "compact" + ], + "references": [ + { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--vertical--plain": { + "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--vertical--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "plain" + ], + "references": [ + { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--horizontal--default": { + "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--control--horizontal--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "default" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "default" + ], + "references": [ + { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--horizontal--plain": { + "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--horizontal--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "plain" + ], + "references": [ + { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--horizontal--compact": { + "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--horizontal--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "compact" + ], + "references": [ + { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--control--horizontal--spacious": { + "description": "Use to set the horizontal padding in large/display controls.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding in large/display controls.", + "type": "number", + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--control--horizontal--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "spacious" + ], + "references": [ + { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--text-to-element--default": { + "description": "Use to space an element, like an icon or badge, inline with text", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to space an element, like an icon or badge, inline with text", + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--gap--text-to-element--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "text-to-element", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "text-to-element", + "default" + ], + "references": [ + { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--control-to-control--default": { + "description": "Use to set the space between controls, like in input groups or filter groups", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the space between controls, like in input groups or filter groups", + "type": "number", + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--gap--control-to-control--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "control-to-control", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "control-to-control", + "default" + ], + "references": [ + { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--group--vertical": { + "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", + "type": "number", + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--gap--group--vertical", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group", + "state": "vertical" + }, + "path": [ + "global", + "spacer", + "gap", + "group", + "vertical" + ], + "references": [ + { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--group--horizontal": { + "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--gap--group--horizontal", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group", + "state": "horizontal" + }, + "path": [ + "global", + "spacer", + "gap", + "group", + "horizontal" + ], + "references": [ + { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--group-to-group--horizontal": { + "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", + "type": "number", + "value": "48px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", + "type": "number", + "value": "{global.spacer.2xl}" + }, + "name": "pf-t--global--spacer--gap--group-to-group--horizontal", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group-to-group", + "state": "horizontal" + }, + "path": [ + "global", + "spacer", + "gap", + "group-to-group", + "horizontal" + ], + "references": [ + { + "description": "Use for double extra large spaces spacing between elements.", + "type": "number", + "value": "48px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for double extra large spaces spacing between elements.", + "type": "number", + "value": "{global.spacer.600}" + }, + "name": "pf-t--global--spacer--2xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "2xl" + }, + "path": [ + "global", + "spacer", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "48px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--group-to-group--vertical": { + "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", + "type": "number", + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--gap--group-to-group--vertical", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group-to-group", + "state": "vertical" + }, + "path": [ + "global", + "spacer", + "gap", + "group-to-group", + "vertical" + ], + "references": [ + { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--action-to-action--default": { + "description": "Use to set the space between actions, like in an action list group.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the space between actions, like in an action list group.", + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--gap--action-to-action--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "action-to-action", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "action-to-action", + "default" + ], + "references": [ + { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--gap--action-to-action--plain": { + "description": "Use to set the space between plain actions, like in an action list group.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the space between plain actions, like in an action list group.", + "type": "number", + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--gap--action-to-action--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "action-to-action", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "gap", + "action-to-action", + "plain" + ], + "references": [ + { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--horizontal--default": { + "description": "Use to set the horizontal padding inside a default action, like buttons.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding inside a default action, like buttons.", + "type": "number", + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--action--horizontal--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "default" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "default" + ], + "references": [ + { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for large spaces between elements.", + "type": "number", + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--horizontal--plain": { + "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", + "type": "number", + "value": "8px", + "compact": { + "description": "Use to set the horizontal padding inside a compact, plain action/button.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true + }, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", + "type": "number", + "value": "{global.spacer.sm}", + "compact": { + "description": "Use to set the horizontal padding inside a compact, plain action/button.", + "type": "number", + "value": "{global.spacer.xs}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true + } + }, + "name": "pf-t--global--spacer--action--horizontal--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "plain" + ], + "references": [ + { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small spaces between elements.", + "type": "number", + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--horizontal--compact": { + "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--action--horizontal--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "compact" + ], + "references": [ + { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--horizontal--spacious": { + "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", + "type": "number", + "value": "32px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", + "type": "number", + "value": "{global.spacer.xl}" + }, + "name": "pf-t--global--spacer--action--horizontal--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "spacious" + ], + "references": [ + { + "description": "Use for extra large spaces between elements.", + "type": "number", + "value": "32px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra large spaces between elements.", + "type": "number", + "value": "{global.spacer.500}" + }, + "name": "pf-t--global--spacer--xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xl" + }, + "path": [ + "global", + "spacer", + "xl" + ], + "references": [ + { + "type": "number", + "value": "32px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--vertical--compact": { + "description": "Use to set the vertical padding inside a compact action, like compact buttons.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the vertical padding inside a compact action, like compact buttons.", + "type": "number", + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--action--vertical--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "vertical", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "action", + "vertical", + "compact" + ], + "references": [ + { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra small spaces between elements.", + "type": "number", + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--spacer--action--vertical--spacious": { + "description": "Use to set the vertical padding inside a large/display action, like CTAs.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the vertical padding inside a large/display action, like CTAs.", + "type": "number", + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--action--vertical--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "vertical", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "action", + "vertical", + "spacious" + ], + "references": [ + { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for medium-sized spaces between elements.", + "type": "number", + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--sm": { + "description": "Use for small icons.", + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small icons.", + "type": "number", + "value": "{global.icon.size.100}" + }, + "name": "pf-t--global--icon--size--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "icon", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--icon--size--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "size", + "100" + ] + } + ] + }, + "pf-t--global--icon--size--md": { + "description": "Use for medium icons.", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for medium icons.", + "type": "number", + "value": "{global.icon.size.200}" + }, + "name": "pf-t--global--icon--size--md", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "icon", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--icon--size--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "size", + "200" + ] + } + ] + }, + "pf-t--global--icon--size--lg": { + "description": "Use for large icons.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for large icons.", + "type": "number", + "value": "{global.icon.size.250}" + }, + "name": "pf-t--global--icon--size--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "icon", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--icon--size--250", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "250" + }, + "path": [ + "global", + "icon", + "size", + "250" + ] + } + ] + }, + "pf-t--global--icon--size--xl": { + "description": "Use for extra large icons.", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra large icons.", + "type": "number", + "value": "{global.icon.size.300}" + }, + "name": "pf-t--global--icon--size--xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "icon", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--icon--size--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "size", + "300" + ] + } + ] + }, + "pf-t--global--icon--size--2xl": { + "description": "Use for double extra large icons.", + "type": "number", + "value": "56px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for double extra large icons.", + "type": "number", + "value": "{global.icon.size.400}" + }, + "name": "pf-t--global--icon--size--2xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "icon", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "56px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 56 + }, + "name": "pf-t--global--icon--size--400", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "icon", + "size", + "400" + ] + } + ] + }, + "pf-t--global--icon--size--3xl": { + "description": "Use for triple extra large icons.", + "type": "number", + "value": "96px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for triple extra large icons.", + "type": "number", + "value": "{global.icon.size.500}" + }, + "name": "pf-t--global--icon--size--3xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "icon", + "size", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "96px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 96 + }, + "name": "pf-t--global--icon--size--500", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "icon", + "size", + "500" + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h1": { + "description": "Use for icons that are placed inline with first level headings", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with first level headings", + "type": "number", + "value": "{global.font.size.heading.h1}" + }, + "name": "pf-t--global--icon--size--font--heading--h1", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h1" + ], + "references": [ + { + "description": "Use as the font size for first level headings.", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for first level headings.", + "type": "number", + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--font--size--heading--h1", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h1" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h1" + ], + "references": [ + { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h2": { + "description": "Use for icons that are placed inline with second level headings", + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with second level headings", + "type": "number", + "value": "{global.font.size.heading.h2}" + }, + "name": "pf-t--global--icon--size--font--heading--h2", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h2" + ], + "references": [ + { + "description": "Use as the font size for second level headings.", + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for second level headings.", + "type": "number", + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--font--size--heading--h2", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h2" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h2" + ], + "references": [ + { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h3": { + "description": "Use for icons that are placed inline with third level headings", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with third level headings", + "type": "number", + "value": "{global.font.size.heading.h3}" + }, + "name": "pf-t--global--icon--size--font--heading--h3", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h3" + ], + "references": [ + { + "description": "Use as the font size for third level headings.", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for third level headings.", + "type": "number", + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--font--size--heading--h3", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h3" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h3" + ], + "references": [ + { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h4": { + "description": "Use for icons that are placed inline with fourth level headings", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with fourth level headings", + "type": "number", + "value": "{global.font.size.heading.h4}" + }, + "name": "pf-t--global--icon--size--font--heading--h4", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h4" + ], + "references": [ + { + "description": "Use as the font size for fourth-level headings.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for fourth-level headings.", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h4", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h4" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h4" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h5": { + "description": "Use for icons that are placed inline with fifth level headings", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with fifth level headings", + "type": "number", + "value": "{global.font.size.heading.h5}" + }, + "name": "pf-t--global--icon--size--font--heading--h5", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h5" + ], + "references": [ + { + "description": "Use as the font size for fifth level headings.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for fifth level headings.", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h5", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h5" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h5" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--heading--h6": { + "description": "Use for icons that are placed inline with sixth level headings", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with sixth level headings", + "type": "number", + "value": "{global.font.size.heading.h6}" + }, + "name": "pf-t--global--icon--size--font--heading--h6", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h6" + ], + "references": [ + { + "description": "Use as the font size for sixth level headings.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for sixth level headings.", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h6", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h6" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h6" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--body--sm": { + "description": "Use for icons that are placed inline with small body text", + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with small body text", + "type": "number", + "value": "{global.font.size.body.sm}" + }, + "name": "pf-t--global--icon--size--font--body--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "sm" + ], + "references": [ + { + "description": "Use for a smaller font size in body sections.", + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for a smaller font size in body sections.", + "type": "number", + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--font--size--body--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "sm" + }, + "path": [ + "global", + "font", + "size", + "body", + "sm" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--body--default": { + "description": "Use for icons that are placed inline with default body text", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with default body text", + "type": "number", + "value": "{global.font.size.body.default}" + }, + "name": "pf-t--global--icon--size--font--body--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "default" + ], + "references": [ + { + "description": "Use as the default font size in body sections.", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the default font size in body sections.", + "type": "number", + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--font--size--body--default", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "default" + }, + "path": [ + "global", + "font", + "size", + "body", + "default" + ], + "references": [ + { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--body--lg": { + "description": "Use for icons that are placed inline with large body text", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with large body text", + "type": "number", + "value": "{global.font.size.body.lg}" + }, + "name": "pf-t--global--icon--size--font--body--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "lg" + ], + "references": [ + { + "description": "Use for a larger font size in body sections.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for a larger font size in body sections.", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--body--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "lg" + }, + "path": [ + "global", + "font", + "size", + "body", + "lg" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--xs": { + "description": "Use for icons that are placed inline with font–size–xs text", + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with font–size–xs text", + "type": "number", + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--icon--size--font--xs", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "xs" + }, + "path": [ + "global", + "icon", + "size", + "font", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--sm": { + "description": "Use for icons that are placed inline with font–size–sm text", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with font–size–sm text", + "type": "number", + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--icon--size--font--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "sm" + }, + "path": [ + "global", + "icon", + "size", + "font", + "sm" + ], + "references": [ + { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--md": { + "description": "Use for icons that are placed inline with font–size–md text", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with font–size–md text", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--icon--size--font--md", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "md" + }, + "path": [ + "global", + "icon", + "size", + "font", + "md" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--lg": { + "description": "Use for icons that are placed inline with font–size–lg text", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with font–size–lg text", + "type": "number", + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--icon--size--font--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "lg" + }, + "path": [ + "global", + "icon", + "size", + "font", + "lg" + ], + "references": [ + { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--xl": { + "description": "Use for icons that are placed inline with font–size–xl text", + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with font–size–xl text", + "type": "number", + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--icon--size--font--xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "xl" + ], + "references": [ + { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--2xl": { + "description": "Use for icons that are placed inline with font–size–2xl text", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with font–size–2xl text", + "type": "number", + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--icon--size--font--2xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "2xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "2xl" + ], + "references": [ + { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--3xl": { + "description": "Use for icons that are placed inline with font–size–3xl text", + "type": "number", + "value": "28px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with font–size–3xl text", + "type": "number", + "value": "{global.font.size.3xl}" + }, + "name": "pf-t--global--icon--size--font--3xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "3xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "3xl" + ], + "references": [ + { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "28px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.700}" + }, + "name": "pf-t--global--font--size--3xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "font", + "size", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "28px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + } + ] + } + ] + }, + "pf-t--global--icon--size--font--4xl": { + "description": "Use for icons that are placed inline with font–size–3xl text", + "type": "number", + "value": "36px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with font–size–3xl text", + "type": "number", + "value": "{global.font.size.4xl}" + }, + "name": "pf-t--global--icon--size--font--4xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "4xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "4xl" + ], + "references": [ + { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "36px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.800}" + }, + "name": "pf-t--global--font--size--4xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "4xl" + }, + "path": [ + "global", + "font", + "size", + "4xl" + ], + "references": [ + { + "type": "number", + "value": "36px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + } + ] + } + ] + }, + "pf-t--global--border--width--regular": { + "description": "Use as the default border width for elements.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the default border width for elements.", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--regular", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "regular" + }, + "path": [ + "global", + "border", + "width", + "regular" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--divider--default": { + "description": "Use as the default border width for dividers.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the default border width for dividers.", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "divider", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--divider--hover": { + "description": "Use as the border width hover state for dividers.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the border width hover state for dividers.", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "divider", + "hover" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--divider--clicked": { + "description": "Use as the border width clicked state for dividers.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the border width clicked state for dividers.", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "divider", + "clicked" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--strong": { + "description": "Use as a stronger/wider border width for elements.", + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as a stronger/wider border width for elements.", + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--strong", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "strong" + }, + "path": [ + "global", + "border", + "width", + "strong" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--extra-strong": { + "description": "Use as the strongest/widest border width for elements.", + "type": "number", + "value": "3px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the strongest/widest border width for elements.", + "type": "number", + "value": "{global.border.width.300}" + }, + "name": "pf-t--global--border--width--extra-strong", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "extra-strong" + }, + "path": [ + "global", + "border", + "width", + "extra-strong" + ], + "references": [ + { + "type": "number", + "value": "3px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 3 + }, + "name": "pf-t--global--border--width--300", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "300" + }, + "path": [ + "global", + "border", + "width", + "300" + ] + } + ] + }, + "pf-t--global--border--width--box--default": { + "description": "Use as the default border width for containers like cards, panels, code editors, etc.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the default border width for containers like cards, panels, code editors, etc.", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "box", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--box--hover": { + "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "box", + "hover" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--box--clicked": { + "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--box--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "box", + "clicked" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--box--status--default": { + "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--box--status--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "status" + }, + "path": [ + "global", + "border", + "width", + "box", + "status", + "default" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--box--status--read": { + "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--status--read", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "status" + }, + "path": [ + "global", + "border", + "width", + "box", + "status", + "read" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--action--default": { + "description": "Use as the default border width for actions like secondary and tertiary buttons", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the default border width for actions like secondary and tertiary buttons", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--action--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "action", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "action", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--action--hover": { + "description": "Use as the hover state border width for actions like secondary and tertiary buttons", + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the hover state border width for actions like secondary and tertiary buttons", + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--action--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "action", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "action", + "hover" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--action--clicked": { + "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--action--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "action", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "action", + "clicked" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--width--control--default": { + "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--control--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "control", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--control--hover": { + "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", + "type": "number", + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--control--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "control", + "hover" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + }, + "pf-t--global--border--width--control--clicked": { + "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", + "type": "number", + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", + "type": "number", + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--control--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "control", + "clicked" + ], + "references": [ + { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + }, + "pf-t--global--border--radius--sharp": { + "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", + "type": "number", + "value": "{global.border.radius.0}" + }, + "name": "pf-t--global--border--radius--sharp", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "sharp" + }, + "path": [ + "global", + "border", + "radius", + "sharp" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--border--radius--0", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "0" + }, + "path": [ + "global", + "border", + "radius", + "0" + ] + } + ] + }, + "pf-t--global--border--radius--tiny": { + "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", + "type": "number", + "value": "{global.border.radius.100}" + }, + "name": "pf-t--global--border--radius--tiny", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "tiny" + }, + "path": [ + "global", + "border", + "radius", + "tiny" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--border--radius--100", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "100" + }, + "path": [ + "global", + "border", + "radius", + "100" + ] + } + ] + }, + "pf-t--global--border--radius--small": { + "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", + "type": "number", + "value": "6px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", + "type": "number", + "value": "{global.border.radius.200}" + }, + "name": "pf-t--global--border--radius--small", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "small" + }, + "path": [ + "global", + "border", + "radius", + "small" + ], + "references": [ + { + "type": "number", + "value": "6px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 6 + }, + "name": "pf-t--global--border--radius--200", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "200" + }, + "path": [ + "global", + "border", + "radius", + "200" + ] + } + ] + }, + "pf-t--global--border--radius--medium": { + "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", + "type": "number", + "value": "{global.border.radius.300}" + }, + "name": "pf-t--global--border--radius--medium", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "medium" + }, + "path": [ + "global", + "border", + "radius", + "medium" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--border--radius--300", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "300" + }, + "path": [ + "global", + "border", + "radius", + "300" + ] + } + ] + }, + "pf-t--global--border--radius--large": { + "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", + "type": "number", + "value": "{global.border.radius.400}" + }, + "name": "pf-t--global--border--radius--large", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "large" + }, + "path": [ + "global", + "border", + "radius", + "large" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--border--radius--400", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "400" + }, + "path": [ + "global", + "border", + "radius", + "400" + ] + } + ] + }, + "pf-t--global--border--radius--pill": { + "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", + "type": "number", + "value": "999px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", + "type": "number", + "value": "{global.border.radius.500}" + }, + "name": "pf-t--global--border--radius--pill", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "pill" + }, + "path": [ + "global", + "border", + "radius", + "pill" + ], + "references": [ + { + "type": "number", + "value": "999px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 999 + }, + "name": "pf-t--global--border--radius--500", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "500" + }, + "path": [ + "global", + "border", + "radius", + "500" + ] + } + ] + }, + "pf-t--global--font--family--body": { + "description": "Use to define the font family for body text", + "type": "number", + "value": "Red Hat Text VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the font family for body text", + "type": "number", + "value": "{global.font.family.100}" + }, + "name": "pf-t--global--font--family--body", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "body" + }, + "path": [ + "global", + "font", + "family", + "body" + ], + "references": [ + { + "type": "string", + "value": "Red Hat Text VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Text VF" + }, + "name": "pf-t--global--font--family--100", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "100" + }, + "path": [ + "global", + "font", + "family", + "100" + ] + } + ] + }, + "pf-t--global--font--family--heading": { + "description": "Use to define the font family for heading text", + "type": "number", + "value": "Red Hat Display VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the font family for heading text", + "type": "number", + "value": "{global.font.family.200}" + }, + "name": "pf-t--global--font--family--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "family", + "heading" + ], + "references": [ + { + "type": "string", + "value": "Red Hat Display VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Display VF" + }, + "name": "pf-t--global--font--family--200", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "200" + }, + "path": [ + "global", + "font", + "family", + "200" + ] + } + ] + }, + "pf-t--global--font--family--mono": { + "description": "Use to define the font family for mono text", + "type": "number", + "value": "Red Hat Mono VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the font family for mono text", + "type": "number", + "value": "{global.font.family.300}" + }, + "name": "pf-t--global--font--family--mono", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "mono" + }, + "path": [ + "global", + "font", + "family", + "mono" + ], + "references": [ + { + "type": "string", + "value": "Red Hat Mono VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Mono VF" + }, + "name": "pf-t--global--font--family--300", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "300" + }, + "path": [ + "global", + "font", + "family", + "300" + ] + } + ] + }, + "pf-t--global--font--weight--body": { + "description": "Use to define the default weight for body text", + "type": "number", + "value": 400, + "bold": { + "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", + "type": "number", + "value": 500, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true + }, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the default weight for body text", + "type": "number", + "value": "{global.font.weight.100}", + "bold": { + "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", + "type": "number", + "value": "{global.font.weight.200}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true + } + }, + "name": "pf-t--global--font--weight--body", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "body" + }, + "path": [ + "global", + "font", + "weight", + "body" + ], + "references": [ + { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--font--weight--100", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "100" + }, + "path": [ + "global", + "font", + "weight", + "100" + ] + } + ] + }, + "pf-t--global--font--weight--heading": { + "description": "Use to define the default weight for heading text", + "type": "number", + "value": 700, + "bold": { + "description": "Use to define the bold weight for heading text, often used to add emphasis.", + "type": "number", + "value": 700, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true + }, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the default weight for heading text", + "type": "number", + "value": "{global.font.weight.300}", + "bold": { + "description": "Use to define the bold weight for heading text, often used to add emphasis.", + "type": "number", + "value": "{global.font.weight.400}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true + } + }, + "name": "pf-t--global--font--weight--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "weight", + "heading" + ], + "references": [ + { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 700 + }, + "name": "pf-t--global--font--weight--300", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "300" + }, + "path": [ + "global", + "font", + "weight", + "300" + ] + } + ] + }, + "pf-t--global--font--line-height--body": { + "description": "Use to define the line height for body text", + "type": "number", + "value": 1.2999999523162842, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the line height for body text", + "type": "number", + "value": "{global.font.line-height.100}" + }, + "name": "pf-t--global--font--line-height--body", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "body" + }, + "path": [ + "global", + "font", + "line-height", + "body" + ], + "references": [ + { + "type": "number", + "value": 1.2999999523162842, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1.2999999523162842 + }, + "name": "pf-t--global--font--line-height--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "100" + }, + "path": [ + "global", + "font", + "line-height", + "100" + ] + } + ] + }, + "pf-t--global--font--line-height--heading": { + "description": "Use to define the line height for heading text", + "type": "number", + "value": 1.5, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the line height for heading text", + "type": "number", + "value": "{global.font.line-height.200}" + }, + "name": "pf-t--global--font--line-height--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "heading" + ], + "references": [ + { + "type": "number", + "value": 1.5, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1.5 + }, + "name": "pf-t--global--font--line-height--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "200" + }, + "path": [ + "global", + "font", + "line-height", + "200" + ] + } + ] + }, + "pf-t--global--font--size--body--sm": { + "description": "Use for a smaller font size in body sections.", + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for a smaller font size in body sections.", + "type": "number", + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--font--size--body--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "sm" + }, + "path": [ + "global", + "font", + "size", + "body", + "sm" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--body--default": { + "description": "Use as the default font size in body sections.", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the default font size in body sections.", + "type": "number", + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--font--size--body--default", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "default" + }, + "path": [ + "global", + "font", + "size", + "body", + "default" + ], + "references": [ + { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--body--lg": { + "description": "Use for a larger font size in body sections.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for a larger font size in body sections.", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--body--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "lg" + }, + "path": [ + "global", + "font", + "size", + "body", + "lg" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h1": { + "description": "Use as the font size for first level headings.", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for first level headings.", + "type": "number", + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--font--size--heading--h1", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h1" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h1" + ], + "references": [ + { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h2": { + "description": "Use as the font size for second level headings.", + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for second level headings.", + "type": "number", + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--font--size--heading--h2", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h2" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h2" + ], + "references": [ + { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h3": { + "description": "Use as the font size for third level headings.", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for third level headings.", + "type": "number", + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--font--size--heading--h3", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h3" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h3" + ], + "references": [ + { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h4": { + "description": "Use as the font size for fourth-level headings.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for fourth-level headings.", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h4", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h4" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h4" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h5": { + "description": "Use as the font size for fifth level headings.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for fifth level headings.", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h5", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h5" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h5" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--heading--h6": { + "description": "Use as the font size for sixth level headings.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for sixth level headings.", + "type": "number", + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h6", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h6" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h6" + ], + "references": [ + { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--font--size--xs": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + }, + "pf-t--global--font--size--sm": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "type": "number", + "value": "14px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + }, + "pf-t--global--font--size--md": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + }, + "pf-t--global--font--size--lg": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "18px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + }, + "pf-t--global--font--size--xl": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "20px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + }, + "pf-t--global--font--size--2xl": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "22px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + }, + "pf-t--global--font--size--3xl": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "28px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.700}" + }, + "name": "pf-t--global--font--size--3xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "font", + "size", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "28px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + } + ] + }, + "pf-t--global--font--size--4xl": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "36px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", + "type": "number", + "value": "{global.font.size.800}" + }, + "name": "pf-t--global--font--size--4xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "4xl" + }, + "path": [ + "global", + "font", + "size", + "4xl" + ], + "references": [ + { + "type": "number", + "value": "36px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + } + ] + }, + "pf-t--global--z-index--xs": { + "type": "number", + "value": 100, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.z-index.100}" + }, + "name": "pf-t--global--z-index--xs", + "attributes": { + "category": "global", + "type": "z-index", + "item": "xs" + }, + "path": [ + "global", + "z-index", + "xs" + ], + "references": [ + { + "type": "number", + "value": 100, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--z-index--100", + "attributes": { + "category": "global", + "type": "z-index", + "item": "100" + }, + "path": [ + "global", + "z-index", + "100" + ] + } + ] + }, + "pf-t--global--z-index--sm": { + "type": "number", + "value": 200, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.z-index.200}" + }, + "name": "pf-t--global--z-index--sm", + "attributes": { + "category": "global", + "type": "z-index", + "item": "sm" + }, + "path": [ + "global", + "z-index", + "sm" + ], + "references": [ + { + "type": "number", + "value": 200, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--z-index--200", + "attributes": { + "category": "global", + "type": "z-index", + "item": "200" + }, + "path": [ + "global", + "z-index", + "200" + ] + } + ] + }, + "pf-t--global--z-index--md": { + "type": "number", + "value": 300, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.z-index.300}" + }, + "name": "pf-t--global--z-index--md", + "attributes": { + "category": "global", + "type": "z-index", + "item": "md" + }, + "path": [ + "global", + "z-index", + "md" + ], + "references": [ + { + "type": "number", + "value": 300, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--z-index--300", + "attributes": { + "category": "global", + "type": "z-index", + "item": "300" + }, + "path": [ + "global", + "z-index", + "300" + ] + } + ] + }, + "pf-t--global--z-index--lg": { + "type": "number", + "value": 400, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.z-index.400}" + }, + "name": "pf-t--global--z-index--lg", + "attributes": { + "category": "global", + "type": "z-index", + "item": "lg" + }, + "path": [ + "global", + "z-index", + "lg" + ], + "references": [ + { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--z-index--400", + "attributes": { + "category": "global", + "type": "z-index", + "item": "400" + }, + "path": [ + "global", + "z-index", + "400" + ] + } + ] + }, + "pf-t--global--z-index--xl": { + "type": "number", + "value": 500, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.z-index.500}" + }, + "name": "pf-t--global--z-index--xl", + "attributes": { + "category": "global", + "type": "z-index", + "item": "xl" + }, + "path": [ + "global", + "z-index", + "xl" + ], + "references": [ + { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--z-index--500", + "attributes": { + "category": "global", + "type": "z-index", + "item": "500" + }, + "path": [ + "global", + "z-index", + "500" + ] + } + ] + }, + "pf-t--global--z-index--2xl": { + "type": "number", + "value": 600, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": "{global.z-index.600}" + }, + "name": "pf-t--global--z-index--2xl", + "attributes": { + "category": "global", + "type": "z-index", + "item": "2xl" + }, + "path": [ + "global", + "z-index", + "2xl" + ], + "references": [ + { + "type": "number", + "value": 600, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--z-index--600", + "attributes": { + "category": "global", + "type": "z-index", + "item": "600" + }, + "path": [ + "global", + "z-index", + "600" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--default": { + "description": "Use to define the X value for a default small box-shadow, like in sticky sections", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a default small box-shadow, like in sticky sections", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "default" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--top": { + "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "top" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--bottom": { + "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--left": { + "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", + "type": "number", + "value": "-1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", + "type": "number", + "value": "{global.box-shadow.X.300}" + }, + "name": "pf-t--global--box-shadow--X--sm--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "left" + ], + "references": [ + { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--X--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "X", + "300" + ] + } + ] + }, + "pf-t--global--box-shadow--X--sm--right": { + "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", + "type": "number", + "value": "{global.box-shadow.X.500}" + }, + "name": "pf-t--global--box-shadow--X--sm--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "right" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--X--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "X", + "500" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--default": { + "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "default" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--top": { + "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "top" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--bottom": { + "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--left": { + "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", + "type": "number", + "value": "-4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", + "type": "number", + "value": "{global.box-shadow.X.200}" + }, + "name": "pf-t--global--box-shadow--X--md--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "left" + ], + "references": [ + { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--X--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "X", + "200" + ] + } + ] + }, + "pf-t--global--box-shadow--X--md--right": { + "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", + "type": "number", + "value": "{global.box-shadow.X.600}" + }, + "name": "pf-t--global--box-shadow--X--md--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "right" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--X--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "X", + "600" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--default": { + "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "default" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--top": { + "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "top" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--bottom": { + "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", + "type": "number", + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--left": { + "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", + "type": "number", + "value": "-8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", + "type": "number", + "value": "{global.box-shadow.X.100}" + }, + "name": "pf-t--global--box-shadow--X--lg--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "left" + ], + "references": [ + { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--X--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "X", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--X--lg--right": { + "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", + "type": "number", + "value": "{global.box-shadow.X.700}" + }, + "name": "pf-t--global--box-shadow--X--lg--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "right" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--X--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "X", + "700" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--default": { + "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", + "type": "number", + "value": "{global.box-shadow.Y.500}" + }, + "name": "pf-t--global--box-shadow--Y--sm--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "default" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--top": { + "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", + "type": "number", + "value": "-1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", + "type": "number", + "value": "{global.box-shadow.Y.300}" + }, + "name": "pf-t--global--box-shadow--Y--sm--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "top" + ], + "references": [ + { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--Y--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "Y", + "300" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--bottom": { + "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", + "type": "number", + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", + "type": "number", + "value": "{global.box-shadow.Y.500}" + }, + "name": "pf-t--global--box-shadow--Y--sm--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--left": { + "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--sm--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "left" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--sm--right": { + "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--sm--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "right" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--default": { + "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", + "type": "number", + "value": "{global.box-shadow.Y.600}" + }, + "name": "pf-t--global--box-shadow--Y--md--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "default" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--top": { + "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", + "type": "number", + "value": "-4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", + "type": "number", + "value": "{global.box-shadow.Y.200}" + }, + "name": "pf-t--global--box-shadow--Y--md--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "top" + ], + "references": [ + { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--Y--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "Y", + "200" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--bottom": { + "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", + "type": "number", + "value": "{global.box-shadow.Y.600}" + }, + "name": "pf-t--global--box-shadow--Y--md--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--left": { + "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--md--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "left" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--md--right": { + "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--md--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "right" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--default": { + "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", + "type": "number", + "value": "{global.box-shadow.Y.700}" + }, + "name": "pf-t--global--box-shadow--Y--lg--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "default" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--top": { + "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", + "type": "number", + "value": "-8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", + "type": "number", + "value": "{global.box-shadow.Y.100}" + }, + "name": "pf-t--global--box-shadow--Y--lg--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "top" + ], + "references": [ + { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--Y--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "Y", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--bottom": { + "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", + "type": "number", + "value": "{global.box-shadow.Y.700}" + }, + "name": "pf-t--global--box-shadow--Y--lg--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "bottom" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--left": { + "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--lg--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "left" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--Y--lg--right": { + "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", + "type": "number", + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--lg--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "right" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + }, + "pf-t--global--box-shadow--blur--sm": { + "description": "Use to define the blur for a small box-shadow", + "type": "number", + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the blur for a small box-shadow", + "type": "number", + "value": "{global.box-shadow.blur.100}" + }, + "name": "pf-t--global--box-shadow--blur--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "blur", + "sm" + ], + "references": [ + { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--blur--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "blur", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--blur--md": { + "description": "Use to define the blur for a medium box-shadow", + "type": "number", + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the blur for a medium box-shadow", + "type": "number", + "value": "{global.box-shadow.blur.200}" + }, + "name": "pf-t--global--box-shadow--blur--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "blur", + "md" + ], + "references": [ + { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--blur--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "blur", + "200" + ] + } + ] + }, + "pf-t--global--box-shadow--blur--lg": { + "description": "Use to define the blue for a large box-shadow", + "type": "number", + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the blue for a large box-shadow", + "type": "number", + "value": "{global.box-shadow.blur.300}" + }, + "name": "pf-t--global--box-shadow--blur--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "blur", + "lg" + ], + "references": [ + { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--box-shadow--blur--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "blur", + "300" + ] + } + ] + }, + "pf-t--global--box-shadow--spread--sm": { + "description": "Use to define the spread for a small box-shadow", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the spread for a small box-shadow", + "type": "number", + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "spread", + "sm" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--spread--md": { + "description": "Use to define the spread of a medium box-shadow", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the spread of a medium box-shadow", + "type": "number", + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "spread", + "md" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + }, + "pf-t--global--box-shadow--spread--lg": { + "description": "Use to define the spread of a large box-shadow", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the spread of a large box-shadow", + "type": "number", + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "spread", + "lg" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + }, + "pf-t--global--breakpoint--xs": { + "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.100}" + }, + "name": "pf-t--global--breakpoint--xs", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "xs" + }, + "path": [ + "global", + "breakpoint", + "xs" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + } + ] + }, + "pf-t--global--breakpoint--sm": { + "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "576px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.200}" + }, + "name": "pf-t--global--breakpoint--sm", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "sm" + }, + "path": [ + "global", + "breakpoint", + "sm" + ], + "references": [ + { + "type": "number", + "value": "576px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 576 + }, + "name": "pf-t--global--breakpoint--200", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "200" + }, + "path": [ + "global", + "breakpoint", + "200" + ] + } + ] + }, + "pf-t--global--breakpoint--md": { + "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "768px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.300}" + }, + "name": "pf-t--global--breakpoint--md", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "md" + }, + "path": [ + "global", + "breakpoint", + "md" + ], + "references": [ + { + "type": "number", + "value": "768px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + } + ] + }, + "pf-t--global--breakpoint--lg": { + "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "992px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.400}" + }, + "name": "pf-t--global--breakpoint--lg", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "lg" + }, + "path": [ + "global", + "breakpoint", + "lg" + ], + "references": [ + { + "type": "number", + "value": "992px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 992 + }, + "name": "pf-t--global--breakpoint--400", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "400" + }, + "path": [ + "global", + "breakpoint", + "400" + ] + } + ] + }, + "pf-t--global--breakpoint--xl": { + "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "1200px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.500}" + }, + "name": "pf-t--global--breakpoint--xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "xl" + }, + "path": [ + "global", + "breakpoint", + "xl" + ], + "references": [ + { + "type": "number", + "value": "1200px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1200 + }, + "name": "pf-t--global--breakpoint--500", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "500" + }, + "path": [ + "global", + "breakpoint", + "500" + ] + } + ] + }, + "pf-t--global--breakpoint--2xl": { + "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "1450px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.600}" + }, + "name": "pf-t--global--breakpoint--2xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "2xl" + }, + "path": [ + "global", + "breakpoint", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "1450px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1450 + }, + "name": "pf-t--global--breakpoint--600", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "600" + }, + "path": [ + "global", + "breakpoint", + "600" + ] + } + ] + }, + "pf-t--global--breakpoint--height--sm": { + "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.100}" + }, + "name": "pf-t--global--breakpoint--height--sm", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "sm" + }, + "path": [ + "global", + "breakpoint", + "height", + "sm" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + } + ] + }, + "pf-t--global--breakpoint--height--md": { + "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "640px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.250}" + }, + "name": "pf-t--global--breakpoint--height--md", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "md" + }, + "path": [ + "global", + "breakpoint", + "height", + "md" + ], + "references": [ + { + "type": "number", + "value": "640px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 640 + }, + "name": "pf-t--global--breakpoint--250", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "250" + }, + "path": [ + "global", + "breakpoint", + "250" + ] + } + ] + }, + "pf-t--global--breakpoint--height--lg": { + "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "768px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.300}" + }, + "name": "pf-t--global--breakpoint--height--lg", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "lg" + }, + "path": [ + "global", + "breakpoint", + "height", + "lg" + ], + "references": [ + { + "type": "number", + "value": "768px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + } + ] + }, + "pf-t--global--breakpoint--height--xl": { + "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "960px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.350}" + }, + "name": "pf-t--global--breakpoint--height--xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "xl" + }, + "path": [ + "global", + "breakpoint", + "height", + "xl" + ], + "references": [ + { + "type": "number", + "value": "960px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 960 + }, + "name": "pf-t--global--breakpoint--350", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "350" + }, + "path": [ + "global", + "breakpoint", + "350" + ] + } + ] + }, + "pf-t--global--breakpoint--height--2xl": { + "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "1280px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "{global.breakpoint.550}" + }, + "name": "pf-t--global--breakpoint--height--2xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "2xl" + }, + "path": [ + "global", + "breakpoint", + "height", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "1280px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1280 + }, + "name": "pf-t--global--breakpoint--550", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "550" + }, + "path": [ + "global", + "breakpoint", + "550" + ] + } + ] + } + }, + "motion": { + "pf-t--global--motion--duration--xs": { + "description": "Use for the quickest possible duration of an animation.", + "type": "number", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for the quickest possible duration of an animation.", + "type": "number", + "value": "{global.duration.50}" + }, + "name": "pf-t--global--motion--duration--xs", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xs" + }, + "path": [ + "global", + "motion", + "duration", + "xs" + ], + "references": [ + { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + } + ] + }, + "pf-t--global--motion--duration--sm": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", + "type": "number", + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + }, + "pf-t--global--motion--duration--md": { + "description": "Use for a medium animation duration.", + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a medium animation duration.", + "type": "number", + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + }, + "pf-t--global--motion--duration--lg": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", + "type": "number", + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + }, + "pf-t--global--motion--duration--xl": { + "description": "Use for extra long animation duration.", + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for extra long animation duration.", + "type": "number", + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + }, + "pf-t--global--motion--duration--2xl": { + "description": "Use for significantly long animation duration.", + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for significantly long animation duration.", + "type": "number", + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + }, + "pf-t--global--motion--duration--3xl": { + "description": "Use for the longest possible duration of an animation.", + "type": "number", + "value": "600ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for the longest possible duration of an animation.", + "type": "number", + "value": "{global.duration.600}" + }, + "name": "pf-t--global--motion--duration--3xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "3xl" + }, + "path": [ + "global", + "motion", + "duration", + "3xl" + ], + "references": [ + { + "type": "number", + "value": "600ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--duration--600", + "attributes": { + "category": "global", + "type": "duration", + "item": "600" + }, + "path": [ + "global", + "duration", + "600" + ] + } + ] + }, + "pf-t--global--motion--duration--fade--short": { + "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", + "type": "number", + "value": "{global.motion.duration.sm}" + }, + "name": "pf-t--global--motion--duration--fade--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "short" + ], + "references": [ + { + "description": "Use for a short animation duration. Use for simple and/or small animations.", + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", + "type": "number", + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--fade--default": { + "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", + "type": "number", + "value": "{global.motion.duration.md}" + }, + "name": "pf-t--global--motion--duration--fade--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "default" + ], + "references": [ + { + "description": "Use for a medium animation duration.", + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a medium animation duration.", + "type": "number", + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--fade--long": { + "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", + "type": "number", + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--fade--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "long" + ], + "references": [ + { + "description": "Use for long animation duration. Use for larger, more expressive animations.", + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", + "type": "number", + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-out--short": { + "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", + "type": "number", + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--slide-out--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "short" + ], + "references": [ + { + "description": "Use for long animation duration. Use for larger, more expressive animations.", + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", + "type": "number", + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-out--default": { + "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", + "type": "number", + "value": "{global.motion.duration.xl}" + }, + "name": "pf-t--global--motion--duration--slide-out--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "default" + ], + "references": [ + { + "description": "Use for extra long animation duration.", + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for extra long animation duration.", + "type": "number", + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-out--long": { + "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", + "type": "number", + "value": "{global.motion.duration.2xl}" + }, + "name": "pf-t--global--motion--duration--slide-out--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "long" + ], + "references": [ + { + "description": "Use for significantly long animation duration.", + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for significantly long animation duration.", + "type": "number", + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-in--short": { + "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", + "type": "number", + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--slide-in--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "short" + ], + "references": [ + { + "description": "Use for long animation duration. Use for larger, more expressive animations.", + "type": "number", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", + "type": "number", + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-in--default": { + "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", + "type": "number", + "value": "{global.motion.duration.xl}" + }, + "name": "pf-t--global--motion--duration--slide-in--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "default" + ], + "references": [ + { + "description": "Use for extra long animation duration.", + "type": "number", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for extra long animation duration.", + "type": "number", + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--slide-in--long": { + "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", + "type": "number", + "value": "{global.motion.duration.2xl}" + }, + "name": "pf-t--global--motion--duration--slide-in--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "long" + ], + "references": [ + { + "description": "Use for significantly long animation duration.", + "type": "number", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for significantly long animation duration.", + "type": "number", + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--icon--short": { + "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", + "type": "number", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", + "type": "number", + "value": "{global.motion.duration.xs}" + }, + "name": "pf-t--global--motion--duration--icon--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "short" + ], + "references": [ + { + "description": "Use for the quickest possible duration of an animation.", + "type": "number", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for the quickest possible duration of an animation.", + "type": "number", + "value": "{global.duration.50}" + }, + "name": "pf-t--global--motion--duration--xs", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xs" + }, + "path": [ + "global", + "motion", + "duration", + "xs" + ], + "references": [ + { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--icon--default": { + "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", + "type": "number", + "value": "{global.motion.duration.sm}" + }, + "name": "pf-t--global--motion--duration--icon--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "default" + ], + "references": [ + { + "description": "Use for a short animation duration. Use for simple and/or small animations.", + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", + "type": "number", + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + } + ] + }, + "pf-t--global--motion--duration--icon--long": { + "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", + "type": "number", + "value": "{global.motion.duration.md}" + }, + "name": "pf-t--global--motion--duration--icon--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "long" + ], + "references": [ + { + "description": "Use for a medium animation duration.", + "type": "number", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a medium animation duration.", + "type": "number", + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + } + ] + }, + "pf-t--global--motion--delay--none": { + "description": "Use when there should be no delay before an animation plays.", + "type": "number", + "value": "0ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use when there should be no delay before an animation plays.", + "type": "number", + "value": "{global.delay.100}" + }, + "name": "pf-t--global--motion--delay--none", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "none" + }, + "path": [ + "global", + "motion", + "delay", + "none" + ], + "references": [ + { + "type": "number", + "value": "0ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--delay--100", + "attributes": { + "category": "global", + "type": "delay", + "item": "100" + }, + "path": [ + "global", + "delay", + "100" + ] + } + ] + }, + "pf-t--global--motion--delay--short": { + "description": "Use when there should be a short delay before an animation plays.", + "type": "number", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use when there should be a short delay before an animation plays.", + "type": "number", + "value": "{global.delay.200}" + }, + "name": "pf-t--global--motion--delay--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "short" + }, + "path": [ + "global", + "motion", + "delay", + "short" + ], + "references": [ + { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--delay--200", + "attributes": { + "category": "global", + "type": "delay", + "item": "200" + }, + "path": [ + "global", + "delay", + "200" + ] + } + ] + }, + "pf-t--global--motion--delay--default": { + "description": "Use when there should be the default delay length before an animation plays.", + "type": "number", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use when there should be the default delay length before an animation plays.", + "type": "number", + "value": "{global.delay.300}" + }, + "name": "pf-t--global--motion--delay--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "default" + }, + "path": [ + "global", + "motion", + "delay", + "default" + ], + "references": [ + { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--delay--300", + "attributes": { + "category": "global", + "type": "delay", + "item": "300" + }, + "path": [ + "global", + "delay", + "300" + ] + } + ] + }, + "pf-t--global--motion--delay--long": { + "description": "Use when there should be a long delay before an animation plays.", + "type": "number", + "value": "7000ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use when there should be a long delay before an animation plays.", + "type": "number", + "value": "{global.delay.400}" + }, + "name": "pf-t--global--motion--delay--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "long" + }, + "path": [ + "global", + "motion", + "delay", + "long" + ], + "references": [ + { + "type": "number", + "value": "7000ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 7000 + }, + "name": "pf-t--global--delay--400", + "attributes": { + "category": "global", + "type": "delay", + "item": "400" + }, + "path": [ + "global", + "delay", + "400" + ] + } + ] + }, + "pf-t--global--motion--timing-function--accelerate": { + "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", + "type": "number", + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", + "type": "number", + "value": "{global.timing-function.100}" + }, + "name": "pf-t--global--motion--timing-function--accelerate", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "accelerate" + }, + "path": [ + "global", + "motion", + "timing-function", + "accelerate" + ], + "references": [ + { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)" + }, + "name": "pf-t--global--timing-function--100", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "100" + }, + "path": [ + "global", + "timing-function", + "100" + ] + } + ] + }, + "pf-t--global--motion--timing-function--default": { + "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", + "type": "number", + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", + "type": "number", + "value": "{global.timing-function.200}" + }, + "name": "pf-t--global--motion--timing-function--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "default" + }, + "path": [ + "global", + "motion", + "timing-function", + "default" + ], + "references": [ + { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--200", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "200" + }, + "path": [ + "global", + "timing-function", + "200" + ] + } + ] + }, + "pf-t--global--motion--timing-function--decelerate": { + "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", + "type": "number", + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", + "type": "number", + "value": "{global.timing-function.300}" + }, + "name": "pf-t--global--motion--timing-function--decelerate", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "decelerate" + }, + "path": [ + "global", + "motion", + "timing-function", + "decelerate" + ], + "references": [ + { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--300", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "300" + }, + "path": [ + "global", + "timing-function", + "300" + ] + } + ] + } + } + }, + "base": { + "colors": { + "pf-t--global--icon--color--100": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + }, + "pf-t--global--icon--color--200": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--icon--color--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--global--icon--color--300": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--global--border--color--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--border--color--100", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "border", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--border--color--200": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--border--color--200", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "border", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--border--color--300": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--border--color--300", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "border", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--global--box-shadow--color--100": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)" + }, + "name": "pf-t--global--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "color", + "100" + ] + }, + "pf-t--global--box-shadow--color--200": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)" + }, + "name": "pf-t--global--box-shadow--color--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "color", + "200" + ] + }, + "pf-t--global--background--color--100": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--global--background--color--200": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--global--background--color--300": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--background--color--300", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--global--background--color--400": { + "type": "color", + "value": "#292929", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--background--color--400", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "background", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + }, + "pf-t--global--background--color--500": { + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)" + }, + "name": "pf-t--global--background--color--500", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "500" + }, + "path": [ + "global", + "background", + "color", + "500" + ] + }, + "pf-t--global--background--color--600": { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)" + }, + "name": "pf-t--global--background--color--600", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "600" + }, + "path": [ + "global", + "background", + "color", + "600" + ] + }, + "pf-t--global--background--color--highlight--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--background--color--highlight--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "100" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--background--color--highlight--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--background--color--highlight--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "200" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--brand--100": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--brand--100", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "100" + }, + "path": [ + "global", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + }, + "pf-t--global--color--brand--200": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + }, + "pf-t--global--color--brand--300": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + }, + "pf-t--global--color--disabled--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--disabled--100", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "100" + }, + "path": [ + "global", + "color", + "disabled", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--color--disabled--200": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--disabled--200", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "200" + }, + "path": [ + "global", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--color--disabled--300": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--color--disabled--300", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "300" + }, + "path": [ + "global", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + }, + "pf-t--global--color--favorite--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--favorite--100", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "100" + }, + "path": [ + "global", + "color", + "favorite", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--color--favorite--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--status--success--100": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + }, + "pf-t--global--color--status--success--200": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + }, + "pf-t--global--color--status--warning--100": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--status--warning--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--color--status--warning--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--status--warning--300": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + }, + "pf-t--global--color--status--danger--100": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + }, + "pf-t--global--color--status--danger--200": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + }, + "pf-t--global--color--status--danger--300": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "danger", + "300" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + }, + "pf-t--global--color--status--info--100": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + }, + "pf-t--global--color--status--info--200": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + }, + "pf-t--global--color--status--custom--100": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + }, + "pf-t--global--color--status--custom--200": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + }, + "pf-t--global--color--severity--undefined--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--severity--undefined--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "undefined", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "undefined", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--color--severity--none--100": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--severity--none--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "none", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "none", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + }, + "pf-t--global--color--severity--minor--100": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--color--severity--minor--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "minor", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "minor", + "100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--global--color--severity--moderate--100": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--severity--moderate--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "moderate", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "moderate", + "100" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--severity--important--100": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--global--color--severity--important--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "important", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "important", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + }, + "pf-t--global--color--severity--critical--100": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--severity--critical--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "critical", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "critical", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--100": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.20}" + }, + "name": "pf-t--global--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--200": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.30}" + }, + "name": "pf-t--global--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--red--300": { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red.40}" + }, + "name": "pf-t--global--color--nonstatus--red--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--100": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--200": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orangered--300": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orangered--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--100": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--200": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--orange--300": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orange--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--100": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--color--nonstatus--yellow--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--200": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--yellow--300": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--nonstatus--yellow--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--100": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--global--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--200": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--green--300": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--color--nonstatus--green--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--100": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--color--nonstatus--teal--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--200": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--teal--300": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--color--nonstatus--teal--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--100": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--200": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--blue--300": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--nonstatus--blue--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--100": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--200": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--purple--300": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--global--color--nonstatus--purple--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--100": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--global--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--200": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--global--color--nonstatus--gray--300": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--nonstatus--gray--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "300" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--global--text--color--100": { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + }, + "pf-t--global--text--color--200": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--text--color--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "text", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + }, + "pf-t--global--text--color--300": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--global--text--color--400": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--text--color--400", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "text", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + }, + "pf-t--global--text--color--link--100": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--text--color--link--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "100" + }, + "path": [ + "global", + "text", + "color", + "link", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + }, + "pf-t--global--text--color--link--200": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--text--color--link--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "200" + }, + "path": [ + "global", + "text", + "color", + "link", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + }, + "pf-t--global--text--color--link--300": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--text--color--link--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "300" + }, + "path": [ + "global", + "text", + "color", + "link", + "300" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + }, + "dimension": { + "pf-t--global--spacer--100": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + }, + "pf-t--global--spacer--200": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + }, + "pf-t--global--spacer--300": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + }, + "pf-t--global--spacer--400": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + }, + "pf-t--global--spacer--500": { + "type": "number", + "value": "32px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + }, + "pf-t--global--spacer--600": { + "type": "number", + "value": "48px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + }, + "pf-t--global--spacer--700": { + "type": "number", + "value": "64px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 64 + }, + "name": "pf-t--global--spacer--700", + "attributes": { + "category": "global", + "type": "spacer", + "item": "700" + }, + "path": [ + "global", + "spacer", + "700" + ] + }, + "pf-t--global--spacer--800": { + "type": "number", + "value": "80px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 80 + }, + "name": "pf-t--global--spacer--800", + "attributes": { + "category": "global", + "type": "spacer", + "item": "800" + }, + "path": [ + "global", + "spacer", + "800" + ] + }, + "pf-t--global--icon--size--100": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--icon--size--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "size", + "100" + ] + }, + "pf-t--global--icon--size--200": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--icon--size--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "size", + "200" + ] + }, + "pf-t--global--icon--size--250": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--icon--size--250", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "250" + }, + "path": [ + "global", + "icon", + "size", + "250" + ] + }, + "pf-t--global--icon--size--300": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--icon--size--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "size", + "300" + ] + }, + "pf-t--global--icon--size--400": { + "type": "number", + "value": "56px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 56 + }, + "name": "pf-t--global--icon--size--400", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "icon", + "size", + "400" + ] + }, + "pf-t--global--icon--size--500": { + "type": "number", + "value": "96px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 96 + }, + "name": "pf-t--global--icon--size--500", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "icon", + "size", + "500" + ] + }, + "pf-t--global--border--width--100": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + }, + "pf-t--global--border--width--200": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + }, + "pf-t--global--border--width--300": { + "type": "number", + "value": "3px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 3 + }, + "name": "pf-t--global--border--width--300", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "300" + }, + "path": [ + "global", + "border", + "width", + "300" + ] + }, + "pf-t--global--border--radius--0": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--border--radius--0", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "0" + }, + "path": [ + "global", + "border", + "radius", + "0" + ] + }, + "pf-t--global--border--radius--100": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--border--radius--100", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "100" + }, + "path": [ + "global", + "border", + "radius", + "100" + ] + }, + "pf-t--global--border--radius--200": { + "type": "number", + "value": "6px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 6 + }, + "name": "pf-t--global--border--radius--200", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "200" + }, + "path": [ + "global", + "border", + "radius", + "200" + ] + }, + "pf-t--global--border--radius--300": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--border--radius--300", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "300" + }, + "path": [ + "global", + "border", + "radius", + "300" + ] + }, + "pf-t--global--border--radius--400": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--border--radius--400", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "400" + }, + "path": [ + "global", + "border", + "radius", + "400" + ] + }, + "pf-t--global--border--radius--500": { + "type": "number", + "value": "999px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 999 + }, + "name": "pf-t--global--border--radius--500", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "500" + }, + "path": [ + "global", + "border", + "radius", + "500" + ] + }, + "pf-t--global--font--family--100": { + "type": "string", + "value": "Red Hat Text VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Text VF" + }, + "name": "pf-t--global--font--family--100", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "100" + }, + "path": [ + "global", + "font", + "family", + "100" + ] + }, + "pf-t--global--font--family--200": { + "type": "string", + "value": "Red Hat Display VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Display VF" + }, + "name": "pf-t--global--font--family--200", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "200" + }, + "path": [ + "global", + "font", + "family", + "200" + ] + }, + "pf-t--global--font--family--300": { + "type": "string", + "value": "Red Hat Mono VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Mono VF" + }, + "name": "pf-t--global--font--family--300", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "300" + }, + "path": [ + "global", + "font", + "family", + "300" + ] + }, + "pf-t--global--font--weight--100": { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--font--weight--100", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "100" + }, + "path": [ + "global", + "font", + "weight", + "100" + ] + }, + "pf-t--global--font--weight--200": { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--font--weight--200", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "200" + }, + "path": [ + "global", + "font", + "weight", + "200" + ] + }, + "pf-t--global--font--weight--300": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 700 + }, + "name": "pf-t--global--font--weight--300", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "300" + }, + "path": [ + "global", + "font", + "weight", + "300" + ] + }, + "pf-t--global--font--weight--400": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 700 + }, + "name": "pf-t--global--font--weight--400", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "400" + }, + "path": [ + "global", + "font", + "weight", + "400" + ] + }, + "pf-t--global--font--line-height--100": { + "type": "number", + "value": 1.2999999523162842, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1.2999999523162842 + }, + "name": "pf-t--global--font--line-height--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "100" + }, + "path": [ + "global", + "font", + "line-height", + "100" + ] + }, + "pf-t--global--font--line-height--200": { + "type": "number", + "value": 1.5, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1.5 + }, + "name": "pf-t--global--font--line-height--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "200" + }, + "path": [ + "global", + "font", + "line-height", + "200" + ] + }, + "pf-t--global--font--size--100": { + "type": "number", + "value": "12px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + }, + "pf-t--global--font--size--200": { + "type": "number", + "value": "14px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + }, + "pf-t--global--font--size--300": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + }, + "pf-t--global--font--size--400": { + "type": "number", + "value": "18px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + }, + "pf-t--global--font--size--500": { + "type": "number", + "value": "20px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + }, + "pf-t--global--font--size--600": { + "type": "number", + "value": "22px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + }, + "pf-t--global--font--size--700": { + "type": "number", + "value": "28px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + }, + "pf-t--global--font--size--800": { + "type": "number", + "value": "36px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + }, + "pf-t--global--z-index--100": { + "type": "number", + "value": 100, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--z-index--100", + "attributes": { + "category": "global", + "type": "z-index", + "item": "100" + }, + "path": [ + "global", + "z-index", + "100" + ] + }, + "pf-t--global--z-index--200": { + "type": "number", + "value": 200, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--z-index--200", + "attributes": { + "category": "global", + "type": "z-index", + "item": "200" + }, + "path": [ + "global", + "z-index", + "200" + ] + }, + "pf-t--global--z-index--300": { + "type": "number", + "value": 300, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--z-index--300", + "attributes": { + "category": "global", + "type": "z-index", + "item": "300" + }, + "path": [ + "global", + "z-index", + "300" + ] + }, + "pf-t--global--z-index--400": { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--z-index--400", + "attributes": { + "category": "global", + "type": "z-index", + "item": "400" + }, + "path": [ + "global", + "z-index", + "400" + ] + }, + "pf-t--global--z-index--500": { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--z-index--500", + "attributes": { + "category": "global", + "type": "z-index", + "item": "500" + }, + "path": [ + "global", + "z-index", + "500" + ] + }, + "pf-t--global--z-index--600": { + "type": "number", + "value": 600, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--z-index--600", + "attributes": { + "category": "global", + "type": "z-index", + "item": "600" + }, + "path": [ + "global", + "z-index", + "600" + ] + }, + "pf-t--global--box-shadow--X--100": { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--X--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "X", + "100" + ] + }, + "pf-t--global--box-shadow--X--200": { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--X--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "X", + "200" + ] + }, + "pf-t--global--box-shadow--X--300": { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--X--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "X", + "300" + ] + }, + "pf-t--global--box-shadow--X--400": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + }, + "pf-t--global--box-shadow--X--500": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--X--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "X", + "500" + ] + }, + "pf-t--global--box-shadow--X--600": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--X--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "X", + "600" + ] + }, + "pf-t--global--box-shadow--X--700": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--X--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "X", + "700" + ] + }, + "pf-t--global--box-shadow--Y--100": { + "type": "number", + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--Y--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "Y", + "100" + ] + }, + "pf-t--global--box-shadow--Y--200": { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--Y--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "Y", + "200" + ] + }, + "pf-t--global--box-shadow--Y--300": { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--Y--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "Y", + "300" + ] + }, + "pf-t--global--box-shadow--Y--400": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + }, + "pf-t--global--box-shadow--Y--500": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + }, + "pf-t--global--box-shadow--Y--600": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + }, + "pf-t--global--box-shadow--Y--700": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + }, + "pf-t--global--box-shadow--blur--100": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--blur--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "blur", + "100" + ] + }, + "pf-t--global--box-shadow--blur--200": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--blur--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "blur", + "200" + ] + }, + "pf-t--global--box-shadow--blur--300": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--box-shadow--blur--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "blur", + "300" + ] + }, + "pf-t--global--box-shadow--spread--100": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + }, + "pf-t--global--breakpoint--100": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + }, + "pf-t--global--breakpoint--200": { + "type": "number", + "value": "576px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 576 + }, + "name": "pf-t--global--breakpoint--200", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "200" + }, + "path": [ + "global", + "breakpoint", + "200" + ] + }, + "pf-t--global--breakpoint--250": { + "type": "number", + "value": "640px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 640 + }, + "name": "pf-t--global--breakpoint--250", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "250" + }, + "path": [ + "global", + "breakpoint", + "250" + ] + }, + "pf-t--global--breakpoint--300": { + "type": "number", + "value": "768px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + }, + "pf-t--global--breakpoint--350": { + "type": "number", + "value": "960px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 960 + }, + "name": "pf-t--global--breakpoint--350", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "350" + }, + "path": [ + "global", + "breakpoint", + "350" + ] + }, + "pf-t--global--breakpoint--400": { + "type": "number", + "value": "992px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 992 + }, + "name": "pf-t--global--breakpoint--400", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "400" + }, + "path": [ + "global", + "breakpoint", + "400" + ] + }, + "pf-t--global--breakpoint--500": { + "type": "number", + "value": "1200px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1200 + }, + "name": "pf-t--global--breakpoint--500", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "500" + }, + "path": [ + "global", + "breakpoint", + "500" + ] + }, + "pf-t--global--breakpoint--550": { + "type": "number", + "value": "1280px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1280 + }, + "name": "pf-t--global--breakpoint--550", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "550" + }, + "path": [ + "global", + "breakpoint", + "550" + ] + }, + "pf-t--global--breakpoint--600": { + "type": "number", + "value": "1450px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1450 + }, + "name": "pf-t--global--breakpoint--600", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "600" + }, + "path": [ + "global", + "breakpoint", + "600" + ] + } + }, + "motion": { + "pf-t--global--duration--50": { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + }, + "pf-t--global--duration--100": { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + }, + "pf-t--global--duration--200": { + "type": "number", + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + }, + "pf-t--global--duration--300": { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + }, + "pf-t--global--duration--400": { + "type": "number", + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + }, + "pf-t--global--duration--500": { + "type": "number", + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + }, + "pf-t--global--duration--600": { + "type": "number", + "value": "600ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--duration--600", + "attributes": { + "category": "global", + "type": "duration", + "item": "600" + }, + "path": [ + "global", + "duration", + "600" + ] + }, + "pf-t--global--delay--100": { + "type": "number", + "value": "0ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--delay--100", + "attributes": { + "category": "global", + "type": "delay", + "item": "100" + }, + "path": [ + "global", + "delay", + "100" + ] + }, + "pf-t--global--delay--200": { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--delay--200", + "attributes": { + "category": "global", + "type": "delay", + "item": "200" + }, + "path": [ + "global", + "delay", + "200" + ] + }, + "pf-t--global--delay--300": { + "type": "number", + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--delay--300", + "attributes": { + "category": "global", + "type": "delay", + "item": "300" + }, + "path": [ + "global", + "delay", + "300" + ] + }, + "pf-t--global--delay--400": { + "type": "number", + "value": "7000ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 7000 + }, + "name": "pf-t--global--delay--400", + "attributes": { + "category": "global", + "type": "delay", + "item": "400" + }, + "path": [ + "global", + "delay", + "400" + ] + }, + "pf-t--global--timing-function--100": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)" + }, + "name": "pf-t--global--timing-function--100", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "100" + }, + "path": [ + "global", + "timing-function", + "100" + ] + }, + "pf-t--global--timing-function--200": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--200", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "200" + }, + "path": [ + "global", + "timing-function", + "200" + ] + }, + "pf-t--global--timing-function--300": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--300", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "300" + }, + "path": [ + "global", + "timing-function", + "300" + ] + } + } + }, + "palette": { + "pf-t--chart--color--blue--100": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + }, + "pf-t--chart--color--blue--200": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + }, + "pf-t--chart--color--blue--300": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + }, + "pf-t--chart--color--blue--400": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + }, + "pf-t--chart--color--blue--500": { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.70}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + } + ] + }, + "pf-t--chart--color--green--100": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + }, + "pf-t--chart--color--green--200": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + }, + "pf-t--chart--color--green--300": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + }, + "pf-t--chart--color--green--400": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + }, + "pf-t--chart--color--green--500": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + }, + "pf-t--chart--color--teal--100": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + }, + "pf-t--chart--color--teal--200": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + }, + "pf-t--chart--color--teal--300": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + }, + "pf-t--chart--color--teal--400": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + }, + "pf-t--chart--color--teal--500": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + }, + "pf-t--chart--color--purple--100": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + }, + "pf-t--chart--color--purple--200": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + }, + "pf-t--chart--color--purple--300": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + }, + "pf-t--chart--color--purple--400": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + }, + "pf-t--chart--color--purple--500": { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.70}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#21134d" + }, + "name": "pf-t--color--purple--70", + "attributes": { + "category": "color", + "type": "purple", + "item": "70" + }, + "path": [ + "color", + "purple", + "70" + ] + } + ] + }, + "pf-t--chart--color--yellow--100": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + }, + "pf-t--chart--color--yellow--200": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + }, + "pf-t--chart--color--yellow--300": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--chart--color--yellow--400": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + }, + "pf-t--chart--color--yellow--500": { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.60}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + } + ] + }, + "pf-t--chart--color--orange--100": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + }, + "pf-t--chart--color--orange--200": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + }, + "pf-t--chart--color--orange--300": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + }, + "pf-t--chart--color--orange--400": { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.60}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + } + ] + }, + "pf-t--chart--color--orange--500": { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.70}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + } + ] + }, + "pf-t--chart--color--red-orange--100": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.30}" + }, + "name": "pf-t--chart--color--red-orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "red-orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + }, + "pf-t--chart--color--red-orange--200": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--chart--color--red-orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "red-orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + }, + "pf-t--chart--color--red-orange--300": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--chart--color--red-orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "red-orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + }, + "pf-t--chart--color--red-orange--400": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--chart--color--red-orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "red-orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + }, + "pf-t--chart--color--red-orange--500": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--chart--color--red-orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "red-orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + }, + "pf-t--chart--color--black--100": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--chart--color--black--200": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--chart--color--black--300": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--chart--color--black--400": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--chart--color--black--500": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--chart--global--BorderWidth--xs": { + "type": "number", + "value": 1, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--chart--global--BorderWidth--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "xs" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "xs" + ] + }, + "pf-t--chart--global--BorderWidth--sm": { + "type": "number", + "value": 2, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--chart--global--BorderWidth--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "sm" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "sm" + ] + }, + "pf-t--chart--global--BorderWidth--lg": { + "type": "number", + "value": 8, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--chart--global--BorderWidth--lg", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "lg" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "lg" + ] + }, + "pf-t--chart--global--stroke--width--xs": { + "type": "number", + "value": 1, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--chart--global--stroke--width--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke", + "subitem": "width", + "state": "xs" + }, + "path": [ + "chart", + "global", + "stroke", + "width", + "xs" + ] + }, + "pf-t--chart--global--stroke--width--sm": { + "type": "number", + "value": 2, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--chart--global--stroke--width--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke", + "subitem": "width", + "state": "sm" + }, + "path": [ + "chart", + "global", + "stroke", + "width", + "sm" + ] + }, + "pf-t--chart--global--fill--color--100": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--global--fill--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + }, + "pf-t--chart--global--fill--color--200": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--global--fill--color--200", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "200" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + }, + "pf-t--chart--global--fill--color--300": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--global--fill--color--300", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "300" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + }, + "pf-t--chart--global--fill--color--400": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--global--fill--color--400", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "400" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + }, + "pf-t--chart--global--fill--color--500": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--global--fill--color--500", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "500" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "500" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + }, + "pf-t--chart--global--fill--color--700": { + "type": "color", + "value": "#383838", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--chart--global--fill--color--700", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "700" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "700" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + }, + "pf-t--chart--global--fill--color--900": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--chart--global--fill--color--900", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "900" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "900" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + }, + "pf-t--chart--global--fill--color--white": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--chart--global--fill--color--white", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "white" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "white" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + }, + "pf-t--chart--global--warning--color--100": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--global--warning--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "warning", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "warning", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + }, + "pf-t--chart--global--warning--color--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--global--warning--color--200", + "attributes": { + "category": "chart", + "type": "global", + "item": "warning", + "subitem": "color", + "state": "200" + }, + "path": [ + "chart", + "global", + "warning", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + }, + "pf-t--chart--global--success--color--100": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--global--success--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "success", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "success", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + }, + "pf-t--chart--global--danger--color--100": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--chart--global--danger--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "danger", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "danger", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + }, + "pf-t--chart--global--FontSize--xs": { + "type": "number", + "value": 12, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--chart--global--FontSize--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "xs" + }, + "path": [ + "chart", + "global", + "FontSize", + "xs" + ] + }, + "pf-t--chart--global--FontSize--sm": { + "type": "number", + "value": 14, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--chart--global--FontSize--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "sm" + }, + "path": [ + "chart", + "global", + "FontSize", + "sm" + ] + }, + "pf-t--chart--global--FontSize--lg": { + "type": "number", + "value": 18, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--chart--global--FontSize--lg", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "lg" + }, + "path": [ + "chart", + "global", + "FontSize", + "lg" + ] + }, + "pf-t--chart--global--FontSize--2xl": { + "type": "number", + "value": 22, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--chart--global--FontSize--2xl", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "2xl" + }, + "path": [ + "chart", + "global", + "FontSize", + "2xl" + ] + }, + "pf-t--chart--global--letter-spacing": { + "type": "string", + "value": "normal", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "string", + "value": "normal" + }, + "name": "pf-t--chart--global--letter-spacing", + "attributes": { + "category": "chart", + "type": "global", + "item": "letter-spacing" + }, + "path": [ + "chart", + "global", + "letter-spacing" + ] + }, + "pf-t--chart--global--stroke-line-cap": { + "type": "string", + "value": "round", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "string", + "value": "round" + }, + "name": "pf-t--chart--global--stroke-line-cap", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke-line-cap" + }, + "path": [ + "chart", + "global", + "stroke-line-cap" + ] + }, + "pf-t--chart--global--label--padding": { + "type": "number", + "value": 10, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 10 + }, + "name": "pf-t--chart--global--label--padding", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "padding" + }, + "path": [ + "chart", + "global", + "label", + "padding" + ] + }, + "pf-t--chart--global--label--margin": { + "type": "number", + "value": 8, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--chart--global--label--margin", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "margin" + }, + "path": [ + "chart", + "global", + "label", + "margin" + ] + }, + "pf-t--chart--global--label--stroke": { + "width": { + "type": "number", + "value": 0, + "filePath": "tokens/default/charts.json", + "isSource": true + }, + "type": "string", + "value": "transparent", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "width": { + "type": "number", + "value": 0, + "filePath": "tokens/default/charts.json", + "isSource": true + }, + "type": "string", + "value": "transparent" + }, + "name": "pf-t--chart--global--label--stroke", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "stroke" + }, + "path": [ + "chart", + "global", + "label", + "stroke" + ] + }, + "pf-t--chart--global--label--text-anchor": { + "type": "string", + "value": "middle", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "string", + "value": "middle" + }, + "name": "pf-t--chart--global--label--text-anchor", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "text-anchor" + }, + "path": [ + "chart", + "global", + "label", + "text-anchor" + ] + }, + "pf-t--chart--global--label--fill": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--chart--global--label--fill", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "fill" + }, + "path": [ + "chart", + "global", + "label", + "fill" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + }, + "pf-t--chart--global--layout--padding": { + "type": "number", + "value": 50, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--chart--global--layout--padding", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "padding" + }, + "path": [ + "chart", + "global", + "layout", + "padding" + ] + }, + "pf-t--chart--global--layout--height": { + "type": "number", + "value": 300, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--chart--global--layout--height", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "height" + }, + "path": [ + "chart", + "global", + "layout", + "height" + ] + }, + "pf-t--chart--global--layout--width": { + "type": "number", + "value": 450, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 450 + }, + "name": "pf-t--chart--global--layout--width", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "width" + }, + "path": [ + "chart", + "global", + "layout", + "width" + ] + }, + "pf-t--chart--global--stroke-line-join": { + "type": "string", + "value": "round", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "string", + "value": "round" + }, + "name": "pf-t--chart--global--stroke-line-join", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke-line-join" + }, + "path": [ + "chart", + "global", + "stroke-line-join" + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--100": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--200": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--300": { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.70}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--400": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--500": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--100": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--200": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--300": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--400": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--teal--colorscale--500": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--100": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--200": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--300": { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.60}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--400": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--yellow--colorscale--500": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--100": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.300}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--200": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.100}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--300": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.500}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--400": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.200}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--gray--colorscale--500": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.400}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--100": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--200": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--300": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--400": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--green--colorscale--500": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--100": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.300}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--200": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.100}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--300": { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.500}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.70}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#21134d" + }, + "name": "pf-t--color--purple--70", + "attributes": { + "category": "color", + "type": "purple", + "item": "70" + }, + "path": [ + "color", + "purple", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--400": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.200}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--purple--colorscale--500": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.400}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--100": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--200": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--300": { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.70}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--400": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--orange--colorscale--500": { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.60}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "600" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "700" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "800" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900": { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "900" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.60}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1000" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100": { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1100" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.70}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1300" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1400" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500": { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1500" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.70}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1600" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1700" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1800" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1900" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2000" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2100" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2300" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2400" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500": { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2500" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.60}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "600" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "700" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "800" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900": { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "900" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.60}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1000" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100": { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1100" + ], + "references": [ + { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.70}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#21134d" + }, + "name": "pf-t--color--purple--70", + "attributes": { + "category": "color", + "type": "purple", + "item": "70" + }, + "path": [ + "color", + "purple", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1300" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1400" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500": { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1500" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.70}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1600" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1700" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1800" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900": { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1900" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.70}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2000" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2400" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2500" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2600" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2700" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2800" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2900" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3000" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3100" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3200" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300": { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3300" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.60}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3400" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.black.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3500" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + }, + "pf-t--color--white": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + }, + "pf-t--color--gray--10": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + }, + "pf-t--color--gray--20": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + }, + "pf-t--color--gray--30": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + }, + "pf-t--color--gray--40": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + }, + "pf-t--color--gray--50": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + }, + "pf-t--color--gray--60": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + }, + "pf-t--color--gray--70": { + "type": "color", + "value": "#383838", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + }, + "pf-t--color--gray--80": { + "type": "color", + "value": "#292929", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + }, + "pf-t--color--gray--90": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + }, + "pf-t--color--gray--95": { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + }, + "pf-t--color--black": { + "type": "color", + "value": "#000000", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#000000" + }, + "name": "pf-t--color--black", + "attributes": { + "category": "color", + "type": "black" + }, + "path": [ + "color", + "black" + ] + }, + "pf-t--color--blue--10": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + }, + "pf-t--color--blue--20": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + }, + "pf-t--color--blue--30": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + }, + "pf-t--color--blue--40": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + }, + "pf-t--color--blue--50": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + }, + "pf-t--color--blue--60": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + }, + "pf-t--color--blue--70": { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + }, + "pf-t--color--teal--10": { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + }, + "pf-t--color--teal--20": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + }, + "pf-t--color--teal--30": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + }, + "pf-t--color--teal--40": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + }, + "pf-t--color--teal--50": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + }, + "pf-t--color--teal--60": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + }, + "pf-t--color--teal--70": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + }, + "pf-t--color--yellow--10": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + }, + "pf-t--color--yellow--20": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + }, + "pf-t--color--yellow--30": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + }, + "pf-t--color--yellow--40": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + }, + "pf-t--color--yellow--50": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + }, + "pf-t--color--yellow--60": { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + }, + "pf-t--color--yellow--70": { + "type": "color", + "value": "#73480b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#73480b" + }, + "name": "pf-t--color--yellow--70", + "attributes": { + "category": "color", + "type": "yellow", + "item": "70" + }, + "path": [ + "color", + "yellow", + "70" + ] + }, + "pf-t--color--green--10": { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + }, + "pf-t--color--green--20": { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + }, + "pf-t--color--green--30": { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + }, + "pf-t--color--green--40": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + }, + "pf-t--color--green--50": { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + }, + "pf-t--color--green--60": { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + }, + "pf-t--color--green--70": { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + }, + "pf-t--color--orange--10": { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + }, + "pf-t--color--orange--20": { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + }, + "pf-t--color--orange--30": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + }, + "pf-t--color--orange--40": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + }, + "pf-t--color--orange--50": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + }, + "pf-t--color--orange--60": { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + }, + "pf-t--color--orange--70": { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + }, + "pf-t--color--red-orange--10": { + "type": "color", + "value": "#ffe3d9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe3d9" + }, + "name": "pf-t--color--red-orange--10", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "10" + }, + "path": [ + "color", + "red-orange", + "10" + ] + }, + "pf-t--color--red-orange--20": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + }, + "pf-t--color--red-orange--30": { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + }, + "pf-t--color--red-orange--40": { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + }, + "pf-t--color--red-orange--50": { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + }, + "pf-t--color--red-orange--60": { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + }, + "pf-t--color--red-orange--70": { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + }, + "pf-t--color--purple--10": { + "type": "color", + "value": "#ece6ff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ece6ff" + }, + "name": "pf-t--color--purple--10", + "attributes": { + "category": "color", + "type": "purple", + "item": "10" + }, + "path": [ + "color", + "purple", + "10" + ] + }, + "pf-t--color--purple--20": { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + }, + "pf-t--color--purple--30": { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + }, + "pf-t--color--purple--40": { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + }, + "pf-t--color--purple--50": { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + }, + "pf-t--color--purple--60": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + }, + "pf-t--color--purple--70": { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#21134d" + }, + "name": "pf-t--color--purple--70", + "attributes": { + "category": "color", + "type": "purple", + "item": "70" + }, + "path": [ + "color", + "purple", + "70" + ] + }, + "pf-t--color--red--10": { + "type": "color", + "value": "#fce3e3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fce3e3" + }, + "name": "pf-t--color--red--10", + "attributes": { + "category": "color", + "type": "red", + "item": "10" + }, + "path": [ + "color", + "red", + "10" + ] + }, + "pf-t--color--red--20": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + }, + "pf-t--color--red--30": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + }, + "pf-t--color--red--40": { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + }, + "pf-t--color--red--50": { + "type": "color", + "value": "#ee0000", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ee0000" + }, + "name": "pf-t--color--red--50", + "attributes": { + "category": "color", + "type": "red", + "item": "50" + }, + "path": [ + "color", + "red", + "50" + ] + }, + "pf-t--color--red--60": { + "type": "color", + "value": "#a60000", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a60000" + }, + "name": "pf-t--color--red--60", + "attributes": { + "category": "color", + "type": "red", + "item": "60" + }, + "path": [ + "color", + "red", + "60" + ] + }, + "pf-t--color--red--70": { + "type": "color", + "value": "#5f0000", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5f0000" + }, + "name": "pf-t--color--red--70", + "attributes": { + "category": "color", + "type": "red", + "item": "70" + }, + "path": [ + "color", + "red", + "70" + ] + } + } +} \ No newline at end of file diff --git a/packages/module/patternfly-docs/content/tokensTable.js b/packages/module/patternfly-docs/content/tokensTable.js index 3aee475..41814c2 100644 --- a/packages/module/patternfly-docs/content/tokensTable.js +++ b/packages/module/patternfly-docs/content/tokensTable.js @@ -120,42 +120,61 @@ export const TokensTable = ({ tokenJson, formatThemeText = capitalize }) => { {`${formatThemeText(theme)} Theme`} ))} Description - Category + {/* Category Type Item Subitem - State + State */} {Object.entries(combinedTokens).map(([tokenName, themesDataObj], rowIndex) => { const searchTerm = searchValue.toLowerCase(); + console.log({ themesDataObj }); if (tokenName === 'default') { return undefined; } else if ( searchValue !== '' && !( tokenName.toLowerCase().includes(searchTerm) || - themesDataObj.some( - (theme) => - theme?.value?.toString().toLowerCase().includes(searchTerm) || - theme?.description?.toLowerCase().includes(searchTerm) + Object.entries(themesDataObj).some( + ([themeName, themeData]) => + themeData?.value?.toString().toLowerCase().includes(searchTerm) || + themeData?.description?.toLowerCase().includes(searchTerm) ) ) ) { return undefined; } else { const themesDataArr = Object.entries(themesDataObj); - const isResolved = themesDataArr.every( - ([_themeName, themeTokenData]) => themeTokenData.references == undefined - ); - // Tokens share a description across themes - const description = themesDataArr.find(([_themeName, themeTokenData]) => themeTokenData.description); + + let hasReferences = false; + let description = null; + // let attributes = []; + themesDataArr.map(([_themeName, themeTokenData]) => { + // if references values exists anywhere, set isNotResolved to true + if (!hasReferences && themeTokenData.references !== undefined) { + hasReferences = true; + } + // Save description first time found - shared across themes + if (!description && themeTokenData.description) { + description = themeTokenData.description; + } + + /* + // Track all attributes for dynamically creating table columns + const attributeEntries = Object.entries(themeTokenData.attributes); + attributes = new Set([...attributes, ...attributeEntries]); + attributes = Array.from(attributes).map((value) => [value, value]); + // console.log({ attributes }); + */ + }); + return ( { {themeKeys.map((theme) => ( {tokensByTheme[theme][tokenName]?.value ?? '-'} ))} - {description && description[1].description} - {console.log(themesDataArr[0])} - - - - + {description} + {/* {attributes.map(([key, val]) => { + console.log({ key, val }); + return {val}; + })} */} - {!isResolved && ( + {hasReferences && ( diff --git a/packages/module/patternfly-docs/content/tokensTableCategories.js b/packages/module/patternfly-docs/content/tokensTableCategories.js new file mode 100644 index 0000000..f1c25f5 --- /dev/null +++ b/packages/module/patternfly-docs/content/tokensTableCategories.js @@ -0,0 +1,263 @@ +import React, { useMemo } from 'react'; +import { SearchInput, Title, Toolbar, ToolbarItem, ToolbarContent, capitalize } from '@patternfly/react-core'; +import { + Table, + Thead, + Th, + Tr, + Tbody, + Td, + ExpandableRowContent, + OuterScrollContainer, + InnerScrollContainer +} from '@patternfly/react-table'; + +// eslint-disable-next-line camelcase +import global_spacer_md from '@patternfly/react-tokens/dist/esm/global_spacer_md'; +import LevelUpAltIcon from '@patternfly/react-icons/dist/esm/icons/level-up-alt-icon'; + +let combinedTokens = { + semantic: { + colors: {}, + dimension: {}, + motion: {} + }, + base: { + colors: {}, + dimension: {}, + motion: {} + }, + palette: {}, + chart: {} +}; + +// Used to combine data grouped by theme under each token name +const combineObjects = (parentObject) => { + let combined = {}; + const addToCombined = (obj, objName) => { + for (let key in obj) { + if (obj.hasOwnProperty(key)) { + if (!combined.hasOwnProperty(key)) { + combined[key] = {}; + } + combined[key][objName] = obj[key]; + } + } + }; + Object.entries(parentObject).forEach(([key, value]) => { + addToCombined(value, key); + }); + + return combined; +}; + +const getTokenChain = (themeTokenData) => { + let tokenChain = []; + let referenceToken = themeTokenData?.references?.[0]; + while (referenceToken && referenceToken !== undefined) { + tokenChain = [...tokenChain, referenceToken.name]; + if (referenceToken?.references?.[0]) { + referenceToken = referenceToken?.references?.[0]; + } else { + tokenChain.push(referenceToken.value); + break; + } + } + return tokenChain; +}; + +const showTokenChain = (themeTokenData) => { + const tokenChain = getTokenChain(themeTokenData); + return ( +
+ {tokenChain.map((nextValue, index) => ( +
+ + {nextValue} +
+ ))} +
+ ); +}; + +export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize }) => { + // combine all themes/tokens into one object + const themeKeys = Object.keys(tokenJson); + const tokensByTheme = useMemo( + () => + themeKeys.reduce((allTokensObj, curTheme) => { + // transform from modules + const themeTokens = JSON.parse(JSON.stringify(tokenJson[curTheme])); + allTokensObj[curTheme] = themeTokens; + return allTokensObj; + }, {}), + [tokenJson] + ); + Object.entries(combinedTokens).map(([layerName, layerObj]) => { + const layerCategories = Object.keys(layerObj); + if (layerCategories.length > 0) { + Object.keys(layerObj).map((layerCategory) => { + const layerCategoryByTheme = Object.entries(tokensByTheme).reduce((acc, [themeName, themeData]) => { + acc[themeName] = themeData[layerName][layerCategory]; + return acc; + }, {}); + combinedTokens[layerName][layerCategory] = combineObjects(layerCategoryByTheme); + }); + } else { + const layerByTheme = Object.entries(tokensByTheme).reduce((acc, [themeName, themeData]) => { + acc[themeName] = themeData[layerName]; + return acc; + }, {}); + combinedTokens[layerName] = combineObjects(layerByTheme); + } + }); + const [searchValue, setSearchValue] = React.useState(''); + const [expandedTokens, setExpandedTokens] = React.useState([]); + const setExpanded = (tokenName, isExpanding = true) => + setExpandedTokens((prevExpanded) => { + const otherExpandedTokens = prevExpanded.filter((n) => n !== tokenName); + return isExpanding ? [...otherExpandedTokens, tokenName] : otherExpandedTokens; + }); + + const isTokenExpanded = (tokenName) => expandedTokens.includes(tokenName); + + return ( + + + + + setSearchValue(value)} + onClear={() => setSearchValue('')} + /> + + + + + + {Object.entries(combinedTokens).map(([layerName, layerDataObj], rowIndex) => { + if (layerName === 'palette') { + layerDataObj = { palette: layerDataObj }; + } + return ( + <> + {layerName} + + + + + + + {themeKeys.map((theme) => ( + + ))} + + {/* + + + + */} + + + {Object.entries(layerDataObj).map((layerDataProperties, _rowIndex) => { + let [categoryName, categoryDataObj] = layerDataProperties; + + return Object.entries(categoryDataObj).map(([tokenName, themesDataObj], rowIndex) => { + const searchTerm = searchValue.toLowerCase(); + if (tokenName === 'default') { + return undefined; + } else if ( + searchValue !== '' && + !( + tokenName.toLowerCase().includes(searchTerm) || + Object.entries(themesDataObj).some( + ([_themeName, themeData]) => + themeData?.value?.toString().toLowerCase().includes(searchTerm) || + themeData?.description?.toLowerCase().includes(searchTerm) + ) + ) + ) { + return undefined; + } else { + const themesDataArr = Object.entries(themesDataObj); + + let hasReferences = false; + let description = null; + themesDataArr.map(([_themeName, themeTokenData]) => { + // if references values exists anywhere, set isNotResolved to true + if (!hasReferences && themeTokenData.references !== undefined) { + hasReferences = true; + } + // Save description first time found - shared across themes + if (!description && themeTokenData.description) { + description = themeTokenData.description; + } + }); + + return ( + + + + + {themeKeys.map((theme) => { + const val = + layerName === 'palette' + ? tokensByTheme[theme][layerName][tokenName]?.value + : tokensByTheme[theme][layerName][categoryName][tokenName]?.value; + return ; + })} + + + {hasReferences && ( + + + ))} + + )} + + ); + } + }); + })} +
NameCategory{`${formatThemeText(theme)} Theme`}DescriptionCategoryTypeItemSubitemState
setExpanded(tokenName, !isTokenExpanded(tokenName)), + expandId: `${tokenName}-expandable-toggle` + } + : undefined + } + /> + + {tokenName} + {categoryName}{val ?? '-'}{description}
+ + + {themesDataArr.map(([themeName, themeTokenData]) => ( + + {showTokenChain(themeTokenData)} +
+ + ); + })} +
+
+
+ ); +}; diff --git a/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js b/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js index 2bc0543..936f16b 100644 --- a/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js +++ b/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js @@ -1,8 +1,9 @@ import React from 'react'; import { AutoLinkHeader, Example, Link as PatternflyThemeLink } from '@patternfly/documentation-framework/components'; -import * as defaultTokens from '../../../content/./all-tokens-default.json'; -import * as darkTokens from '../../../content/./all-tokens-dark.json'; +import * as defaultTokens from '../../../content/./semantic-tokens-default.json'; +import * as darkTokens from '../../../content/./semantic-tokens-dark.json'; import { TokensTable } from '../../../content/./tokensTable.js'; +import { TokensTableCategories } from '../../../content/./tokensTableCategories.js'; const pageData = { "id": "All PatternFly tokens", "section": "tokens", @@ -20,16 +21,17 @@ const pageData = { pageData.liveContext = { defaultTokens, darkTokens, - TokensTable + TokensTable, + TokensTableCategories }; -pageData.relativeImports = "import * as defaultTokens from 'content/./all-tokens-default.json';,import * as darkTokens from 'content/./all-tokens-dark.json';,import { TokensTable } from 'content/./tokensTable.js';" +pageData.relativeImports = "import * as defaultTokens from 'content/./semantic-tokens-default.json';,import * as darkTokens from 'content/./semantic-tokens-dark.json';,import { TokensTable } from 'content/./tokensTable.js';,import { TokensTableCategories } from 'content/./tokensTableCategories.js';" pageData.examples = { }; const Component = () => ( - + ); Component.displayName = 'TokensAllPatternflyTokensTokensDocs'; diff --git a/packages/module/patternfly-docs/scssAsJson.json b/packages/module/patternfly-docs/scssAsJson.json index 9562b9e..13fe0ad 100644 --- a/packages/module/patternfly-docs/scssAsJson.json +++ b/packages/module/patternfly-docs/scssAsJson.json @@ -1 +1 @@ -{"--pf-t--color--red--70":"#5f0000","--pf-t--color--red--60":"#a60000","--pf-t--color--red--50":"#ee0000","--pf-t--color--red--40":"#f56e6e","--pf-t--color--red--30":"#f9a8a8","--pf-t--color--red--20":"#fbc5c5","--pf-t--color--red--10":"#fce3e3","--pf-t--color--purple--70":"#21134d","--pf-t--color--purple--60":"#3d2785","--pf-t--color--purple--50":"#5e40be","--pf-t--color--purple--40":"#876fd4","--pf-t--color--purple--30":"#b6a6e9","--pf-t--color--purple--20":"#d0c5f4","--pf-t--color--purple--10":"#ece6ff","--pf-t--color--red-orange--70":"#731f00","--pf-t--color--red-orange--60":"#b1380b","--pf-t--color--red-orange--50":"#f0561d","--pf-t--color--red-orange--40":"#f4784a","--pf-t--color--red-orange--30":"#f89b78","--pf-t--color--red-orange--20":"#fbbea8","--pf-t--color--red-orange--10":"#ffe3d9","--pf-t--color--orange--70":"#732e00","--pf-t--color--orange--60":"#9e4a06","--pf-t--color--orange--50":"#ca6c0f","--pf-t--color--orange--40":"#f5921b","--pf-t--color--orange--30":"#f8ae54","--pf-t--color--orange--20":"#fccb8f","--pf-t--color--orange--10":"#ffe8cc","--pf-t--color--green--70":"#204d00","--pf-t--color--green--60":"#3d7317","--pf-t--color--green--50":"#63993d","--pf-t--color--green--40":"#87bb62","--pf-t--color--green--30":"#afdc8f","--pf-t--color--green--20":"#d1f1bb","--pf-t--color--green--10":"#e9f7df","--pf-t--color--yellow--70":"#73480b","--pf-t--color--yellow--60":"#96640f","--pf-t--color--yellow--50":"#b98412","--pf-t--color--yellow--40":"#dca614","--pf-t--color--yellow--30":"#ffcc17","--pf-t--color--yellow--20":"#ffe072","--pf-t--color--yellow--10":"#fff4cc","--pf-t--color--teal--70":"#004d4d","--pf-t--color--teal--60":"#147878","--pf-t--color--teal--50":"#37a3a3","--pf-t--color--teal--40":"#63bdbd","--pf-t--color--teal--30":"#9ad8d8","--pf-t--color--teal--20":"#b9e5e5","--pf-t--color--teal--10":"#daf2f2","--pf-t--color--blue--70":"#003366","--pf-t--color--blue--60":"#004d99","--pf-t--color--blue--50":"#0066cc","--pf-t--color--blue--40":"#4394e5","--pf-t--color--blue--30":"#92c5f9","--pf-t--color--blue--20":"#b9dafc","--pf-t--color--blue--10":"#e0f0ff","--pf-t--color--black":"#000000","--pf-t--color--gray--95":"#151515","--pf-t--color--gray--90":"#1f1f1f","--pf-t--color--gray--80":"#292929","--pf-t--color--gray--70":"#383838","--pf-t--color--gray--60":"#4d4d4d","--pf-t--color--gray--50":"#707070","--pf-t--color--gray--40":"#a3a3a3","--pf-t--color--gray--30":"#c7c7c7","--pf-t--color--gray--20":"#e0e0e0","--pf-t--color--gray--10":"#f2f2f2","--pf-t--color--white":"#ffffff","--pf-t--global--timing-function--300":"cubic-bezier(0, 0, .2, 1)","--pf-t--global--timing-function--200":"cubic-bezier(.4, 0, .2, 1)","--pf-t--global--timing-function--100":"cubic-bezier(.4, 0, .7, .2)","--pf-t--global--delay--400":"7000ms","--pf-t--global--delay--300":"100ms","--pf-t--global--delay--200":"50ms","--pf-t--global--delay--100":"0ms","--pf-t--global--duration--600":"600ms","--pf-t--global--duration--500":"500ms","--pf-t--global--duration--400":"400ms","--pf-t--global--duration--300":"300ms","--pf-t--global--duration--200":"200ms","--pf-t--global--duration--100":"100ms","--pf-t--global--duration--50":"50ms","--pf-t--global--background--color--action--plain--default":"rgba(0, 0, 0, 0.0000)","--pf-t--global--background--color--600":"rgba(199, 199, 199, 0.2500)","--pf-t--global--background--color--500":"rgba(21, 21, 21, 0.2000)","--pf-t--global--breakpoint--600":"1450px","--pf-t--global--breakpoint--550":"1280px","--pf-t--global--breakpoint--500":"1200px","--pf-t--global--breakpoint--400":"992px","--pf-t--global--breakpoint--350":"960px","--pf-t--global--breakpoint--300":"768px","--pf-t--global--breakpoint--250":"640px","--pf-t--global--breakpoint--200":"576px","--pf-t--global--breakpoint--100":"0px","--pf-t--global--box-shadow--color--200":"rgba(0, 0, 0, 0.1200)","--pf-t--global--box-shadow--color--100":"rgba(0, 0, 0, 0.1600)","--pf-t--global--box-shadow--spread--100":"0px","--pf-t--global--box-shadow--blur--300":"24px","--pf-t--global--box-shadow--blur--200":"8px","--pf-t--global--box-shadow--blur--100":"2px","--pf-t--global--box-shadow--Y--700":"8px","--pf-t--global--box-shadow--Y--600":"4px","--pf-t--global--box-shadow--Y--500":"1px","--pf-t--global--box-shadow--Y--400":"0px","--pf-t--global--box-shadow--Y--300":"-1px","--pf-t--global--box-shadow--Y--200":"-4px","--pf-t--global--box-shadow--Y--100":"-8px","--pf-t--global--box-shadow--X--700":"8px","--pf-t--global--box-shadow--X--600":"4px","--pf-t--global--box-shadow--X--500":"1px","--pf-t--global--box-shadow--X--400":"0px","--pf-t--global--box-shadow--X--300":"-1px","--pf-t--global--box-shadow--X--200":"-4px","--pf-t--global--box-shadow--X--100":"-8px","--pf-t--global--z-index--600":"600","--pf-t--global--z-index--500":"500","--pf-t--global--z-index--400":"400","--pf-t--global--z-index--300":"300","--pf-t--global--z-index--200":"200","--pf-t--global--z-index--100":"100","--pf-t--global--font--size--800":"36px","--pf-t--global--font--size--700":"28px","--pf-t--global--font--size--600":"22px","--pf-t--global--font--size--500":"20px","--pf-t--global--font--size--400":"18px","--pf-t--global--font--size--300":"16px","--pf-t--global--font--size--200":"14px","--pf-t--global--font--size--100":"12px","--pf-t--global--font--line-height--figma-only--800":"46.79999923706055","--pf-t--global--font--line-height--figma-only--700":"36.400001525878906","--pf-t--global--font--line-height--figma-only--600":"28.600000381469727","--pf-t--global--font--line-height--figma-only--500":"26","--pf-t--global--font--line-height--figma-only--400":"23.399999618530273","--pf-t--global--font--line-height--figma-only--300":"24","--pf-t--global--font--line-height--figma-only--200":"21","--pf-t--global--font--line-height--figma-only--100":"18","--pf-t--global--font--line-height--200":"1.5","--pf-t--global--font--line-height--100":"1.2999999523162842","--pf-t--global--font--family--300":"Red Hat Mono VF","--pf-t--global--font--family--200":"Red Hat Display VF","--pf-t--global--font--family--100":"Red Hat Text VF","--pf-t--global--border--radius--500":"999px","--pf-t--global--border--radius--400":"24px","--pf-t--global--border--radius--300":"16px","--pf-t--global--border--radius--200":"6px","--pf-t--global--border--radius--100":"4px","--pf-t--global--border--radius--0":"0px","--pf-t--global--border--width--300":"3px","--pf-t--global--border--width--200":"2px","--pf-t--global--border--width--100":"1px","--pf-t--global--icon--size--500":"96px","--pf-t--global--icon--size--400":"56px","--pf-t--global--icon--size--300":"22px","--pf-t--global--icon--size--250":"16px","--pf-t--global--icon--size--200":"14px","--pf-t--global--icon--size--100":"12px","--pf-t--global--spacer--800":"80px","--pf-t--global--spacer--700":"64px","--pf-t--global--spacer--600":"48px","--pf-t--global--spacer--500":"32px","--pf-t--global--spacer--400":"24px","--pf-t--global--spacer--300":"16px","--pf-t--global--spacer--200":"8px","--pf-t--global--spacer--100":"4px","--pf-t--global--motion--timing-function--decelerate":"--pf-t--global--timing-function--300","--pf-t--global--motion--timing-function--default":"--pf-t--global--timing-function--200","--pf-t--global--motion--timing-function--accelerate":"--pf-t--global--timing-function--100","--pf-t--global--motion--delay--long":"--pf-t--global--delay--400","--pf-t--global--motion--delay--default":"--pf-t--global--delay--300","--pf-t--global--motion--delay--short":"--pf-t--global--delay--200","--pf-t--global--motion--delay--none":"--pf-t--global--delay--100","--pf-t--global--motion--duration--3xl":"--pf-t--global--duration--600","--pf-t--global--motion--duration--2xl":"--pf-t--global--duration--500","--pf-t--global--motion--duration--xl":"--pf-t--global--duration--400","--pf-t--global--motion--duration--lg":"--pf-t--global--duration--300","--pf-t--global--motion--duration--md":"--pf-t--global--duration--200","--pf-t--global--motion--duration--sm":"--pf-t--global--duration--100","--pf-t--global--motion--duration--xs":"--pf-t--global--duration--50","--pf-t--global--text--color--link--300":"--pf-t--color--purple--50","--pf-t--global--text--color--link--200":"--pf-t--color--blue--60","--pf-t--global--text--color--link--100":"--pf-t--color--blue--50","--pf-t--global--text--color--400":"--pf-t--color--red-orange--40","--pf-t--global--text--color--300":"--pf-t--color--white","--pf-t--global--text--color--200":"--pf-t--color--gray--60","--pf-t--global--text--color--100":"--pf-t--color--gray--90","--pf-t--global--color--nonstatus--gray--300":"--pf-t--color--gray--40","--pf-t--global--color--nonstatus--gray--200":"--pf-t--color--gray--30","--pf-t--global--color--nonstatus--gray--100":"--pf-t--color--gray--20","--pf-t--global--color--nonstatus--purple--300":"--pf-t--color--purple--40","--pf-t--global--color--nonstatus--purple--200":"--pf-t--color--purple--30","--pf-t--global--color--nonstatus--purple--100":"--pf-t--color--purple--20","--pf-t--global--color--nonstatus--blue--300":"--pf-t--color--blue--40","--pf-t--global--color--nonstatus--blue--200":"--pf-t--color--blue--30","--pf-t--global--color--nonstatus--blue--100":"--pf-t--color--blue--20","--pf-t--global--color--nonstatus--cyan--300":"--pf-t--color--teal--40","--pf-t--global--color--nonstatus--cyan--200":"--pf-t--color--teal--30","--pf-t--global--color--nonstatus--cyan--100":"--pf-t--color--teal--20","--pf-t--global--color--nonstatus--green--300":"--pf-t--color--green--40","--pf-t--global--color--nonstatus--green--200":"--pf-t--color--green--30","--pf-t--global--color--nonstatus--green--100":"--pf-t--color--green--20","--pf-t--global--color--nonstatus--gold--300":"--pf-t--color--yellow--40","--pf-t--global--color--nonstatus--gold--200":"--pf-t--color--yellow--30","--pf-t--global--color--nonstatus--gold--100":"--pf-t--color--yellow--20","--pf-t--global--color--nonstatus--orange--300":"--pf-t--color--orange--40","--pf-t--global--color--nonstatus--orange--200":"--pf-t--color--orange--30","--pf-t--global--color--nonstatus--orange--100":"--pf-t--color--orange--20","--pf-t--global--color--nonstatus--orangered--300":"--pf-t--color--red-orange--40","--pf-t--global--color--nonstatus--orangered--200":"--pf-t--color--red-orange--30","--pf-t--global--color--nonstatus--orangered--100":"--pf-t--color--red-orange--20","--pf-t--global--color--nonstatus--red--300":"--pf-t--color--red--40","--pf-t--global--color--nonstatus--red--200":"--pf-t--color--red--30","--pf-t--global--color--nonstatus--red--100":"--pf-t--color--red--20","--pf-t--global--color--severity--critical--100":"--pf-t--color--red-orange--60","--pf-t--global--color--severity--important--100":"--pf-t--color--orange--50","--pf-t--global--color--severity--moderate--100":"--pf-t--color--yellow--40","--pf-t--global--color--severity--minor--100":"--pf-t--color--gray--50","--pf-t--global--color--severity--none--100":"--pf-t--color--blue--40","--pf-t--global--color--severity--undefined--100":"--pf-t--color--gray--30","--pf-t--global--color--status--custom--200":"--pf-t--color--teal--70","--pf-t--global--color--status--custom--100":"--pf-t--color--teal--60","--pf-t--global--color--status--info--200":"--pf-t--color--purple--60","--pf-t--global--color--status--info--100":"--pf-t--color--purple--50","--pf-t--global--color--status--danger--300":"--pf-t--color--red-orange--70","--pf-t--global--color--status--danger--200":"--pf-t--color--red-orange--70","--pf-t--global--color--status--danger--100":"--pf-t--color--red-orange--60","--pf-t--global--color--status--warning--300":"--pf-t--color--yellow--50","--pf-t--global--color--status--warning--200":"--pf-t--color--yellow--40","--pf-t--global--color--status--warning--100":"--pf-t--color--yellow--30","--pf-t--global--color--status--success--200":"--pf-t--color--green--70","--pf-t--global--color--status--success--100":"--pf-t--color--green--60","--pf-t--global--color--favorite--200":"--pf-t--color--yellow--40","--pf-t--global--color--favorite--100":"--pf-t--color--yellow--30","--pf-t--global--color--disabled--300":"--pf-t--color--gray--60","--pf-t--global--color--disabled--200":"--pf-t--color--gray--40","--pf-t--global--color--disabled--100":"--pf-t--color--gray--30","--pf-t--global--color--brand--300":"--pf-t--color--blue--60","--pf-t--global--color--brand--200":"--pf-t--color--blue--50","--pf-t--global--color--brand--100":"--pf-t--color--blue--40","--pf-t--global--background--color--backdrop--default":"--pf-t--global--dark--background--color--500","--pf-t--global--background--color--action--plain--clicked":"--pf-t--global--dark--background--color--600","--pf-t--global--background--color--action--plain--hover":"--pf-t--global--dark--background--color--600","--pf-t--global--background--color--highlight--200":"--pf-t--color--yellow--40","--pf-t--global--background--color--highlight--100":"--pf-t--color--yellow--30","--pf-t--global--background--color--400":"--pf-t--color--gray--80","--pf-t--global--background--color--300":"--pf-t--color--gray--20","--pf-t--global--background--color--200":"--pf-t--color--gray--10","--pf-t--global--background--color--100":"--pf-t--color--white","--pf-t--global--breakpoint--height--2xl":"--pf-t--global--breakpoint--550","--pf-t--global--breakpoint--height--xl":"--pf-t--global--breakpoint--350","--pf-t--global--breakpoint--height--lg":"--pf-t--global--breakpoint--300","--pf-t--global--breakpoint--height--md":"--pf-t--global--breakpoint--250","--pf-t--global--breakpoint--height--sm":"--pf-t--global--breakpoint--100","--pf-t--global--breakpoint--2xl":"--pf-t--global--breakpoint--600","--pf-t--global--breakpoint--xl":"--pf-t--global--breakpoint--500","--pf-t--global--breakpoint--lg":"--pf-t--global--breakpoint--400","--pf-t--global--breakpoint--md":"--pf-t--global--breakpoint--300","--pf-t--global--breakpoint--sm":"--pf-t--global--breakpoint--200","--pf-t--global--breakpoint--xs":"--pf-t--global--breakpoint--100","--pf-t--global--box-shadow--color--lg":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--color--md":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--color--sm":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--spread--lg":"--pf-t--global--box-shadow--spread--100","--pf-t--global--box-shadow--spread--md":"--pf-t--global--box-shadow--spread--100","--pf-t--global--box-shadow--spread--sm":"--pf-t--global--box-shadow--spread--100","--pf-t--global--box-shadow--blur--lg":"--pf-t--global--box-shadow--blur--300","--pf-t--global--box-shadow--blur--md":"--pf-t--global--box-shadow--blur--200","--pf-t--global--box-shadow--blur--sm":"--pf-t--global--box-shadow--blur--100","--pf-t--global--box-shadow--Y--lg--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--lg--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--lg--bottom":"--pf-t--global--box-shadow--Y--700","--pf-t--global--box-shadow--Y--lg--top":"--pf-t--global--box-shadow--Y--100","--pf-t--global--box-shadow--Y--lg--default":"--pf-t--global--box-shadow--Y--700","--pf-t--global--box-shadow--Y--md--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--md--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--md--bottom":"--pf-t--global--box-shadow--Y--600","--pf-t--global--box-shadow--Y--md--top":"--pf-t--global--box-shadow--Y--200","--pf-t--global--box-shadow--Y--md--default":"--pf-t--global--box-shadow--Y--600","--pf-t--global--box-shadow--Y--sm--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--sm--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--sm--bottom":"--pf-t--global--box-shadow--Y--500","--pf-t--global--box-shadow--Y--sm--top":"--pf-t--global--box-shadow--Y--300","--pf-t--global--box-shadow--Y--sm--default":"--pf-t--global--box-shadow--Y--500","--pf-t--global--box-shadow--X--lg--right":"--pf-t--global--box-shadow--X--700","--pf-t--global--box-shadow--X--lg--left":"--pf-t--global--box-shadow--X--100","--pf-t--global--box-shadow--X--lg--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--lg--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--lg--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--right":"--pf-t--global--box-shadow--X--600","--pf-t--global--box-shadow--X--md--left":"--pf-t--global--box-shadow--X--200","--pf-t--global--box-shadow--X--md--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--right":"--pf-t--global--box-shadow--X--500","--pf-t--global--box-shadow--X--sm--left":"--pf-t--global--box-shadow--X--300","--pf-t--global--box-shadow--X--sm--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--z-index--2xl":"--pf-t--global--z-index--600","--pf-t--global--z-index--xl":"--pf-t--global--z-index--500","--pf-t--global--z-index--lg":"--pf-t--global--z-index--400","--pf-t--global--z-index--md":"--pf-t--global--z-index--300","--pf-t--global--z-index--sm":"--pf-t--global--z-index--200","--pf-t--global--z-index--xs":"--pf-t--global--z-index--100","--pf-t--global--font--size--4xl":"--pf-t--global--font--size--800","--pf-t--global--font--size--3xl":"--pf-t--global--font--size--700","--pf-t--global--font--size--2xl":"--pf-t--global--font--size--600","--pf-t--global--font--size--xl":"--pf-t--global--font--size--500","--pf-t--global--font--size--lg":"--pf-t--global--font--size--400","--pf-t--global--font--size--md":"--pf-t--global--font--size--300","--pf-t--global--font--size--sm":"--pf-t--global--font--size--200","--pf-t--global--font--size--xs":"--pf-t--global--font--size--100","--pf-t--global--font--line-height--heading":"--pf-t--global--font--line-height--200","--pf-t--global--font--line-height--body":"--pf-t--global--font--line-height--100","--pf-t--global--font--line-height--figma-only--heading--2xl":"--pf-t--global--font--line-height--figma-only--800","--pf-t--global--font--line-height--figma-only--heading--xl":"--pf-t--global--font--line-height--figma-only--700","--pf-t--global--font--line-height--figma-only--heading--lg":"--pf-t--global--font--line-height--figma-only--600","--pf-t--global--font--line-height--figma-only--heading--md":"--pf-t--global--font--line-height--figma-only--500","--pf-t--global--font--line-height--figma-only--heading--sm":"--pf-t--global--font--line-height--figma-only--400","--pf-t--global--font--line-height--figma-only--heading--xs":"--pf-t--global--font--line-height--figma-only--300","--pf-t--global--font--line-height--figma-only--body--large":"--pf-t--global--font--line-height--figma-only--300","--pf-t--global--font--line-height--figma-only--body--default":"--pf-t--global--font--line-height--figma-only--200","--pf-t--global--font--line-height--figma-only--body--small":"--pf-t--global--font--line-height--figma-only--100","--pf-t--global--font--weight--heading":"{global.font.weight.heading.100}","--pf-t--global--font--weight--body":"{global.font.weight.body.100}","--pf-t--global--font--family--mono":"--pf-t--global--font--family--300","--pf-t--global--font--family--heading":"--pf-t--global--font--family--200","--pf-t--global--font--family--body":"--pf-t--global--font--family--100","--pf-t--global--border--color--300":"--pf-t--color--gray--50","--pf-t--global--border--color--200":"--pf-t--color--gray--40","--pf-t--global--border--color--100":"--pf-t--color--gray--30","--pf-t--global--border--radius--pill":"--pf-t--global--border--radius--500","--pf-t--global--border--radius--large":"--pf-t--global--border--radius--400","--pf-t--global--border--radius--medium":"--pf-t--global--border--radius--300","--pf-t--global--border--radius--small":"--pf-t--global--border--radius--200","--pf-t--global--border--radius--tiny":"--pf-t--global--border--radius--100","--pf-t--global--border--radius--sharp":"--pf-t--global--border--radius--0","--pf-t--global--border--width--control--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--control--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--control--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--button--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--button--hover":"--pf-t--global--border--width--200","--pf-t--global--border--width--button--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--box--status--read":"--pf-t--global--border--width--100","--pf-t--global--border--width--box--status--default":"--pf-t--global--border--width--200","--pf-t--global--border--width--box--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--box--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--box--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--extra-strong":"--pf-t--global--border--width--300","--pf-t--global--border--width--strong":"--pf-t--global--border--width--200","--pf-t--global--border--width--divider--clicked":"--pf-t--global--border--width--100","--pf-t--global--border--width--divider--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--divider--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--regular":"--pf-t--global--border--width--100","--pf-t--global--icon--color--300":"--pf-t--color--white","--pf-t--global--icon--color--200":"--pf-t--color--gray--50","--pf-t--global--icon--color--100":"--pf-t--color--gray--90","--pf-t--global--icon--size--3xl":"--pf-t--global--icon--size--500","--pf-t--global--icon--size--2xl":"--pf-t--global--icon--size--400","--pf-t--global--icon--size--xl":"--pf-t--global--icon--size--300","--pf-t--global--icon--size--lg":"--pf-t--global--icon--size--250","--pf-t--global--icon--size--md":"--pf-t--global--icon--size--200","--pf-t--global--icon--size--sm":"--pf-t--global--icon--size--100","--pf-t--global--spacer--button--vertical--compact":"--pf-t--global--spacer--100","--pf-t--global--spacer--button--horizontal--compact":"--pf-t--global--spacer--300","--pf-t--global--spacer--control--horizontal--compact":"--pf-t--global--spacer--200","--pf-t--global--spacer--control--vertical--compact":"--pf-t--global--spacer--100","--pf-t--global--spacer--4xl":"--pf-t--global--spacer--800","--pf-t--global--spacer--3xl":"--pf-t--global--spacer--700","--pf-t--global--spacer--2xl":"--pf-t--global--spacer--600","--pf-t--global--spacer--xl":"--pf-t--global--spacer--500","--pf-t--global--spacer--lg":"--pf-t--global--spacer--400","--pf-t--global--spacer--md":"--pf-t--global--spacer--300","--pf-t--global--spacer--sm":"--pf-t--global--spacer--200","--pf-t--global--spacer--xs":"--pf-t--global--spacer--100","--pf-t--global--motion--duration--icon--long":"--pf-t--global--motion--duration--md","--pf-t--global--motion--duration--icon--default":"--pf-t--global--motion--duration--sm","--pf-t--global--motion--duration--icon--short":"--pf-t--global--motion--duration--xs","--pf-t--global--motion--duration--slide-in--long":"--pf-t--global--motion--duration--2xl","--pf-t--global--motion--duration--slide-in--default":"--pf-t--global--motion--duration--xl","--pf-t--global--motion--duration--slide-in--short":"--pf-t--global--motion--duration--lg","--pf-t--global--motion--duration--slide-out--long":"--pf-t--global--motion--duration--2xl","--pf-t--global--motion--duration--slide-out--default":"--pf-t--global--motion--duration--xl","--pf-t--global--motion--duration--slide-out--short":"--pf-t--global--motion--duration--lg","--pf-t--global--motion--duration--fade--long":"--pf-t--global--motion--duration--lg","--pf-t--global--motion--duration--fade--default":"--pf-t--global--motion--duration--md","--pf-t--global--motion--duration--fade--short":"--pf-t--global--motion--duration--sm","--pf-t--global--text--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--text--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--text--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--text--color--on-highlight":"--pf-t--global--dark--text--color--300","--pf-t--global--text--color--required":"--pf-t--global--dark--text--color--400","--pf-t--global--text--color--on-disabled":"--pf-t--global--dark--color--disabled--300","--pf-t--global--text--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--text--color--inverse":"--pf-t--global--dark--text--color--300","--pf-t--global--text--color--subtle":"--pf-t--global--dark--text--color--200","--pf-t--global--text--color--regular":"--pf-t--global--dark--text--color--100","--pf-t--global--text--color--link--visited":"--pf-t--global--dark--text--color--link--300","--pf-t--global--text--color--link--hover":"--pf-t--global--dark--text--color--link--200","--pf-t--global--text--color--link--default":"--pf-t--global--dark--text--color--link--100","--pf-t--global--color--nonstatus--teal--clicked":"--pf-t--global--dark--color--nonstatus--cyan--200","--pf-t--global--color--nonstatus--teal--hover":"--pf-t--global--dark--color--nonstatus--cyan--200","--pf-t--global--color--nonstatus--teal--default":"--pf-t--global--dark--color--nonstatus--cyan--100","--pf-t--global--color--nonstatus--yellow--clicked":"--pf-t--global--dark--color--nonstatus--gold--200","--pf-t--global--color--nonstatus--yellow--hover":"--pf-t--global--dark--color--nonstatus--gold--200","--pf-t--global--color--nonstatus--yellow--default":"--pf-t--global--dark--color--nonstatus--gold--100","--pf-t--global--color--nonstatus--gray--clicked":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--color--nonstatus--gray--hover":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--color--nonstatus--gray--default":"--pf-t--global--dark--color--nonstatus--gray--100","--pf-t--global--color--nonstatus--purple--clicked":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--color--nonstatus--purple--hover":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--color--nonstatus--purple--default":"--pf-t--global--dark--color--nonstatus--purple--100","--pf-t--global--color--nonstatus--blue--clicked":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--color--nonstatus--blue--hover":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--color--nonstatus--blue--default":"--pf-t--global--dark--color--nonstatus--blue--100","--pf-t--global--color--nonstatus--green--clicked":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--color--nonstatus--green--hover":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--color--nonstatus--green--default":"--pf-t--global--dark--color--nonstatus--green--100","--pf-t--global--color--nonstatus--orange--clicked":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--color--nonstatus--orange--hover":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--color--nonstatus--orange--default":"--pf-t--global--dark--color--nonstatus--orange--100","--pf-t--global--color--nonstatus--orangered--clicked":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--color--nonstatus--orangered--hover":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--color--nonstatus--orangered--default":"--pf-t--global--dark--color--nonstatus--orangered--100","--pf-t--global--color--nonstatus--red--clicked":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--color--nonstatus--red--hover":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--color--nonstatus--red--default":"--pf-t--global--dark--color--nonstatus--red--100","--pf-t--global--color--status--custom--clicked":"--pf-t--global--dark--color--status--custom--200","--pf-t--global--color--status--custom--hover":"--pf-t--global--dark--color--status--custom--200","--pf-t--global--color--status--custom--default":"--pf-t--global--dark--color--status--custom--100","--pf-t--global--color--status--info--clicked":"--pf-t--global--dark--color--status--info--200","--pf-t--global--color--status--info--hover":"--pf-t--global--dark--color--status--info--200","--pf-t--global--color--status--info--default":"--pf-t--global--dark--color--status--info--100","--pf-t--global--color--status--danger--clicked":"--pf-t--global--dark--color--status--danger--200","--pf-t--global--color--status--danger--hover":"--pf-t--global--dark--color--status--danger--200","--pf-t--global--color--status--danger--default":"--pf-t--global--dark--color--status--danger--100","--pf-t--global--color--status--warning--clicked":"--pf-t--global--dark--color--status--warning--200","--pf-t--global--color--status--warning--hover":"--pf-t--global--dark--color--status--warning--200","--pf-t--global--color--status--warning--default":"--pf-t--global--dark--color--status--warning--100","--pf-t--global--color--status--success--clicked":"--pf-t--global--dark--color--status--success--200","--pf-t--global--color--status--success--hover":"--pf-t--global--dark--color--status--success--200","--pf-t--global--color--status--success--default":"--pf-t--global--dark--color--status--success--100","--pf-t--global--color--favorite--clicked":"--pf-t--global--dark--color--favorite--200","--pf-t--global--color--favorite--hover":"--pf-t--global--dark--color--favorite--200","--pf-t--global--color--favorite--default":"--pf-t--global--dark--color--favorite--100","--pf-t--global--color--brand--clicked":"--pf-t--global--dark--color--brand--200","--pf-t--global--color--brand--hover":"--pf-t--global--dark--color--brand--200","--pf-t--global--color--brand--default":"--pf-t--global--dark--color--brand--100","--pf-t--global--background--color--disabled--default":"--pf-t--global--dark--color--disabled--100","--pf-t--global--background--color--inverse--default":"--pf-t--global--dark--background--color--400","--pf-t--global--background--color--action--plain--alt--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--action--plain--alt--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--floating--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--floating--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--floating--default":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--secondary--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--secondary--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--secondary--default":"--pf-t--global--dark--background--color--100","--pf-t--global--background--color--primary--clicked":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--primary--hover":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--primary--default":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--highlight--clicked":"--pf-t--global--dark--background--color--highlight--200","--pf-t--global--background--color--highlight--default":"--pf-t--global--dark--background--color--highlight--100","--pf-t--global--font--size--heading--h6":"--pf-t--global--font--size--md","--pf-t--global--font--size--heading--h5":"--pf-t--global--font--size--md","--pf-t--global--font--size--heading--h4":"--pf-t--global--font--size--md","--pf-t--global--font--size--heading--h3":"--pf-t--global--font--size--lg","--pf-t--global--font--size--heading--h2":"--pf-t--global--font--size--xl","--pf-t--global--font--size--heading--h1":"--pf-t--global--font--size--2xl","--pf-t--global--font--size--body--lg":"--pf-t--global--font--size--md","--pf-t--global--font--size--body--default":"--pf-t--global--font--size--sm","--pf-t--global--font--size--body--sm":"--pf-t--global--font--size--xs","--pf-t--global--border--color--nonstatus--gray--clicked":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--border--color--nonstatus--gray--hover":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--border--color--nonstatus--gray--default":"--pf-t--global--dark--color--nonstatus--gray--100","--pf-t--global--border--color--nonstatus--purple--clicked":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--border--color--nonstatus--purple--hover":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--border--color--nonstatus--purple--default":"--pf-t--global--dark--color--nonstatus--purple--100","--pf-t--global--border--color--nonstatus--blue--clicked":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--border--color--nonstatus--blue--hover":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--border--color--nonstatus--blue--default":"--pf-t--global--dark--color--nonstatus--blue--100","--pf-t--global--border--color--nonstatus--teal--clicked":"--pf-t--global--dark--color--nonstatus--cyan--200","--pf-t--global--border--color--nonstatus--teal--hover":"--pf-t--global--dark--color--nonstatus--cyan--200","--pf-t--global--border--color--nonstatus--teal--default":"--pf-t--global--dark--color--nonstatus--cyan--100","--pf-t--global--border--color--nonstatus--green--clicked":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--border--color--nonstatus--green--hover":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--border--color--nonstatus--green--default":"--pf-t--global--dark--color--nonstatus--green--100","--pf-t--global--border--color--nonstatus--yellow--clicked":"--pf-t--global--dark--color--nonstatus--gold--200","--pf-t--global--border--color--nonstatus--yellow--hover":"--pf-t--global--dark--color--nonstatus--gold--200","--pf-t--global--border--color--nonstatus--yellow--default":"--pf-t--global--dark--color--nonstatus--gold--100","--pf-t--global--border--color--nonstatus--orange--clicked":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--border--color--nonstatus--orange--hover":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--border--color--nonstatus--orange--default":"--pf-t--global--dark--color--nonstatus--orange--100","--pf-t--global--border--color--nonstatus--orangered--clicked":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--border--color--nonstatus--orangered--hover":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--border--color--nonstatus--orangered--default":"--pf-t--global--dark--color--nonstatus--orangered--100","--pf-t--global--border--color--nonstatus--red--clicked":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--border--color--nonstatus--red--hover":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--border--color--nonstatus--red--default":"--pf-t--global--dark--color--nonstatus--red--100","--pf-t--global--border--color--on-secondary":"--pf-t--global--dark--border--color--200","--pf-t--global--border--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--border--color--clicked":"--pf-t--global--dark--color--brand--200","--pf-t--global--border--color--hover":"--pf-t--global--dark--color--brand--100","--pf-t--global--border--color--default":"--pf-t--global--dark--border--color--200","--pf-t--global--border--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--border--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--border--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--icon--color--severity--critical--default":"--pf-t--global--dark--color--severity--critical--100","--pf-t--global--icon--color--severity--important--default":"--pf-t--global--dark--color--severity--important--100","--pf-t--global--icon--color--severity--moderate--default":"--pf-t--global--dark--color--severity--moderate--100","--pf-t--global--icon--color--severity--minor--default":"--pf-t--global--dark--color--severity--minor--100","--pf-t--global--icon--color--severity--none--default":"--pf-t--global--dark--color--severity--none--100","--pf-t--global--icon--color--severity--undefined--default":"--pf-t--global--dark--color--severity--undefined--100","--pf-t--global--icon--color--on-disabled":"--pf-t--global--dark--color--disabled--300","--pf-t--global--icon--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--icon--color--inverse":"--pf-t--global--dark--icon--color--300","--pf-t--global--icon--color--subtle":"--pf-t--global--dark--icon--color--200","--pf-t--global--icon--color--regular":"--pf-t--global--dark--icon--color--100","--pf-t--global--icon--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--icon--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--icon--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--icon--size--font--4xl":"--pf-t--global--font--size--4xl","--pf-t--global--icon--size--font--3xl":"--pf-t--global--font--size--3xl","--pf-t--global--icon--size--font--2xl":"--pf-t--global--font--size--2xl","--pf-t--global--icon--size--font--xl":"--pf-t--global--font--size--xl","--pf-t--global--icon--size--font--lg":"--pf-t--global--font--size--lg","--pf-t--global--icon--size--font--md":"--pf-t--global--font--size--md","--pf-t--global--icon--size--font--sm":"--pf-t--global--font--size--sm","--pf-t--global--icon--size--font--xs":"--pf-t--global--font--size--xs","--pf-t--global--spacer--action--horizontal--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--action--horizontal--default":"--pf-t--global--spacer--lg","--pf-t--global--spacer--action--vertical--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--action--vertical--default":"--pf-t--global--spacer--sm","--pf-t--global--spacer--gap--action-to-action--plain":"--pf-t--global--spacer--xs","--pf-t--global--spacer--gap--action-to-action--default":"--pf-t--global--spacer--md","--pf-t--global--spacer--gap--group-to-group--vertical":"--pf-t--global--spacer--lg","--pf-t--global--spacer--gap--group-to-group--horizontal":"--pf-t--global--spacer--2xl","--pf-t--global--spacer--gap--group--horizontal":"--pf-t--global--spacer--md","--pf-t--global--spacer--gap--group--vertical":"--pf-t--global--spacer--sm","--pf-t--global--spacer--gap--control-to-control--default":"--pf-t--global--spacer--xs","--pf-t--global--spacer--gap--text-to-element--default":"--pf-t--global--spacer--sm","--pf-t--global--spacer--control--horizontal--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--control--horizontal--default":"--pf-t--global--spacer--md","--pf-t--global--spacer--control--vertical--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--control--vertical--default":"--pf-t--global--spacer--sm","--pf-t--global--text--color--nonstatus--on-gray--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gray--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gray--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-blue--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-blue--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-blue--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-teal--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-teal--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-teal--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-yellow--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-yellow--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-yellow--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-attention--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-attention--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-attention--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-custom--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-custom--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-custom--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--text--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--text--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--text--color--status--on-info--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-info--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-info--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--text--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--text--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--text--color--status--on-danger--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-danger--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-danger--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--danger--clicked":"--pf-t--global--dark--color--status--danger--300","--pf-t--global--text--color--status--danger--hover":"--pf-t--global--dark--color--status--danger--300","--pf-t--global--text--color--status--danger--default":"--pf-t--global--dark--color--status--danger--250","--pf-t--global--text--color--status--on-warning--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-warning--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-warning--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--text--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--text--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--text--color--brand--clicked":"--pf-t--global--dark--color--brand--300","--pf-t--global--text--color--brand--hover":"--pf-t--global--dark--color--brand--300","--pf-t--global--text--color--brand--default":"--pf-t--global--dark--color--brand--200","--pf-t--global--text--color--placeholder":"--pf-t--global--text--color--subtle","--pf-t--global--text--color--on-brand--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--on-brand--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--on-brand--default":"--pf-t--global--text--color--inverse","--pf-t--global--color--status--read--on-primary":"--pf-t--global--background--color--secondary--default","--pf-t--global--color--status--unread--attention--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--color--status--unread--attention--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--color--status--unread--attention--default":"--pf-t--global--color--status--danger--default","--pf-t--global--color--status--unread--default--clicked":"--pf-t--global--color--brand--clicked","--pf-t--global--color--status--unread--default--hover":"--pf-t--global--color--brand--hover","--pf-t--global--color--status--unread--default--default":"--pf-t--global--color--brand--default","--pf-t--global--background--color--control--default":"--pf-t--global--dark--background--color--300","--pf-t--global--border--color--alt":"--pf-t--global--background--color--primary--default","--pf-t--global--border--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--border--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--border--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--border--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--border--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--border--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--border--color--status--danger--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--border--color--status--danger--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--border--color--status--danger--default":"--pf-t--global--color--status--danger--default","--pf-t--global--border--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--border--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--border--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--border--color--brand--clicked":"--pf-t--global--color--brand--clicked","--pf-t--global--border--color--brand--hover":"--pf-t--global--color--brand--hover","--pf-t--global--border--color--brand--default":"--pf-t--global--color--brand--default","--pf-t--global--icon--color--nonstatus--on-gray--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gray--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gray--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-blue--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-blue--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-blue--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-teal--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-teal--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-teal--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-yellow--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-yellow--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-yellow--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-attention--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-attention--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-attention--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-custom--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-custom--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-custom--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--icon--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--icon--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--icon--color--status--on-info--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-info--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-info--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--icon--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--icon--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--icon--color--status--on-danger--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-danger--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-danger--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--danger--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--icon--color--status--danger--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--icon--color--status--danger--default":"--pf-t--global--color--status--danger--default","--pf-t--global--icon--color--status--on-warning--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-warning--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-warning--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--icon--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--icon--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--icon--color--favorite--clicked":"--pf-t--global--color--favorite--clicked","--pf-t--global--icon--color--favorite--hover":"--pf-t--global--color--favorite--hover","--pf-t--global--icon--color--favorite--default":"--pf-t--global--color--favorite--default","--pf-t--global--icon--color--on-brand--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--on-brand--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--on-brand--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--brand--clicked":"--pf-t--global--dark--color--brand--300","--pf-t--global--icon--color--brand--hover":"--pf-t--global--dark--color--brand--300","--pf-t--global--icon--color--brand--default":"--pf-t--global--dark--color--brand--200","--pf-t--global--icon--size--font--heading--h6":"--pf-t--global--font--size--heading--h6","--pf-t--global--icon--size--font--heading--h5":"--pf-t--global--font--size--heading--h5","--pf-t--global--icon--size--font--heading--h4":"--pf-t--global--font--size--heading--h4","--pf-t--global--icon--size--font--heading--h3":"--pf-t--global--font--size--heading--h3","--pf-t--global--icon--size--font--heading--h2":"--pf-t--global--font--size--heading--h2","--pf-t--global--icon--size--font--heading--h1":"--pf-t--global--font--size--heading--h1","--pf-t--global--icon--size--font--body--lg":"--pf-t--global--font--size--body--lg","--pf-t--global--icon--size--font--body--default":"--pf-t--global--font--size--body--default","--pf-t--global--icon--size--font--body--sm":"--pf-t--global--font--size--body--sm","--pf-t--global--color--status--read--on-secondary":"--pf-t--global--background--color--control--default","--pf-t--global--dark--box-shadow--color--100":"rgba(0, 0, 0, 0.5000)","--pf-t--global--dark--background--color--600":"rgba(199, 199, 199, 0.1500)","--pf-t--global--dark--background--color--500":"rgba(21, 21, 21, 0.8000)","--pf-t--global--dark--icon--color--300":"--pf-t--color--gray--90","--pf-t--global--dark--icon--color--200":"--pf-t--color--gray--40","--pf-t--global--dark--icon--color--100":"--pf-t--color--gray--10","--pf-t--global--dark--text--color--link--300":"--pf-t--color--purple--30","--pf-t--global--dark--text--color--link--200":"--pf-t--color--blue--10","--pf-t--global--dark--text--color--link--100":"--pf-t--color--blue--20","--pf-t--global--dark--text--color--400":"--pf-t--color--red-orange--30","--pf-t--global--dark--text--color--300":"--pf-t--color--gray--90","--pf-t--global--dark--text--color--200":"--pf-t--color--gray--30","--pf-t--global--dark--text--color--100":"--pf-t--color--gray--10","--pf-t--global--dark--border--color--200":"--pf-t--color--gray--40","--pf-t--global--dark--border--color--100":"--pf-t--color--gray--50","--pf-t--global--dark--color--nonstatus--gray--300":"--pf-t--color--gray--10","--pf-t--global--dark--color--nonstatus--gray--200":"--pf-t--color--gray--20","--pf-t--global--dark--color--nonstatus--gray--100":"--pf-t--color--gray--30","--pf-t--global--dark--color--nonstatus--purple--300":"--pf-t--color--purple--10","--pf-t--global--dark--color--nonstatus--purple--200":"--pf-t--color--purple--20","--pf-t--global--dark--color--nonstatus--purple--100":"--pf-t--color--purple--30","--pf-t--global--dark--color--nonstatus--blue--300":"--pf-t--color--blue--10","--pf-t--global--dark--color--nonstatus--blue--200":"--pf-t--color--blue--20","--pf-t--global--dark--color--nonstatus--blue--100":"--pf-t--color--blue--30","--pf-t--global--dark--color--nonstatus--cyan--300":"--pf-t--color--teal--10","--pf-t--global--dark--color--nonstatus--cyan--200":"--pf-t--color--teal--20","--pf-t--global--dark--color--nonstatus--cyan--100":"--pf-t--color--teal--30","--pf-t--global--dark--color--nonstatus--green--300":"--pf-t--color--green--10","--pf-t--global--dark--color--nonstatus--green--200":"--pf-t--color--green--20","--pf-t--global--dark--color--nonstatus--green--100":"--pf-t--color--green--30","--pf-t--global--dark--color--nonstatus--gold--300":"--pf-t--color--yellow--10","--pf-t--global--dark--color--nonstatus--gold--200":"--pf-t--color--yellow--20","--pf-t--global--dark--color--nonstatus--gold--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--nonstatus--orange--300":"--pf-t--color--orange--10","--pf-t--global--dark--color--nonstatus--orange--200":"--pf-t--color--orange--20","--pf-t--global--dark--color--nonstatus--orange--100":"--pf-t--color--orange--30","--pf-t--global--dark--color--nonstatus--orangered--300":"--pf-t--color--red-orange--10","--pf-t--global--dark--color--nonstatus--orangered--200":"--pf-t--color--red-orange--20","--pf-t--global--dark--color--nonstatus--orangered--100":"--pf-t--color--red-orange--30","--pf-t--global--dark--color--nonstatus--red--300":"--pf-t--color--red--10","--pf-t--global--dark--color--nonstatus--red--200":"--pf-t--color--red--20","--pf-t--global--dark--color--nonstatus--red--100":"--pf-t--color--red--30","--pf-t--global--dark--color--status--custom--200":"--pf-t--color--teal--30","--pf-t--global--dark--color--status--custom--100":"--pf-t--color--teal--40","--pf-t--global--dark--color--status--info--200":"--pf-t--color--purple--20","--pf-t--global--dark--color--status--info--100":"--pf-t--color--purple--30","--pf-t--global--dark--color--status--danger--300":"--pf-t--color--red-orange--20","--pf-t--global--dark--color--status--danger--250":"--pf-t--color--red-orange--30","--pf-t--global--dark--color--status--danger--200":"--pf-t--color--red-orange--40","--pf-t--global--dark--color--status--danger--100":"--pf-t--color--red-orange--50","--pf-t--global--dark--color--status--warning--200":"--pf-t--color--yellow--20","--pf-t--global--dark--color--status--warning--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--status--success--200":"--pf-t--color--green--30","--pf-t--global--dark--color--status--success--100":"--pf-t--color--green--40","--pf-t--global--dark--color--severity--critical--100":"--pf-t--color--red-orange--50","--pf-t--global--dark--color--severity--important--100":"--pf-t--color--orange--40","--pf-t--global--dark--color--severity--moderate--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--severity--minor--100":"--pf-t--color--gray--30","--pf-t--global--dark--color--severity--none--100":"--pf-t--color--blue--30","--pf-t--global--dark--color--severity--undefined--100":"--pf-t--color--gray--40","--pf-t--global--dark--color--favorite--200":"--pf-t--color--yellow--20","--pf-t--global--dark--color--favorite--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--disabled--300":"--pf-t--color--gray--70","--pf-t--global--dark--color--disabled--200":"--pf-t--color--gray--50","--pf-t--global--dark--color--disabled--100":"--pf-t--color--gray--40","--pf-t--global--dark--color--brand--300":"--pf-t--color--blue--10","--pf-t--global--dark--color--brand--200":"--pf-t--color--blue--20","--pf-t--global--dark--color--brand--100":"--pf-t--color--blue--30","--pf-t--global--dark--background--color--highlight--200":"--pf-t--color--yellow--30","--pf-t--global--dark--background--color--highlight--100":"--pf-t--color--yellow--20","--pf-t--global--dark--background--color--400":"--pf-t--color--gray--10","--pf-t--global--dark--background--color--300":"--pf-t--color--gray--70","--pf-t--global--dark--background--color--200":"--pf-t--color--gray--80","--pf-t--global--dark--background--color--100":"--pf-t--color--gray--95","--pf-t--chart--global--stroke-line-join":"round","--pf-t--chart--global--layout--width":"450","--pf-t--chart--global--layout--height":"300","--pf-t--chart--global--layout--padding":"50","--pf-t--chart--global--label--text-anchor":"middle","--pf-t--chart--global--label--stroke":"transparent","--pf-t--chart--global--label--margin":"8","--pf-t--chart--global--label--padding":"10","--pf-t--chart--global--stroke-line-cap":"round","--pf-t--chart--global--letter-spacing":"normal","--pf-t--chart--global--FontSize--2xl":"22","--pf-t--chart--global--FontSize--lg":"18","--pf-t--chart--global--FontSize--sm":"14","--pf-t--chart--global--FontSize--xs":"12","--pf-t--chart--global--stroke--width--sm":"2","--pf-t--chart--global--stroke--width--xs":"1","--pf-t--chart--global--BorderWidth--lg":"8","--pf-t--chart--global--BorderWidth--sm":"2","--pf-t--chart--global--BorderWidth--xs":"1","--pf-t--chart--global--label--fill":"--pf-t--color--white","--pf-t--chart--global--danger--color--100":"--pf-t--color--red-orange--50","--pf-t--chart--global--success--color--100":"--pf-t--color--blue--30","--pf-t--chart--global--warning--color--200":"--pf-t--color--yellow--30","--pf-t--chart--global--warning--color--100":"--pf-t--color--orange--30","--pf-t--chart--global--fill--color--white":"--pf-t--color--white","--pf-t--chart--global--fill--color--900":"--pf-t--color--white","--pf-t--chart--global--fill--color--700":"--pf-t--color--gray--10","--pf-t--chart--global--fill--color--500":"--pf-t--color--gray--20","--pf-t--chart--global--fill--color--400":"--pf-t--color--gray--30","--pf-t--chart--global--fill--color--300":"--pf-t--color--gray--40","--pf-t--chart--global--fill--color--200":"--pf-t--color--gray--50","--pf-t--chart--global--fill--color--100":"--pf-t--color--gray--60","--pf-t--chart--color--black--500":"--pf-t--color--gray--10","--pf-t--chart--color--black--400":"--pf-t--color--gray--20","--pf-t--chart--color--black--300":"--pf-t--color--gray--30","--pf-t--chart--color--black--200":"--pf-t--color--gray--40","--pf-t--chart--color--black--100":"--pf-t--color--gray--50","--pf-t--chart--color--red-orange--500":"--pf-t--color--red-orange--10","--pf-t--chart--color--red-orange--400":"--pf-t--color--red-orange--20","--pf-t--chart--color--red-orange--300":"--pf-t--color--red-orange--30","--pf-t--chart--color--red-orange--200":"--pf-t--color--red-orange--40","--pf-t--chart--color--red-orange--100":"--pf-t--color--red-orange--50","--pf-t--chart--color--orange--500":"--pf-t--color--orange--10","--pf-t--chart--color--orange--400":"--pf-t--color--orange--20","--pf-t--chart--color--orange--300":"--pf-t--color--orange--30","--pf-t--chart--color--orange--200":"--pf-t--color--orange--40","--pf-t--chart--color--orange--100":"--pf-t--color--orange--50","--pf-t--chart--color--yellow--500":"--pf-t--color--yellow--10","--pf-t--chart--color--yellow--400":"--pf-t--color--yellow--20","--pf-t--chart--color--yellow--300":"--pf-t--color--yellow--30","--pf-t--chart--color--yellow--200":"--pf-t--color--yellow--40","--pf-t--chart--color--yellow--100":"--pf-t--color--yellow--50","--pf-t--chart--color--purple--500":"--pf-t--color--purple--20","--pf-t--chart--color--purple--400":"--pf-t--color--purple--30","--pf-t--chart--color--purple--300":"--pf-t--color--purple--40","--pf-t--chart--color--purple--200":"--pf-t--color--purple--50","--pf-t--chart--color--purple--100":"--pf-t--color--purple--60","--pf-t--chart--color--teal--500":"--pf-t--color--teal--10","--pf-t--chart--color--teal--400":"--pf-t--color--teal--20","--pf-t--chart--color--teal--300":"--pf-t--color--teal--30","--pf-t--chart--color--teal--200":"--pf-t--color--teal--40","--pf-t--chart--color--teal--100":"--pf-t--color--teal--50","--pf-t--chart--color--green--500":"--pf-t--color--green--10","--pf-t--chart--color--green--400":"--pf-t--color--green--20","--pf-t--chart--color--green--300":"--pf-t--color--green--30","--pf-t--chart--color--green--200":"--pf-t--color--green--40","--pf-t--chart--color--green--100":"--pf-t--color--green--50","--pf-t--chart--color--blue--500":"--pf-t--color--blue--10","--pf-t--chart--color--blue--400":"--pf-t--color--blue--20","--pf-t--chart--color--blue--300":"--pf-t--color--blue--30","--pf-t--chart--color--blue--200":"--pf-t--color--blue--40","--pf-t--chart--color--blue--100":"--pf-t--color--blue--50","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500":"--pf-t--chart--color--black--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200":"--pf-t--chart--color--purple--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000":"--pf-t--chart--color--yellow--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800":"--pf-t--chart--color--black--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500":"--pf-t--chart--color--purple--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100":"--pf-t--chart--color--black--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800":"--pf-t--chart--color--purple--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400":"--pf-t--chart--color--black--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100":"--pf-t--chart--color--purple--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800":"--pf-t--chart--color--blue--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700":"--pf-t--chart--color--black--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400":"--pf-t--chart--color--purple--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400":"--pf-t--chart--color--yellow--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600":"--pf-t--chart--color--blue--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--orange--colorscale--500":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--orange--colorscale--400":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--orange--colorscale--300":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--orange--colorscale--200":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--orange--colorscale--100":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--purple--colorscale--500":"--pf-t--chart--color--purple--400","--pf-t--chart--theme--colorscales--purple--colorscale--400":"--pf-t--chart--color--purple--200","--pf-t--chart--theme--colorscales--purple--colorscale--300":"--pf-t--chart--color--purple--500","--pf-t--chart--theme--colorscales--purple--colorscale--200":"--pf-t--chart--color--purple--100","--pf-t--chart--theme--colorscales--purple--colorscale--100":"--pf-t--chart--color--purple--300","--pf-t--chart--theme--colorscales--green--colorscale--500":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--green--colorscale--400":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--green--colorscale--300":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--green--colorscale--200":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--green--colorscale--100":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--gray--colorscale--500":"--pf-t--chart--color--black--400","--pf-t--chart--theme--colorscales--gray--colorscale--400":"--pf-t--chart--color--black--200","--pf-t--chart--theme--colorscales--gray--colorscale--300":"--pf-t--chart--color--black--500","--pf-t--chart--theme--colorscales--gray--colorscale--200":"--pf-t--chart--color--black--100","--pf-t--chart--theme--colorscales--gray--colorscale--100":"--pf-t--chart--color--black--300","--pf-t--chart--theme--colorscales--yellow--colorscale--500":"--pf-t--chart--color--yellow--400","--pf-t--chart--theme--colorscales--yellow--colorscale--400":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--yellow--colorscale--300":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--yellow--colorscale--200":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--yellow--colorscale--100":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--teal--colorscale--500":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--teal--colorscale--400":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--teal--colorscale--300":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--teal--colorscale--200":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--teal--colorscale--100":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--blue--colorscale--500":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--blue--colorscale--400":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--blue--colorscale--300":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--blue--colorscale--200":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--blue--colorscale--100":"--pf-t--chart--color--blue--300"} +{"--pf-t--color--red--70":"#5f0000","--pf-t--color--red--60":"#a60000","--pf-t--color--red--50":"#ee0000","--pf-t--color--red--40":"#f56e6e","--pf-t--color--red--30":"#f9a8a8","--pf-t--color--red--20":"#fbc5c5","--pf-t--color--red--10":"#fce3e3","--pf-t--color--purple--70":"#21134d","--pf-t--color--purple--60":"#3d2785","--pf-t--color--purple--50":"#5e40be","--pf-t--color--purple--40":"#876fd4","--pf-t--color--purple--30":"#b6a6e9","--pf-t--color--purple--20":"#d0c5f4","--pf-t--color--purple--10":"#ece6ff","--pf-t--color--red-orange--70":"#731f00","--pf-t--color--red-orange--60":"#b1380b","--pf-t--color--red-orange--50":"#f0561d","--pf-t--color--red-orange--40":"#f4784a","--pf-t--color--red-orange--30":"#f89b78","--pf-t--color--red-orange--20":"#fbbea8","--pf-t--color--red-orange--10":"#ffe3d9","--pf-t--color--orange--70":"#732e00","--pf-t--color--orange--60":"#9e4a06","--pf-t--color--orange--50":"#ca6c0f","--pf-t--color--orange--40":"#f5921b","--pf-t--color--orange--30":"#f8ae54","--pf-t--color--orange--20":"#fccb8f","--pf-t--color--orange--10":"#ffe8cc","--pf-t--color--green--70":"#204d00","--pf-t--color--green--60":"#3d7317","--pf-t--color--green--50":"#63993d","--pf-t--color--green--40":"#87bb62","--pf-t--color--green--30":"#afdc8f","--pf-t--color--green--20":"#d1f1bb","--pf-t--color--green--10":"#e9f7df","--pf-t--color--yellow--70":"#73480b","--pf-t--color--yellow--60":"#96640f","--pf-t--color--yellow--50":"#b98412","--pf-t--color--yellow--40":"#dca614","--pf-t--color--yellow--30":"#ffcc17","--pf-t--color--yellow--20":"#ffe072","--pf-t--color--yellow--10":"#fff4cc","--pf-t--color--teal--70":"#004d4d","--pf-t--color--teal--60":"#147878","--pf-t--color--teal--50":"#37a3a3","--pf-t--color--teal--40":"#63bdbd","--pf-t--color--teal--30":"#9ad8d8","--pf-t--color--teal--20":"#b9e5e5","--pf-t--color--teal--10":"#daf2f2","--pf-t--color--blue--70":"#003366","--pf-t--color--blue--60":"#004d99","--pf-t--color--blue--50":"#0066cc","--pf-t--color--blue--40":"#4394e5","--pf-t--color--blue--30":"#92c5f9","--pf-t--color--blue--20":"#b9dafc","--pf-t--color--blue--10":"#e0f0ff","--pf-t--color--black":"#000000","--pf-t--color--gray--95":"#151515","--pf-t--color--gray--90":"#1f1f1f","--pf-t--color--gray--80":"#292929","--pf-t--color--gray--70":"#383838","--pf-t--color--gray--60":"#4d4d4d","--pf-t--color--gray--50":"#707070","--pf-t--color--gray--40":"#a3a3a3","--pf-t--color--gray--30":"#c7c7c7","--pf-t--color--gray--20":"#e0e0e0","--pf-t--color--gray--10":"#f2f2f2","--pf-t--color--white":"#ffffff","--pf-t--global--timing-function--300":"cubic-bezier(0, 0, .2, 1)","--pf-t--global--timing-function--200":"cubic-bezier(.4, 0, .2, 1)","--pf-t--global--timing-function--100":"cubic-bezier(.4, 0, .7, .2)","--pf-t--global--delay--400":"7000ms","--pf-t--global--delay--300":"100ms","--pf-t--global--delay--200":"50ms","--pf-t--global--delay--100":"0ms","--pf-t--global--duration--600":"600ms","--pf-t--global--duration--500":"500ms","--pf-t--global--duration--400":"400ms","--pf-t--global--duration--300":"300ms","--pf-t--global--duration--200":"200ms","--pf-t--global--duration--100":"100ms","--pf-t--global--duration--50":"50ms","--pf-t--global--background--color--action--plain--default":"rgba(0, 0, 0, 0.0000)","--pf-t--global--background--color--600":"rgba(199, 199, 199, 0.2500)","--pf-t--global--background--color--500":"rgba(21, 21, 21, 0.2000)","--pf-t--global--breakpoint--600":"1450px","--pf-t--global--breakpoint--550":"1280px","--pf-t--global--breakpoint--500":"1200px","--pf-t--global--breakpoint--400":"992px","--pf-t--global--breakpoint--350":"960px","--pf-t--global--breakpoint--300":"768px","--pf-t--global--breakpoint--250":"640px","--pf-t--global--breakpoint--200":"576px","--pf-t--global--breakpoint--100":"0px","--pf-t--global--box-shadow--color--200":"rgba(0, 0, 0, 0.1200)","--pf-t--global--box-shadow--color--100":"rgba(0, 0, 0, 0.1600)","--pf-t--global--box-shadow--spread--100":"0px","--pf-t--global--box-shadow--blur--300":"24px","--pf-t--global--box-shadow--blur--200":"8px","--pf-t--global--box-shadow--blur--100":"4px","--pf-t--global--box-shadow--Y--700":"8px","--pf-t--global--box-shadow--Y--600":"4px","--pf-t--global--box-shadow--Y--500":"1px","--pf-t--global--box-shadow--Y--400":"0px","--pf-t--global--box-shadow--Y--300":"-1px","--pf-t--global--box-shadow--Y--200":"-4px","--pf-t--global--box-shadow--Y--100":"-8px","--pf-t--global--box-shadow--X--700":"8px","--pf-t--global--box-shadow--X--600":"4px","--pf-t--global--box-shadow--X--500":"1px","--pf-t--global--box-shadow--X--400":"0px","--pf-t--global--box-shadow--X--300":"-1px","--pf-t--global--box-shadow--X--200":"-4px","--pf-t--global--box-shadow--X--100":"-8px","--pf-t--global--z-index--600":"600","--pf-t--global--z-index--500":"500","--pf-t--global--z-index--400":"400","--pf-t--global--z-index--300":"300","--pf-t--global--z-index--200":"200","--pf-t--global--z-index--100":"100","--pf-t--global--font--size--800":"36px","--pf-t--global--font--size--700":"28px","--pf-t--global--font--size--600":"22px","--pf-t--global--font--size--500":"20px","--pf-t--global--font--size--400":"18px","--pf-t--global--font--size--300":"16px","--pf-t--global--font--size--200":"14px","--pf-t--global--font--size--100":"12px","--pf-t--global--font--line-height--200":"1.5","--pf-t--global--font--line-height--100":"1.2999999523162842","--pf-t--global--font--weight--400":"700","--pf-t--global--font--weight--300":"700","--pf-t--global--font--weight--200":"500","--pf-t--global--font--weight--100":"400","--pf-t--global--font--family--300":"Red Hat Mono VF","--pf-t--global--font--family--200":"Red Hat Display VF","--pf-t--global--font--family--100":"Red Hat Text VF","--pf-t--global--border--radius--500":"999px","--pf-t--global--border--radius--400":"24px","--pf-t--global--border--radius--300":"16px","--pf-t--global--border--radius--200":"6px","--pf-t--global--border--radius--100":"4px","--pf-t--global--border--radius--0":"0px","--pf-t--global--border--width--300":"3px","--pf-t--global--border--width--200":"2px","--pf-t--global--border--width--100":"1px","--pf-t--global--icon--size--500":"96px","--pf-t--global--icon--size--400":"56px","--pf-t--global--icon--size--300":"22px","--pf-t--global--icon--size--250":"16px","--pf-t--global--icon--size--200":"14px","--pf-t--global--icon--size--100":"12px","--pf-t--global--spacer--800":"80px","--pf-t--global--spacer--700":"64px","--pf-t--global--spacer--600":"48px","--pf-t--global--spacer--500":"32px","--pf-t--global--spacer--400":"24px","--pf-t--global--spacer--300":"16px","--pf-t--global--spacer--200":"8px","--pf-t--global--spacer--100":"4px","--pf-t--global--motion--timing-function--decelerate":"--pf-t--global--timing-function--300","--pf-t--global--motion--timing-function--default":"--pf-t--global--timing-function--200","--pf-t--global--motion--timing-function--accelerate":"--pf-t--global--timing-function--100","--pf-t--global--motion--delay--long":"--pf-t--global--delay--400","--pf-t--global--motion--delay--default":"--pf-t--global--delay--300","--pf-t--global--motion--delay--short":"--pf-t--global--delay--200","--pf-t--global--motion--delay--none":"--pf-t--global--delay--100","--pf-t--global--motion--duration--3xl":"--pf-t--global--duration--600","--pf-t--global--motion--duration--2xl":"--pf-t--global--duration--500","--pf-t--global--motion--duration--xl":"--pf-t--global--duration--400","--pf-t--global--motion--duration--lg":"--pf-t--global--duration--300","--pf-t--global--motion--duration--md":"--pf-t--global--duration--200","--pf-t--global--motion--duration--sm":"--pf-t--global--duration--100","--pf-t--global--motion--duration--xs":"--pf-t--global--duration--50","--pf-t--global--text--color--link--300":"--pf-t--color--purple--50","--pf-t--global--text--color--link--200":"--pf-t--color--blue--60","--pf-t--global--text--color--link--100":"--pf-t--color--blue--50","--pf-t--global--text--color--400":"--pf-t--color--red-orange--40","--pf-t--global--text--color--300":"--pf-t--color--white","--pf-t--global--text--color--200":"--pf-t--color--gray--60","--pf-t--global--text--color--100":"--pf-t--color--gray--95","--pf-t--global--color--nonstatus--gray--300":"--pf-t--color--gray--40","--pf-t--global--color--nonstatus--gray--200":"--pf-t--color--gray--30","--pf-t--global--color--nonstatus--gray--100":"--pf-t--color--gray--20","--pf-t--global--color--nonstatus--purple--300":"--pf-t--color--purple--40","--pf-t--global--color--nonstatus--purple--200":"--pf-t--color--purple--30","--pf-t--global--color--nonstatus--purple--100":"--pf-t--color--purple--20","--pf-t--global--color--nonstatus--blue--300":"--pf-t--color--blue--40","--pf-t--global--color--nonstatus--blue--200":"--pf-t--color--blue--30","--pf-t--global--color--nonstatus--blue--100":"--pf-t--color--blue--20","--pf-t--global--color--nonstatus--teal--300":"--pf-t--color--teal--40","--pf-t--global--color--nonstatus--teal--200":"--pf-t--color--teal--30","--pf-t--global--color--nonstatus--teal--100":"--pf-t--color--teal--20","--pf-t--global--color--nonstatus--green--300":"--pf-t--color--green--40","--pf-t--global--color--nonstatus--green--200":"--pf-t--color--green--30","--pf-t--global--color--nonstatus--green--100":"--pf-t--color--green--20","--pf-t--global--color--nonstatus--yellow--300":"--pf-t--color--yellow--40","--pf-t--global--color--nonstatus--yellow--200":"--pf-t--color--yellow--30","--pf-t--global--color--nonstatus--yellow--100":"--pf-t--color--yellow--20","--pf-t--global--color--nonstatus--orange--300":"--pf-t--color--orange--40","--pf-t--global--color--nonstatus--orange--200":"--pf-t--color--orange--30","--pf-t--global--color--nonstatus--orange--100":"--pf-t--color--orange--20","--pf-t--global--color--nonstatus--orangered--300":"--pf-t--color--red-orange--40","--pf-t--global--color--nonstatus--orangered--200":"--pf-t--color--red-orange--30","--pf-t--global--color--nonstatus--orangered--100":"--pf-t--color--red-orange--20","--pf-t--global--color--nonstatus--red--300":"--pf-t--color--red--40","--pf-t--global--color--nonstatus--red--200":"--pf-t--color--red--30","--pf-t--global--color--nonstatus--red--100":"--pf-t--color--red--20","--pf-t--global--color--severity--critical--100":"--pf-t--color--red-orange--60","--pf-t--global--color--severity--important--100":"--pf-t--color--orange--50","--pf-t--global--color--severity--moderate--100":"--pf-t--color--yellow--40","--pf-t--global--color--severity--minor--100":"--pf-t--color--gray--50","--pf-t--global--color--severity--none--100":"--pf-t--color--blue--40","--pf-t--global--color--severity--undefined--100":"--pf-t--color--gray--30","--pf-t--global--color--status--custom--200":"--pf-t--color--teal--70","--pf-t--global--color--status--custom--100":"--pf-t--color--teal--60","--pf-t--global--color--status--info--200":"--pf-t--color--purple--60","--pf-t--global--color--status--info--100":"--pf-t--color--purple--50","--pf-t--global--color--status--danger--300":"--pf-t--color--red-orange--70","--pf-t--global--color--status--danger--200":"--pf-t--color--red-orange--70","--pf-t--global--color--status--danger--100":"--pf-t--color--red-orange--60","--pf-t--global--color--status--warning--300":"--pf-t--color--yellow--50","--pf-t--global--color--status--warning--200":"--pf-t--color--yellow--40","--pf-t--global--color--status--warning--100":"--pf-t--color--yellow--30","--pf-t--global--color--status--success--200":"--pf-t--color--green--70","--pf-t--global--color--status--success--100":"--pf-t--color--green--60","--pf-t--global--color--favorite--200":"--pf-t--color--yellow--40","--pf-t--global--color--favorite--100":"--pf-t--color--yellow--30","--pf-t--global--color--disabled--300":"--pf-t--color--gray--60","--pf-t--global--color--disabled--200":"--pf-t--color--gray--40","--pf-t--global--color--disabled--100":"--pf-t--color--gray--30","--pf-t--global--color--brand--300":"--pf-t--color--blue--60","--pf-t--global--color--brand--200":"--pf-t--color--blue--50","--pf-t--global--color--brand--100":"--pf-t--color--blue--40","--pf-t--global--background--color--backdrop--default":"--pf-t--global--dark--background--color--500","--pf-t--global--background--color--action--plain--clicked":"--pf-t--global--dark--background--color--600","--pf-t--global--background--color--action--plain--hover":"--pf-t--global--dark--background--color--600","--pf-t--global--background--color--highlight--200":"--pf-t--color--yellow--40","--pf-t--global--background--color--highlight--100":"--pf-t--color--yellow--30","--pf-t--global--background--color--400":"--pf-t--color--gray--80","--pf-t--global--background--color--300":"--pf-t--color--gray--20","--pf-t--global--background--color--200":"--pf-t--color--gray--10","--pf-t--global--background--color--100":"--pf-t--color--white","--pf-t--global--breakpoint--height--2xl":"--pf-t--global--breakpoint--550","--pf-t--global--breakpoint--height--xl":"--pf-t--global--breakpoint--350","--pf-t--global--breakpoint--height--lg":"--pf-t--global--breakpoint--300","--pf-t--global--breakpoint--height--md":"--pf-t--global--breakpoint--250","--pf-t--global--breakpoint--height--sm":"--pf-t--global--breakpoint--100","--pf-t--global--breakpoint--2xl":"--pf-t--global--breakpoint--600","--pf-t--global--breakpoint--xl":"--pf-t--global--breakpoint--500","--pf-t--global--breakpoint--lg":"--pf-t--global--breakpoint--400","--pf-t--global--breakpoint--md":"--pf-t--global--breakpoint--300","--pf-t--global--breakpoint--sm":"--pf-t--global--breakpoint--200","--pf-t--global--breakpoint--xs":"--pf-t--global--breakpoint--100","--pf-t--global--box-shadow--color--lg":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--color--md":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--color--sm":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--spread--lg":"--pf-t--global--box-shadow--spread--100","--pf-t--global--box-shadow--spread--md":"--pf-t--global--box-shadow--spread--100","--pf-t--global--box-shadow--spread--sm":"--pf-t--global--box-shadow--spread--100","--pf-t--global--box-shadow--blur--lg":"--pf-t--global--box-shadow--blur--300","--pf-t--global--box-shadow--blur--md":"--pf-t--global--box-shadow--blur--200","--pf-t--global--box-shadow--blur--sm":"--pf-t--global--box-shadow--blur--100","--pf-t--global--box-shadow--Y--lg--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--lg--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--lg--bottom":"--pf-t--global--box-shadow--Y--700","--pf-t--global--box-shadow--Y--lg--top":"--pf-t--global--box-shadow--Y--100","--pf-t--global--box-shadow--Y--lg--default":"--pf-t--global--box-shadow--Y--700","--pf-t--global--box-shadow--Y--md--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--md--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--md--bottom":"--pf-t--global--box-shadow--Y--600","--pf-t--global--box-shadow--Y--md--top":"--pf-t--global--box-shadow--Y--200","--pf-t--global--box-shadow--Y--md--default":"--pf-t--global--box-shadow--Y--600","--pf-t--global--box-shadow--Y--sm--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--sm--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--sm--bottom":"--pf-t--global--box-shadow--Y--500","--pf-t--global--box-shadow--Y--sm--top":"--pf-t--global--box-shadow--Y--300","--pf-t--global--box-shadow--Y--sm--default":"--pf-t--global--box-shadow--Y--500","--pf-t--global--box-shadow--X--lg--right":"--pf-t--global--box-shadow--X--700","--pf-t--global--box-shadow--X--lg--left":"--pf-t--global--box-shadow--X--100","--pf-t--global--box-shadow--X--lg--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--lg--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--lg--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--right":"--pf-t--global--box-shadow--X--600","--pf-t--global--box-shadow--X--md--left":"--pf-t--global--box-shadow--X--200","--pf-t--global--box-shadow--X--md--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--right":"--pf-t--global--box-shadow--X--500","--pf-t--global--box-shadow--X--sm--left":"--pf-t--global--box-shadow--X--300","--pf-t--global--box-shadow--X--sm--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--z-index--2xl":"--pf-t--global--z-index--600","--pf-t--global--z-index--xl":"--pf-t--global--z-index--500","--pf-t--global--z-index--lg":"--pf-t--global--z-index--400","--pf-t--global--z-index--md":"--pf-t--global--z-index--300","--pf-t--global--z-index--sm":"--pf-t--global--z-index--200","--pf-t--global--z-index--xs":"--pf-t--global--z-index--100","--pf-t--global--font--size--4xl":"--pf-t--global--font--size--800","--pf-t--global--font--size--3xl":"--pf-t--global--font--size--700","--pf-t--global--font--size--2xl":"--pf-t--global--font--size--600","--pf-t--global--font--size--xl":"--pf-t--global--font--size--500","--pf-t--global--font--size--lg":"--pf-t--global--font--size--400","--pf-t--global--font--size--md":"--pf-t--global--font--size--300","--pf-t--global--font--size--sm":"--pf-t--global--font--size--200","--pf-t--global--font--size--xs":"--pf-t--global--font--size--100","--pf-t--global--font--line-height--heading":"--pf-t--global--font--line-height--200","--pf-t--global--font--line-height--body":"--pf-t--global--font--line-height--100","--pf-t--global--font--weight--heading":"--pf-t--global--font--weight--300","--pf-t--global--font--weight--body":"--pf-t--global--font--weight--100","--pf-t--global--font--family--mono":"--pf-t--global--font--family--300","--pf-t--global--font--family--heading":"--pf-t--global--font--family--200","--pf-t--global--font--family--body":"--pf-t--global--font--family--100","--pf-t--global--border--color--300":"--pf-t--color--gray--50","--pf-t--global--border--color--200":"--pf-t--color--gray--40","--pf-t--global--border--color--100":"--pf-t--color--gray--30","--pf-t--global--border--radius--pill":"--pf-t--global--border--radius--500","--pf-t--global--border--radius--large":"--pf-t--global--border--radius--400","--pf-t--global--border--radius--medium":"--pf-t--global--border--radius--300","--pf-t--global--border--radius--small":"--pf-t--global--border--radius--200","--pf-t--global--border--radius--tiny":"--pf-t--global--border--radius--100","--pf-t--global--border--radius--sharp":"--pf-t--global--border--radius--0","--pf-t--global--border--width--control--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--control--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--control--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--action--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--action--hover":"--pf-t--global--border--width--200","--pf-t--global--border--width--action--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--box--status--read":"--pf-t--global--border--width--100","--pf-t--global--border--width--box--status--default":"--pf-t--global--border--width--200","--pf-t--global--border--width--box--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--box--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--box--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--extra-strong":"--pf-t--global--border--width--300","--pf-t--global--border--width--strong":"--pf-t--global--border--width--200","--pf-t--global--border--width--divider--clicked":"--pf-t--global--border--width--100","--pf-t--global--border--width--divider--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--divider--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--regular":"--pf-t--global--border--width--100","--pf-t--global--icon--color--300":"--pf-t--color--white","--pf-t--global--icon--color--200":"--pf-t--color--gray--50","--pf-t--global--icon--color--100":"--pf-t--color--gray--90","--pf-t--global--icon--size--3xl":"--pf-t--global--icon--size--500","--pf-t--global--icon--size--2xl":"--pf-t--global--icon--size--400","--pf-t--global--icon--size--xl":"--pf-t--global--icon--size--300","--pf-t--global--icon--size--lg":"--pf-t--global--icon--size--250","--pf-t--global--icon--size--md":"--pf-t--global--icon--size--200","--pf-t--global--icon--size--sm":"--pf-t--global--icon--size--100","--pf-t--global--spacer--4xl":"--pf-t--global--spacer--800","--pf-t--global--spacer--3xl":"--pf-t--global--spacer--700","--pf-t--global--spacer--2xl":"--pf-t--global--spacer--600","--pf-t--global--spacer--xl":"--pf-t--global--spacer--500","--pf-t--global--spacer--lg":"--pf-t--global--spacer--400","--pf-t--global--spacer--md":"--pf-t--global--spacer--300","--pf-t--global--spacer--sm":"--pf-t--global--spacer--200","--pf-t--global--spacer--xs":"--pf-t--global--spacer--100","--pf-t--global--motion--duration--icon--long":"--pf-t--global--motion--duration--md","--pf-t--global--motion--duration--icon--default":"--pf-t--global--motion--duration--sm","--pf-t--global--motion--duration--icon--short":"--pf-t--global--motion--duration--xs","--pf-t--global--motion--duration--slide-in--long":"--pf-t--global--motion--duration--2xl","--pf-t--global--motion--duration--slide-in--default":"--pf-t--global--motion--duration--xl","--pf-t--global--motion--duration--slide-in--short":"--pf-t--global--motion--duration--lg","--pf-t--global--motion--duration--slide-out--long":"--pf-t--global--motion--duration--2xl","--pf-t--global--motion--duration--slide-out--default":"--pf-t--global--motion--duration--xl","--pf-t--global--motion--duration--slide-out--short":"--pf-t--global--motion--duration--lg","--pf-t--global--motion--duration--fade--long":"--pf-t--global--motion--duration--lg","--pf-t--global--motion--duration--fade--default":"--pf-t--global--motion--duration--md","--pf-t--global--motion--duration--fade--short":"--pf-t--global--motion--duration--sm","--pf-t--global--text--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--text--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--text--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--text--color--on-highlight":"--pf-t--global--dark--text--color--300","--pf-t--global--text--color--required":"--pf-t--global--dark--text--color--400","--pf-t--global--text--color--on-disabled":"--pf-t--global--dark--color--disabled--300","--pf-t--global--text--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--text--color--inverse":"--pf-t--global--dark--text--color--300","--pf-t--global--text--color--subtle":"--pf-t--global--dark--text--color--200","--pf-t--global--text--color--regular":"--pf-t--global--dark--text--color--100","--pf-t--global--text--color--link--visited":"--pf-t--global--dark--text--color--link--300","--pf-t--global--text--color--link--hover":"--pf-t--global--dark--text--color--link--200","--pf-t--global--text--color--link--default":"--pf-t--global--dark--text--color--link--100","--pf-t--global--color--nonstatus--gray--clicked":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--color--nonstatus--gray--hover":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--color--nonstatus--gray--default":"--pf-t--global--dark--color--nonstatus--gray--100","--pf-t--global--color--nonstatus--purple--clicked":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--color--nonstatus--purple--hover":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--color--nonstatus--purple--default":"--pf-t--global--dark--color--nonstatus--purple--100","--pf-t--global--color--nonstatus--blue--clicked":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--color--nonstatus--blue--hover":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--color--nonstatus--blue--default":"--pf-t--global--dark--color--nonstatus--blue--100","--pf-t--global--color--nonstatus--teal--clicked":"--pf-t--global--dark--color--nonstatus--teal--200","--pf-t--global--color--nonstatus--teal--hover":"--pf-t--global--dark--color--nonstatus--teal--200","--pf-t--global--color--nonstatus--teal--default":"--pf-t--global--dark--color--nonstatus--teal--100","--pf-t--global--color--nonstatus--green--clicked":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--color--nonstatus--green--hover":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--color--nonstatus--green--default":"--pf-t--global--dark--color--nonstatus--green--100","--pf-t--global--color--nonstatus--yellow--clicked":"--pf-t--global--dark--color--nonstatus--yellow--200","--pf-t--global--color--nonstatus--yellow--hover":"--pf-t--global--dark--color--nonstatus--yellow--200","--pf-t--global--color--nonstatus--yellow--default":"--pf-t--global--dark--color--nonstatus--yellow--100","--pf-t--global--color--nonstatus--orange--clicked":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--color--nonstatus--orange--hover":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--color--nonstatus--orange--default":"--pf-t--global--dark--color--nonstatus--orange--100","--pf-t--global--color--nonstatus--orangered--clicked":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--color--nonstatus--orangered--hover":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--color--nonstatus--orangered--default":"--pf-t--global--dark--color--nonstatus--orangered--100","--pf-t--global--color--nonstatus--red--clicked":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--color--nonstatus--red--hover":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--color--nonstatus--red--default":"--pf-t--global--dark--color--nonstatus--red--100","--pf-t--global--color--status--custom--clicked":"--pf-t--global--dark--color--status--custom--200","--pf-t--global--color--status--custom--hover":"--pf-t--global--dark--color--status--custom--200","--pf-t--global--color--status--custom--default":"--pf-t--global--dark--color--status--custom--100","--pf-t--global--color--status--info--clicked":"--pf-t--global--dark--color--status--info--200","--pf-t--global--color--status--info--hover":"--pf-t--global--dark--color--status--info--200","--pf-t--global--color--status--info--default":"--pf-t--global--dark--color--status--info--100","--pf-t--global--color--status--danger--clicked":"--pf-t--global--dark--color--status--danger--200","--pf-t--global--color--status--danger--hover":"--pf-t--global--dark--color--status--danger--200","--pf-t--global--color--status--danger--default":"--pf-t--global--dark--color--status--danger--100","--pf-t--global--color--status--warning--clicked":"--pf-t--global--dark--color--status--warning--200","--pf-t--global--color--status--warning--hover":"--pf-t--global--dark--color--status--warning--200","--pf-t--global--color--status--warning--default":"--pf-t--global--dark--color--status--warning--100","--pf-t--global--color--status--success--clicked":"--pf-t--global--dark--color--status--success--200","--pf-t--global--color--status--success--hover":"--pf-t--global--dark--color--status--success--200","--pf-t--global--color--status--success--default":"--pf-t--global--dark--color--status--success--100","--pf-t--global--color--favorite--clicked":"--pf-t--global--dark--color--favorite--200","--pf-t--global--color--favorite--hover":"--pf-t--global--dark--color--favorite--200","--pf-t--global--color--favorite--default":"--pf-t--global--dark--color--favorite--100","--pf-t--global--color--brand--clicked":"--pf-t--global--dark--color--brand--200","--pf-t--global--color--brand--hover":"--pf-t--global--dark--color--brand--200","--pf-t--global--color--brand--default":"--pf-t--global--dark--color--brand--100","--pf-t--global--background--color--disabled--default":"--pf-t--global--dark--color--disabled--100","--pf-t--global--background--color--inverse--default":"--pf-t--global--dark--background--color--400","--pf-t--global--background--color--action--plain--alt--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--action--plain--alt--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--floating--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--floating--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--floating--default":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--secondary--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--secondary--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--secondary--default":"--pf-t--global--dark--background--color--100","--pf-t--global--background--color--primary--clicked":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--primary--hover":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--primary--default":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--highlight--clicked":"--pf-t--global--dark--background--color--highlight--200","--pf-t--global--background--color--highlight--default":"--pf-t--global--dark--background--color--highlight--100","--pf-t--global--font--size--heading--h6":"--pf-t--global--font--size--md","--pf-t--global--font--size--heading--h5":"--pf-t--global--font--size--md","--pf-t--global--font--size--heading--h4":"--pf-t--global--font--size--md","--pf-t--global--font--size--heading--h3":"--pf-t--global--font--size--lg","--pf-t--global--font--size--heading--h2":"--pf-t--global--font--size--xl","--pf-t--global--font--size--heading--h1":"--pf-t--global--font--size--2xl","--pf-t--global--font--size--body--lg":"--pf-t--global--font--size--md","--pf-t--global--font--size--body--default":"--pf-t--global--font--size--sm","--pf-t--global--font--size--body--sm":"--pf-t--global--font--size--xs","--pf-t--global--border--color--nonstatus--gray--clicked":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--border--color--nonstatus--gray--hover":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--border--color--nonstatus--gray--default":"--pf-t--global--dark--color--nonstatus--gray--100","--pf-t--global--border--color--nonstatus--purple--clicked":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--border--color--nonstatus--purple--hover":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--border--color--nonstatus--purple--default":"--pf-t--global--dark--color--nonstatus--purple--100","--pf-t--global--border--color--nonstatus--blue--clicked":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--border--color--nonstatus--blue--hover":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--border--color--nonstatus--blue--default":"--pf-t--global--dark--color--nonstatus--blue--100","--pf-t--global--border--color--nonstatus--teal--clicked":"--pf-t--global--dark--color--nonstatus--teal--200","--pf-t--global--border--color--nonstatus--teal--hover":"--pf-t--global--dark--color--nonstatus--teal--200","--pf-t--global--border--color--nonstatus--teal--default":"--pf-t--global--dark--color--nonstatus--teal--100","--pf-t--global--border--color--nonstatus--green--clicked":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--border--color--nonstatus--green--hover":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--border--color--nonstatus--green--default":"--pf-t--global--dark--color--nonstatus--green--100","--pf-t--global--border--color--nonstatus--yellow--clicked":"--pf-t--global--dark--color--nonstatus--yellow--200","--pf-t--global--border--color--nonstatus--yellow--hover":"--pf-t--global--dark--color--nonstatus--yellow--200","--pf-t--global--border--color--nonstatus--yellow--default":"--pf-t--global--dark--color--nonstatus--yellow--100","--pf-t--global--border--color--nonstatus--orange--clicked":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--border--color--nonstatus--orange--hover":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--border--color--nonstatus--orange--default":"--pf-t--global--dark--color--nonstatus--orange--100","--pf-t--global--border--color--nonstatus--orangered--clicked":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--border--color--nonstatus--orangered--hover":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--border--color--nonstatus--orangered--default":"--pf-t--global--dark--color--nonstatus--orangered--100","--pf-t--global--border--color--nonstatus--red--clicked":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--border--color--nonstatus--red--hover":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--border--color--nonstatus--red--default":"--pf-t--global--dark--color--nonstatus--red--100","--pf-t--global--border--color--on-secondary":"--pf-t--global--dark--border--color--200","--pf-t--global--border--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--border--color--clicked":"--pf-t--global--dark--color--brand--200","--pf-t--global--border--color--hover":"--pf-t--global--dark--color--brand--100","--pf-t--global--border--color--default":"--pf-t--global--dark--border--color--200","--pf-t--global--border--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--border--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--border--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--icon--color--severity--critical--default":"--pf-t--global--dark--color--severity--critical--100","--pf-t--global--icon--color--severity--important--default":"--pf-t--global--dark--color--severity--important--100","--pf-t--global--icon--color--severity--moderate--default":"--pf-t--global--dark--color--severity--moderate--100","--pf-t--global--icon--color--severity--minor--default":"--pf-t--global--dark--color--severity--minor--100","--pf-t--global--icon--color--severity--none--default":"--pf-t--global--dark--color--severity--none--100","--pf-t--global--icon--color--severity--undefined--default":"--pf-t--global--dark--color--severity--undefined--100","--pf-t--global--icon--color--on-disabled":"--pf-t--global--dark--color--disabled--300","--pf-t--global--icon--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--icon--color--inverse":"--pf-t--global--dark--icon--color--300","--pf-t--global--icon--color--subtle":"--pf-t--global--dark--icon--color--200","--pf-t--global--icon--color--regular":"--pf-t--global--dark--icon--color--100","--pf-t--global--icon--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--icon--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--icon--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--icon--size--font--4xl":"--pf-t--global--font--size--4xl","--pf-t--global--icon--size--font--3xl":"--pf-t--global--font--size--3xl","--pf-t--global--icon--size--font--2xl":"--pf-t--global--font--size--2xl","--pf-t--global--icon--size--font--xl":"--pf-t--global--font--size--xl","--pf-t--global--icon--size--font--lg":"--pf-t--global--font--size--lg","--pf-t--global--icon--size--font--md":"--pf-t--global--font--size--md","--pf-t--global--icon--size--font--sm":"--pf-t--global--font--size--sm","--pf-t--global--icon--size--font--xs":"--pf-t--global--font--size--xs","--pf-t--global--spacer--action--vertical--spacious":"--pf-t--global--spacer--md","--pf-t--global--spacer--action--vertical--compact":"--pf-t--global--spacer--xs","--pf-t--global--spacer--action--horizontal--spacious":"--pf-t--global--spacer--xl","--pf-t--global--spacer--action--horizontal--compact":"--pf-t--global--spacer--md","--pf-t--global--spacer--action--horizontal--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--action--horizontal--default":"--pf-t--global--spacer--lg","--pf-t--global--spacer--gap--action-to-action--plain":"--pf-t--global--spacer--xs","--pf-t--global--spacer--gap--action-to-action--default":"--pf-t--global--spacer--md","--pf-t--global--spacer--gap--group-to-group--vertical":"--pf-t--global--spacer--lg","--pf-t--global--spacer--gap--group-to-group--horizontal":"--pf-t--global--spacer--2xl","--pf-t--global--spacer--gap--group--horizontal":"--pf-t--global--spacer--md","--pf-t--global--spacer--gap--group--vertical":"--pf-t--global--spacer--sm","--pf-t--global--spacer--gap--control-to-control--default":"--pf-t--global--spacer--xs","--pf-t--global--spacer--gap--text-to-element--default":"--pf-t--global--spacer--sm","--pf-t--global--spacer--control--horizontal--spacious":"--pf-t--global--spacer--lg","--pf-t--global--spacer--control--horizontal--compact":"--pf-t--global--spacer--sm","--pf-t--global--spacer--control--horizontal--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--control--horizontal--default":"--pf-t--global--spacer--md","--pf-t--global--spacer--control--vertical--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--control--vertical--compact":"--pf-t--global--spacer--xs","--pf-t--global--spacer--control--vertical--default":"--pf-t--global--spacer--sm","--pf-t--global--text--color--nonstatus--on-gray--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gray--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gray--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-blue--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-blue--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-blue--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-teal--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-teal--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-teal--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-yellow--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-yellow--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-yellow--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-attention--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-attention--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-attention--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-custom--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-custom--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-custom--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--text--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--text--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--text--color--status--on-info--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-info--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-info--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--text--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--text--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--text--color--status--on-danger--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-danger--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-danger--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--danger--clicked":"--pf-t--global--dark--color--status--danger--300","--pf-t--global--text--color--status--danger--hover":"--pf-t--global--dark--color--status--danger--300","--pf-t--global--text--color--status--danger--default":"--pf-t--global--dark--color--status--danger--250","--pf-t--global--text--color--status--on-warning--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-warning--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-warning--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--text--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--text--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--text--color--placeholder":"--pf-t--global--text--color--subtle","--pf-t--global--text--color--on-brand--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--on-brand--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--on-brand--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--brand--clicked":"--pf-t--global--dark--color--brand--300","--pf-t--global--text--color--brand--hover":"--pf-t--global--dark--color--brand--300","--pf-t--global--text--color--brand--default":"--pf-t--global--dark--color--brand--200","--pf-t--global--color--status--read--on-primary":"--pf-t--global--background--color--secondary--default","--pf-t--global--color--status--unread--attention--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--color--status--unread--attention--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--color--status--unread--attention--default":"--pf-t--global--color--status--danger--default","--pf-t--global--color--status--unread--clicked":"--pf-t--global--color--brand--clicked","--pf-t--global--color--status--unread--hover":"--pf-t--global--color--brand--hover","--pf-t--global--color--status--unread--default":"--pf-t--global--color--brand--default","--pf-t--global--background--color--control--default":"--pf-t--global--dark--background--color--300","--pf-t--global--border--color--alt":"--pf-t--global--background--color--primary--default","--pf-t--global--border--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--border--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--border--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--border--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--border--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--border--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--border--color--status--danger--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--border--color--status--danger--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--border--color--status--danger--default":"--pf-t--global--color--status--danger--default","--pf-t--global--border--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--border--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--border--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--border--color--brand--clicked":"--pf-t--global--color--brand--clicked","--pf-t--global--border--color--brand--hover":"--pf-t--global--color--brand--hover","--pf-t--global--border--color--brand--default":"--pf-t--global--color--brand--default","--pf-t--global--icon--color--nonstatus--on-gray--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gray--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gray--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-blue--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-blue--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-blue--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-teal--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-teal--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-teal--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-yellow--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-yellow--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-yellow--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-attention--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-attention--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-attention--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-custom--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-custom--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-custom--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--icon--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--icon--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--icon--color--status--on-info--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-info--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-info--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--icon--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--icon--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--icon--color--status--on-danger--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-danger--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-danger--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--danger--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--icon--color--status--danger--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--icon--color--status--danger--default":"--pf-t--global--color--status--danger--default","--pf-t--global--icon--color--status--on-warning--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-warning--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-warning--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--icon--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--icon--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--icon--color--favorite--clicked":"--pf-t--global--color--favorite--clicked","--pf-t--global--icon--color--favorite--hover":"--pf-t--global--color--favorite--hover","--pf-t--global--icon--color--favorite--default":"--pf-t--global--color--favorite--default","--pf-t--global--icon--color--on-brand--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--on-brand--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--on-brand--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--brand--clicked":"--pf-t--global--dark--color--brand--300","--pf-t--global--icon--color--brand--hover":"--pf-t--global--dark--color--brand--300","--pf-t--global--icon--color--brand--default":"--pf-t--global--dark--color--brand--200","--pf-t--global--icon--size--font--body--lg":"--pf-t--global--font--size--body--lg","--pf-t--global--icon--size--font--body--default":"--pf-t--global--font--size--body--default","--pf-t--global--icon--size--font--body--sm":"--pf-t--global--font--size--body--sm","--pf-t--global--icon--size--font--heading--h6":"--pf-t--global--font--size--heading--h6","--pf-t--global--icon--size--font--heading--h5":"--pf-t--global--font--size--heading--h5","--pf-t--global--icon--size--font--heading--h4":"--pf-t--global--font--size--heading--h4","--pf-t--global--icon--size--font--heading--h3":"--pf-t--global--font--size--heading--h3","--pf-t--global--icon--size--font--heading--h2":"--pf-t--global--font--size--heading--h2","--pf-t--global--icon--size--font--heading--h1":"--pf-t--global--font--size--heading--h1","--pf-t--global--color--status--read--on-secondary":"--pf-t--global--background--color--control--default","--pf-t--global--dark--box-shadow--color--100":"rgba(0, 0, 0, 0.5000)","--pf-t--global--dark--background--color--600":"rgba(199, 199, 199, 0.1500)","--pf-t--global--dark--background--color--500":"rgba(21, 21, 21, 0.8000)","--pf-t--global--dark--icon--color--300":"--pf-t--color--gray--90","--pf-t--global--dark--icon--color--200":"--pf-t--color--gray--40","--pf-t--global--dark--icon--color--100":"--pf-t--color--gray--10","--pf-t--global--dark--text--color--link--300":"--pf-t--color--purple--30","--pf-t--global--dark--text--color--link--200":"--pf-t--color--blue--10","--pf-t--global--dark--text--color--link--100":"--pf-t--color--blue--20","--pf-t--global--dark--text--color--400":"--pf-t--color--red-orange--30","--pf-t--global--dark--text--color--300":"--pf-t--color--gray--90","--pf-t--global--dark--text--color--200":"--pf-t--color--gray--30","--pf-t--global--dark--text--color--100":"--pf-t--color--gray--10","--pf-t--global--dark--border--color--200":"--pf-t--color--gray--40","--pf-t--global--dark--border--color--100":"--pf-t--color--gray--50","--pf-t--global--dark--color--nonstatus--gray--300":"--pf-t--color--gray--10","--pf-t--global--dark--color--nonstatus--gray--200":"--pf-t--color--gray--20","--pf-t--global--dark--color--nonstatus--gray--100":"--pf-t--color--gray--30","--pf-t--global--dark--color--nonstatus--purple--300":"--pf-t--color--purple--10","--pf-t--global--dark--color--nonstatus--purple--200":"--pf-t--color--purple--20","--pf-t--global--dark--color--nonstatus--purple--100":"--pf-t--color--purple--30","--pf-t--global--dark--color--nonstatus--blue--300":"--pf-t--color--blue--10","--pf-t--global--dark--color--nonstatus--blue--200":"--pf-t--color--blue--20","--pf-t--global--dark--color--nonstatus--blue--100":"--pf-t--color--blue--30","--pf-t--global--dark--color--nonstatus--teal--300":"--pf-t--color--teal--10","--pf-t--global--dark--color--nonstatus--teal--200":"--pf-t--color--teal--20","--pf-t--global--dark--color--nonstatus--teal--100":"--pf-t--color--teal--30","--pf-t--global--dark--color--nonstatus--green--300":"--pf-t--color--green--10","--pf-t--global--dark--color--nonstatus--green--200":"--pf-t--color--green--20","--pf-t--global--dark--color--nonstatus--green--100":"--pf-t--color--green--30","--pf-t--global--dark--color--nonstatus--yellow--300":"--pf-t--color--yellow--10","--pf-t--global--dark--color--nonstatus--yellow--200":"--pf-t--color--yellow--20","--pf-t--global--dark--color--nonstatus--yellow--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--nonstatus--orange--300":"--pf-t--color--orange--10","--pf-t--global--dark--color--nonstatus--orange--200":"--pf-t--color--orange--20","--pf-t--global--dark--color--nonstatus--orange--100":"--pf-t--color--orange--30","--pf-t--global--dark--color--nonstatus--orangered--300":"--pf-t--color--red-orange--10","--pf-t--global--dark--color--nonstatus--orangered--200":"--pf-t--color--red-orange--20","--pf-t--global--dark--color--nonstatus--orangered--100":"--pf-t--color--red-orange--30","--pf-t--global--dark--color--nonstatus--red--300":"--pf-t--color--red--10","--pf-t--global--dark--color--nonstatus--red--200":"--pf-t--color--red--20","--pf-t--global--dark--color--nonstatus--red--100":"--pf-t--color--red--30","--pf-t--global--dark--color--status--custom--200":"--pf-t--color--teal--30","--pf-t--global--dark--color--status--custom--100":"--pf-t--color--teal--40","--pf-t--global--dark--color--status--info--200":"--pf-t--color--purple--20","--pf-t--global--dark--color--status--info--100":"--pf-t--color--purple--30","--pf-t--global--dark--color--status--danger--300":"--pf-t--color--red-orange--20","--pf-t--global--dark--color--status--danger--250":"--pf-t--color--red-orange--30","--pf-t--global--dark--color--status--danger--200":"--pf-t--color--red-orange--40","--pf-t--global--dark--color--status--danger--100":"--pf-t--color--red-orange--50","--pf-t--global--dark--color--status--warning--200":"--pf-t--color--yellow--20","--pf-t--global--dark--color--status--warning--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--status--success--200":"--pf-t--color--green--30","--pf-t--global--dark--color--status--success--100":"--pf-t--color--green--40","--pf-t--global--dark--color--severity--critical--100":"--pf-t--color--red-orange--50","--pf-t--global--dark--color--severity--important--100":"--pf-t--color--orange--40","--pf-t--global--dark--color--severity--moderate--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--severity--minor--100":"--pf-t--color--gray--30","--pf-t--global--dark--color--severity--none--100":"--pf-t--color--blue--30","--pf-t--global--dark--color--severity--undefined--100":"--pf-t--color--gray--40","--pf-t--global--dark--color--favorite--200":"--pf-t--color--yellow--20","--pf-t--global--dark--color--favorite--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--disabled--300":"--pf-t--color--gray--70","--pf-t--global--dark--color--disabled--200":"--pf-t--color--gray--50","--pf-t--global--dark--color--disabled--100":"--pf-t--color--gray--40","--pf-t--global--dark--color--brand--300":"--pf-t--color--blue--10","--pf-t--global--dark--color--brand--200":"--pf-t--color--blue--20","--pf-t--global--dark--color--brand--100":"--pf-t--color--blue--30","--pf-t--global--dark--background--color--highlight--200":"--pf-t--color--yellow--30","--pf-t--global--dark--background--color--highlight--100":"--pf-t--color--yellow--20","--pf-t--global--dark--background--color--400":"--pf-t--color--gray--10","--pf-t--global--dark--background--color--300":"--pf-t--color--gray--70","--pf-t--global--dark--background--color--200":"--pf-t--color--gray--80","--pf-t--global--dark--background--color--100":"--pf-t--color--gray--95","--pf-t--chart--global--stroke-line-join":"round","--pf-t--chart--global--layout--width":"450","--pf-t--chart--global--layout--height":"300","--pf-t--chart--global--layout--padding":"50","--pf-t--chart--global--label--text-anchor":"middle","--pf-t--chart--global--label--stroke":"transparent","--pf-t--chart--global--label--margin":"8","--pf-t--chart--global--label--padding":"10","--pf-t--chart--global--stroke-line-cap":"round","--pf-t--chart--global--letter-spacing":"normal","--pf-t--chart--global--FontSize--2xl":"22","--pf-t--chart--global--FontSize--lg":"18","--pf-t--chart--global--FontSize--sm":"14","--pf-t--chart--global--FontSize--xs":"12","--pf-t--chart--global--stroke--width--sm":"2","--pf-t--chart--global--stroke--width--xs":"1","--pf-t--chart--global--BorderWidth--lg":"8","--pf-t--chart--global--BorderWidth--sm":"2","--pf-t--chart--global--BorderWidth--xs":"1","--pf-t--chart--global--label--fill":"--pf-t--color--white","--pf-t--chart--global--danger--color--100":"--pf-t--color--red-orange--50","--pf-t--chart--global--success--color--100":"--pf-t--color--blue--30","--pf-t--chart--global--warning--color--200":"--pf-t--color--yellow--30","--pf-t--chart--global--warning--color--100":"--pf-t--color--orange--30","--pf-t--chart--global--fill--color--white":"--pf-t--color--white","--pf-t--chart--global--fill--color--900":"--pf-t--color--white","--pf-t--chart--global--fill--color--700":"--pf-t--color--gray--10","--pf-t--chart--global--fill--color--500":"--pf-t--color--gray--20","--pf-t--chart--global--fill--color--400":"--pf-t--color--gray--30","--pf-t--chart--global--fill--color--300":"--pf-t--color--gray--40","--pf-t--chart--global--fill--color--200":"--pf-t--color--gray--50","--pf-t--chart--global--fill--color--100":"--pf-t--color--gray--60","--pf-t--chart--color--black--500":"--pf-t--color--gray--10","--pf-t--chart--color--black--400":"--pf-t--color--gray--20","--pf-t--chart--color--black--300":"--pf-t--color--gray--30","--pf-t--chart--color--black--200":"--pf-t--color--gray--40","--pf-t--chart--color--black--100":"--pf-t--color--gray--50","--pf-t--chart--color--red-orange--500":"--pf-t--color--red-orange--10","--pf-t--chart--color--red-orange--400":"--pf-t--color--red-orange--20","--pf-t--chart--color--red-orange--300":"--pf-t--color--red-orange--30","--pf-t--chart--color--red-orange--200":"--pf-t--color--red-orange--40","--pf-t--chart--color--red-orange--100":"--pf-t--color--red-orange--50","--pf-t--chart--color--orange--500":"--pf-t--color--orange--10","--pf-t--chart--color--orange--400":"--pf-t--color--orange--20","--pf-t--chart--color--orange--300":"--pf-t--color--orange--30","--pf-t--chart--color--orange--200":"--pf-t--color--orange--40","--pf-t--chart--color--orange--100":"--pf-t--color--orange--50","--pf-t--chart--color--yellow--500":"--pf-t--color--yellow--10","--pf-t--chart--color--yellow--400":"--pf-t--color--yellow--20","--pf-t--chart--color--yellow--300":"--pf-t--color--yellow--30","--pf-t--chart--color--yellow--200":"--pf-t--color--yellow--40","--pf-t--chart--color--yellow--100":"--pf-t--color--yellow--50","--pf-t--chart--color--purple--500":"--pf-t--color--purple--20","--pf-t--chart--color--purple--400":"--pf-t--color--purple--30","--pf-t--chart--color--purple--300":"--pf-t--color--purple--40","--pf-t--chart--color--purple--200":"--pf-t--color--purple--50","--pf-t--chart--color--purple--100":"--pf-t--color--purple--60","--pf-t--chart--color--teal--500":"--pf-t--color--teal--10","--pf-t--chart--color--teal--400":"--pf-t--color--teal--20","--pf-t--chart--color--teal--300":"--pf-t--color--teal--30","--pf-t--chart--color--teal--200":"--pf-t--color--teal--40","--pf-t--chart--color--teal--100":"--pf-t--color--teal--50","--pf-t--chart--color--green--500":"--pf-t--color--green--10","--pf-t--chart--color--green--400":"--pf-t--color--green--20","--pf-t--chart--color--green--300":"--pf-t--color--green--30","--pf-t--chart--color--green--200":"--pf-t--color--green--40","--pf-t--chart--color--green--100":"--pf-t--color--green--50","--pf-t--chart--color--blue--500":"--pf-t--color--blue--10","--pf-t--chart--color--blue--400":"--pf-t--color--blue--20","--pf-t--chart--color--blue--300":"--pf-t--color--blue--30","--pf-t--chart--color--blue--200":"--pf-t--color--blue--40","--pf-t--chart--color--blue--100":"--pf-t--color--blue--50","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500":"--pf-t--chart--color--black--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200":"--pf-t--chart--color--purple--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000":"--pf-t--chart--color--yellow--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800":"--pf-t--chart--color--black--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500":"--pf-t--chart--color--purple--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100":"--pf-t--chart--color--black--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800":"--pf-t--chart--color--purple--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400":"--pf-t--chart--color--black--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100":"--pf-t--chart--color--purple--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800":"--pf-t--chart--color--blue--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700":"--pf-t--chart--color--black--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400":"--pf-t--chart--color--purple--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400":"--pf-t--chart--color--yellow--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600":"--pf-t--chart--color--blue--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--orange--colorscale--500":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--orange--colorscale--400":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--orange--colorscale--300":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--orange--colorscale--200":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--orange--colorscale--100":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--purple--colorscale--500":"--pf-t--chart--color--purple--400","--pf-t--chart--theme--colorscales--purple--colorscale--400":"--pf-t--chart--color--purple--200","--pf-t--chart--theme--colorscales--purple--colorscale--300":"--pf-t--chart--color--purple--500","--pf-t--chart--theme--colorscales--purple--colorscale--200":"--pf-t--chart--color--purple--100","--pf-t--chart--theme--colorscales--purple--colorscale--100":"--pf-t--chart--color--purple--300","--pf-t--chart--theme--colorscales--green--colorscale--500":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--green--colorscale--400":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--green--colorscale--300":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--green--colorscale--200":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--green--colorscale--100":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--gray--colorscale--500":"--pf-t--chart--color--black--400","--pf-t--chart--theme--colorscales--gray--colorscale--400":"--pf-t--chart--color--black--200","--pf-t--chart--theme--colorscales--gray--colorscale--300":"--pf-t--chart--color--black--500","--pf-t--chart--theme--colorscales--gray--colorscale--200":"--pf-t--chart--color--black--100","--pf-t--chart--theme--colorscales--gray--colorscale--100":"--pf-t--chart--color--black--300","--pf-t--chart--theme--colorscales--yellow--colorscale--500":"--pf-t--chart--color--yellow--400","--pf-t--chart--theme--colorscales--yellow--colorscale--400":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--yellow--colorscale--300":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--yellow--colorscale--200":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--yellow--colorscale--100":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--teal--colorscale--500":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--teal--colorscale--400":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--teal--colorscale--300":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--teal--colorscale--200":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--teal--colorscale--100":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--blue--colorscale--500":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--blue--colorscale--400":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--blue--colorscale--300":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--blue--colorscale--200":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--blue--colorscale--100":"--pf-t--chart--color--blue--300"} diff --git a/packages/module/tokens/dark/base.dark.json b/packages/module/tokens/dark/base.dark.json index 8c6fd5c..698acb5 100644 --- a/packages/module/tokens/dark/base.dark.json +++ b/packages/module/tokens/dark/base.dark.json @@ -220,7 +220,7 @@ "value": "{color.orange.10}" } }, - "gold": { + "yellow": { "100": { "type": "color", "value": "{color.yellow.30}" @@ -248,7 +248,7 @@ "value": "{color.green.10}" } }, - "cyan": { + "teal": { "100": { "type": "color", "value": "{color.teal.30}" diff --git a/packages/module/tokens/dark/semantic.dark.json b/packages/module/tokens/dark/semantic.dark.json index 1580aa6..3a18179 100644 --- a/packages/module/tokens/dark/semantic.dark.json +++ b/packages/module/tokens/dark/semantic.dark.json @@ -15,7 +15,7 @@ "value": "{global.dark.background.color.300}" }, "clicked": { - "description": "Use as the selected state for primary backgrounds", + "description": "Use as the clicked state for primary backgrounds", "type": "color", "value": "{global.dark.background.color.300}" } @@ -32,14 +32,14 @@ "value": "{global.dark.background.color.200}" }, "clicked": { - "description": "Use as the selected state for secondary backgrounds", + "description": "Use as the clicked state for secondary backgrounds", "type": "color", "value": "{global.dark.background.color.200}" } }, "floating": { "default": { - "description": "Use as background color for components that show over top of other content such as toast alerts, menus, modals, overlay drawers, etc.", + "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", "type": "color", "value": "{global.dark.background.color.300}" }, @@ -49,7 +49,7 @@ "value": "{global.dark.background.color.200}" }, "clicked": { - "description": "Use as the selected state for floating backgrounds", + "description": "Use as the clicked state for floating backgrounds", "type": "color", "value": "{global.dark.background.color.200}" } @@ -130,139 +130,166 @@ "color": { "brand": { "default": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", "value": "{global.dark.color.brand.100}" }, "hover": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", "value": "{global.dark.color.brand.200}" }, "clicked": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", "value": "{global.dark.color.brand.200}" } }, "favorite": { "default": { + "description": "Use as the default color for elements that have been favorited", "type": "color", "value": "{global.dark.color.favorite.100}" }, "hover": { + "description": "Use as the hover state for elements that have been favorited", "type": "color", "value": "{global.dark.color.favorite.200}" }, "clicked": { + "description": "Use as the clicked state for elements that have been favorited", "type": "color", "value": "{global.dark.color.favorite.200}" } }, "status": { - "unread": { - "default": { - "default": { - "type": "color", - "value": "{global.color.brand.default}" - }, - "hover": { - "type": "color", - "value": "{global.color.brand.hover}" - }, - "clicked": { - "type": "color", - "value": "{global.color.brand.clicked}" - } - }, - "attention": { - "default": { - "type": "color", - "value": "{global.color.status.danger.default}" - }, - "clicked": { - "type": "color", - "value": "{global.color.status.danger.clicked}" - }, - "hover": { - "type": "color", - "value": "{global.color.status.danger.hover}" - } - } - }, "success": { "default": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.success.100}" }, "hover": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "{global.dark.color.status.success.200}" }, "clicked": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "{global.dark.color.status.success.200}" } }, "warning": { "default": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.warning.100}" }, "hover": { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", "value": "{global.dark.color.status.warning.200}" }, "clicked": { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", "value": "{global.dark.color.status.warning.200}" } }, "danger": { "default": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.danger.100}" }, "hover": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "{global.dark.color.status.danger.200}" }, "clicked": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "{global.dark.color.status.danger.200}" } }, "info": { "default": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "{global.dark.color.status.info.100}" }, "hover": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "{global.dark.color.status.info.200}" }, "clicked": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "{global.dark.color.status.info.200}" } }, "custom": { "default": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.dark.color.status.custom.100}" }, "hover": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.dark.color.status.custom.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.dark.color.status.custom.200}" } }, + "unread": { + "default": { + "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.color.brand.default}" + }, + "hover": { + "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.color.brand.hover}" + }, + "clicked": { + "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.color.brand.clicked}" + }, + "attention": { + "default": { + "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.color.status.danger.default}" + }, + "clicked": { + "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "hover": { + "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.color.status.danger.hover}" + } + } + }, "read": { "on-secondary": { + "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", "type": "color", "value": "{global.background.color.control.default}" }, "on-primary": { + "description": "Use as the default color for elements that convey a read status and are placed on a primary background", "type": "color", "value": "{global.background.color.secondary.default}" } @@ -271,126 +298,153 @@ "nonstatus": { "red": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.dark.color.nonstatus.red.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status red background color.", "type": "color", "value": "{global.dark.color.nonstatus.red.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status red background color.", "type": "color", "value": "{global.dark.color.nonstatus.red.200}" } }, "orange": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.dark.color.nonstatus.orange.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status orange background color.", "type": "color", "value": "{global.dark.color.nonstatus.orange.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status orange background color.", "type": "color", "value": "{global.dark.color.nonstatus.orange.200}" } }, "orangered": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.dark.color.nonstatus.orangered.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status orange-red background color.", "type": "color", "value": "{global.dark.color.nonstatus.orangered.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", "type": "color", "value": "{global.dark.color.nonstatus.orangered.200}" } }, "yellow": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.gold.100}" + "value": "{global.dark.color.nonstatus.yellow.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status yellow background color.", "type": "color", - "value": "{global.dark.color.nonstatus.gold.200}" + "value": "{global.dark.color.nonstatus.yellow.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status yellow background color.", "type": "color", - "value": "{global.dark.color.nonstatus.gold.200}" + "value": "{global.dark.color.nonstatus.yellow.200}" } }, "green": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.dark.color.nonstatus.green.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status green background color.", "type": "color", "value": "{global.dark.color.nonstatus.green.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status green background color.", "type": "color", "value": "{global.dark.color.nonstatus.green.200}" } }, "teal": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.cyan.100}" + "value": "{global.dark.color.nonstatus.teal.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status teal background color.", "type": "color", - "value": "{global.dark.color.nonstatus.cyan.200}" + "value": "{global.dark.color.nonstatus.teal.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status teal background color.", "type": "color", - "value": "{global.dark.color.nonstatus.cyan.200}" + "value": "{global.dark.color.nonstatus.teal.200}" } }, "blue": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.dark.color.nonstatus.blue.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status blue background color.", "type": "color", "value": "{global.dark.color.nonstatus.blue.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status blue background color.", "type": "color", "value": "{global.dark.color.nonstatus.blue.200}" } }, "purple": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.dark.color.nonstatus.purple.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status purple background color.", "type": "color", "value": "{global.dark.color.nonstatus.purple.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status purple background color.", "type": "color", "value": "{global.dark.color.nonstatus.purple.200}" } }, "gray": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.dark.color.nonstatus.gray.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status gray background color.", "type": "color", "value": "{global.dark.color.nonstatus.gray.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status gray background color.", "type": "color", "value": "{global.dark.color.nonstatus.gray.200}" } @@ -401,42 +455,51 @@ "color": { "brand": { "default": { + "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "{global.dark.color.brand.200}" }, "hover": { + "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "{global.dark.color.brand.300}" }, "clicked": { + "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "{global.dark.color.brand.300}" } }, "on-brand": { "default": { + "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "{global.icon.color.inverse}" } }, "favorite": { "default": { + "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "{global.color.favorite.default}" }, "hover": { + "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "{global.color.favorite.hover}" }, "clicked": { + "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "{global.color.favorite.clicked}" } @@ -444,140 +507,170 @@ "status": { "success": { "default": { + "description": "Use as the default color for text that communicates a success status.", "type": "color", "value": "{global.color.status.success.default}" }, "hover": { + "description": "Use as the hover state color for text that communicates a success status.", "type": "color", "value": "{global.color.status.success.hover}" }, "clicked": { + "description": "Use as the clicked state color for text that communicates a success status.", "type": "color", "value": "{global.color.status.success.clicked}" } }, "on-success": { "default": { + "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "{global.icon.color.inverse}" } }, "warning": { "default": { + "description": "Use as the default color for text that communicates a warning status.", "type": "color", "value": "{global.color.status.warning.default}" }, "hover": { + "description": "Use as the hover state color for text that communicates a warning status.", "type": "color", "value": "{global.color.status.warning.hover}" }, "clicked": { + "description": "Use as the clicked state color for text that communicates a warning status.", "type": "color", "value": "{global.color.status.warning.clicked}" } }, "on-warning": { "default": { + "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "{global.icon.color.inverse}" } }, "danger": { "default": { + "description": "Use as the default color for icons that convey danger, like in alerts or banners.", "type": "color", "value": "{global.color.status.danger.default}" }, "hover": { + "description": "Use as the hover state for icons that indicate danger.", "type": "color", "value": "{global.color.status.danger.hover}" }, "clicked": { + "description": "Use as the clicked state for icons that indicate danger.", "type": "color", "value": "{global.color.status.danger.clicked}" } }, "on-danger": { "default": { + "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "{global.icon.color.inverse}" } }, "info": { "default": { + "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", "type": "color", "value": "{global.color.status.info.default}" }, "hover": { + "description": "Use as the hover state for icons that identify informational messages.", "type": "color", "value": "{global.color.status.info.hover}" }, "clicked": { + "description": "Use as the clicked state for icons that identify informational messages.", "type": "color", "value": "{global.color.status.info.clicked}" } }, "on-info": { "default": { + "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "{global.icon.color.inverse}" } }, "custom": { "default": { + "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.default}" }, "hover": { + "description": "Use as the hover state for icons that convey generic status with no associated severity.", "type": "color", "value": "{global.color.status.custom.hover}" }, "clicked": { + "description": "Use as the clicked state for icons that convey generic status with no associated severity.", "type": "color", "value": "{global.color.status.custom.clicked}" } }, "on-custom": { "default": { + "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", "type": "color", "value": "{global.icon.color.inverse}" } @@ -585,28 +678,34 @@ "unread": { "on-default": { "default": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" } }, "on-attention": { "default": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" } @@ -614,60 +713,69 @@ } }, "regular": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.dark.icon.color.100}" }, "subtle": { + "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", "type": "color", "value": "{global.dark.icon.color.200}" }, "inverse": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.dark.icon.color.300}" }, "disabled": { - "description": "for use without disabled background color", + "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", "type": "color", "value": "{global.dark.color.disabled.200}" }, "on-disabled": { - "description": "pair with disabled background color", + "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", "type": "color", "value": "{global.dark.color.disabled.300}" }, "severity": { "undefined": { "default": { + "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", "type": "color", "value": "{global.dark.color.severity.undefined.100}" } }, "none": { "default": { + "description": "Use as the default color for severity icons that identify no issues.", "type": "color", "value": "{global.dark.color.severity.none.100}" } }, "minor": { "default": { + "description": "Use as the default color for severity icons that identify issues of minor severity.", "type": "color", "value": "{global.dark.color.severity.minor.100}" } }, "moderate": { "default": { + "description": "Use as the default color for severity icons that identify issues of moderate severity.", "type": "color", "value": "{global.dark.color.severity.moderate.100}" } }, "important": { "default": { + "description": "Use as the default color for severity icons that identify issues of important severity.", "type": "color", "value": "{global.dark.color.severity.important.100}" } }, "critical": { "default": { + "description": "Use as the default color for severity icons that identify issues of critical severity.", "type": "color", "value": "{global.dark.color.severity.critical.100}" } @@ -676,126 +784,153 @@ "nonstatus": { "on-red": { "default": { + "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", "type": "color", "value": "{global.icon.color.inverse}" } }, "on-orangered": { "default": { + "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "{global.icon.color.inverse}" } }, "on-orange": { "default": { + "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "{global.icon.color.inverse}" } }, "on-yellow": { "default": { + "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "{global.icon.color.inverse}" } }, "on-green": { "default": { + "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "{global.icon.color.inverse}" } }, "on-teal": { "default": { + "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "{global.icon.color.inverse}" } }, "on-blue": { "default": { + "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "{global.icon.color.inverse}" } }, "on-purple": { "default": { + "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "{global.icon.color.inverse}" } }, "on-gray": { "default": { + "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "{global.icon.color.inverse}" } @@ -807,14 +942,17 @@ "color": { "brand": { "default": { + "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "{global.color.brand.default}" }, "hover": { + "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "{global.color.brand.hover}" }, "clicked": { + "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "{global.color.brand.clicked}" } @@ -822,222 +960,270 @@ "status": { "success": { "default": { + "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.success.default}" }, "hover": { + "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", "value": "{global.color.status.success.hover}" }, "clicked": { + "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", "value": "{global.color.status.success.clicked}" } }, "warning": { "default": { + "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.warning.default}" }, "hover": { + "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.warning.hover}" }, "clicked": { + "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.warning.clicked}" } }, "danger": { "default": { + "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.danger.default}" }, "hover": { + "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.danger.hover}" }, "clicked": { + "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.danger.clicked}" } }, "info": { "default": { + "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.info.default}" }, "hover": { + "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.info.hover}" }, "clicked": { + "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.info.clicked}" } }, "custom": { "default": { + "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.custom.default}" }, "hover": { + "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.custom.hover}" }, "clicked": { + "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.custom.clicked}" } } }, "default": { + "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "{global.dark.border.color.200}" }, "hover": { + "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "{global.dark.color.brand.100}" }, "clicked": { + "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "{global.dark.color.brand.200}" }, "disabled": { + "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "{global.dark.color.disabled.200}" }, "alt": { + "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", "type": "color", "value": "{global.background.color.primary.default}" }, "on-secondary": { + "description": "Use on borders/dividers that are placed on a secondary bkg color.", "type": "color", "value": "{global.dark.border.color.200}" }, "nonstatus": { "red": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.dark.color.nonstatus.red.100}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.red.200}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.red.200}" } }, "orangered": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.orangered.100}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.orangered.200}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.orangered.200}" } }, "orange": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.orange.100}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.orange.200}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.orange.200}" } }, "yellow": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.gold.100}" + "value": "{global.dark.color.nonstatus.yellow.100}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.gold.200}" + "value": "{global.dark.color.nonstatus.yellow.200}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.gold.200}" + "value": "{global.dark.color.nonstatus.yellow.200}" } }, "green": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.green.100}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.green.200}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.green.200}" } }, "teal": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.cyan.100}" + "value": "{global.dark.color.nonstatus.teal.100}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.cyan.200}" + "value": "{global.dark.color.nonstatus.teal.200}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.cyan.200}" + "value": "{global.dark.color.nonstatus.teal.200}" } }, "blue": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.blue.100}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.blue.200}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.blue.200}" } }, "purple": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.purple.100}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.purple.200}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.purple.200}" } }, "gray": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.gray.100}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.gray.200}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "{global.dark.color.nonstatus.gray.200}" } @@ -1049,77 +1235,92 @@ "color": { "link": { "default": { + "description": "Use as the default text color for links.", "type": "color", "value": "{global.dark.text.color.link.100}" }, "hover": { + "description": "Use as the hover state text color for links.", "type": "color", "value": "{global.dark.text.color.link.200}" }, "visited": { + "description": "Use as the color to indicate that a link has been visited.", "type": "color", "value": "{global.dark.text.color.link.300}" } }, + "brand": { + "default": { + "description": "Use as the default color for branded text.", + "type": "color", + "value": "{global.dark.color.brand.200}" + }, + "hover": { + "description": "Use as the hover state color for branded text.", + "type": "color", + "value": "{global.dark.color.brand.300}" + }, + "clicked": { + "description": "Use as the clicked state color for branded text.", + "type": "color", + "value": "{global.dark.color.brand.300}" + } + }, "regular": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.dark.text.color.100}" }, "subtle": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", "value": "{global.dark.text.color.200}" }, "inverse": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.dark.text.color.300}" }, "on-brand": { "default": { + "description": "Use as the default color for text placed on a brand-colored background.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text placed on a brand-colored background.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text placed on a brand-colored background.", "type": "color", "value": "{global.text.color.inverse}" } }, "placeholder": { + "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", "type": "color", "value": "{global.text.color.subtle}" }, "disabled": { - "description": "for use without disabled background color", + "description": "Use as the color of text on disabled elements, like disabled menu items.", "type": "color", "value": "{global.dark.color.disabled.200}" }, "on-disabled": { - "description": "pair with disabled background color", + "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", "type": "color", "value": "{global.dark.color.disabled.300}" }, - "brand": { - "default": { - "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "hover": { - "type": "color", - "value": "{global.dark.color.brand.300}" - }, - "clicked": { - "type": "color", - "value": "{global.dark.color.brand.300}" - } - }, "required": { + "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", "type": "color", "value": "{global.dark.text.color.400}" }, "on-highlight": { + "description": "Use as the color of text that is highlighted.", "type": "color", "value": "{global.dark.text.color.300}" }, @@ -1140,14 +1341,17 @@ }, "on-success": { "default": { + "description": "Use as the default color for text that is placed on a success background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" } @@ -1168,98 +1372,119 @@ }, "on-warning": { "default": { + "description": "Use as the default color for text that is placed on a warning background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" } }, "danger": { "default": { + "description": "Use as the default color for text that communicates a danger status.", "type": "color", "value": "{global.dark.color.status.danger.250}" }, "hover": { + "description": "Use as the hover state color for text that communicates a danger status.", "type": "color", "value": "{global.dark.color.status.danger.300}" }, "clicked": { + "description": "Use as the clicked state color for text that communicates a danger status.", "type": "color", "value": "{global.dark.color.status.danger.300}" } }, "on-danger": { "default": { + "description": "Use as the default color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" } }, "info": { "default": { + "description": "Use as the default color for text that communicates am info status.", "type": "color", "value": "{global.color.status.info.default}" }, "hover": { + "description": "Use as the hover state color for text that communicates an infostatus.", "type": "color", "value": "{global.color.status.info.hover}" }, "clicked": { + "description": "Use as the clicked state color for text that communicates an info status.", "type": "color", "value": "{global.color.status.info.clicked}" } }, "on-info": { "default": { + "description": "Use as the default color for text that is placed on an info background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" } }, "custom": { "default": { + "description": "Use as the default color for text that communicates a custom status.", "type": "color", "value": "{global.color.status.custom.default}" }, "hover": { + "description": "Use as the hover state color for text that communicates a custom status.", "type": "color", "value": "{global.color.status.custom.hover}" }, "clicked": { + "description": "Use as the clicked state color for text that communicates a custom status.", "type": "color", "value": "{global.color.status.custom.clicked}" } }, "on-custom": { "default": { + "description": "Use as the default color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" } @@ -1267,28 +1492,34 @@ "unread": { "on-default": { "default": { + "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" } }, "on-attention": { "default": { + "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" } @@ -1298,126 +1529,153 @@ "nonstatus": { "on-red": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus red background color.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", "type": "color", "value": "{global.text.color.inverse}" } }, "on-orangered": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", "type": "color", "value": "{global.text.color.inverse}" } }, "on-orange": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus orange background color.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", "type": "color", "value": "{global.text.color.inverse}" } }, "on-yellow": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", "type": "color", "value": "{global.text.color.inverse}" } }, "on-green": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus green background color.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", "type": "color", "value": "{global.text.color.inverse}" } }, "on-teal": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus teal background color.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", "type": "color", "value": "{global.text.color.inverse}" } }, "on-blue": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus blue background color.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", "type": "color", "value": "{global.text.color.inverse}" } }, "on-purple": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus purple background color.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", "type": "color", "value": "{global.text.color.inverse}" } }, "on-gray": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus gray background color.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", "type": "color", "value": "{global.text.color.inverse}" } @@ -1428,14 +1686,17 @@ "box-shadow": { "color": { "sm": { + "description": "Use as the color of small box-shadows.", "type": "color", "value": "{global.dark.box-shadow.color.100}" }, "md": { + "description": "Use as the color of medium box-shadows.", "type": "color", "value": "{global.dark.box-shadow.color.100}" }, "lg": { + "description": "Use as the color of large box-shadows.", "type": "color", "value": "{global.dark.box-shadow.color.100}" } diff --git a/packages/module/tokens/default/base.dimension.json b/packages/module/tokens/default/base.dimension.json index 8fa2728..35eaf6b 100644 --- a/packages/module/tokens/default/base.dimension.json +++ b/packages/module/tokens/default/base.dimension.json @@ -121,25 +121,21 @@ } }, "weight": { - "body": { - "100": { - "type": "number", - "value": 400 - }, - "200": { - "type": "number", - "value": 500 - } - }, - "heading": { - "100": { - "type": "number", - "value": 700 - }, - "200": { - "type": "number", - "value": 700 - } + "100": { + "type": "number", + "value": 400 + }, + "200": { + "type": "number", + "value": 500 + }, + "300": { + "type": "number", + "value": 700 + }, + "400": { + "type": "number", + "value": 700 } }, "line-height": { @@ -150,40 +146,6 @@ "200": { "type": "number", "value": 1.5 - }, - "figma-only": { - "100": { - "type": "number", - "value": 18 - }, - "200": { - "type": "number", - "value": 21 - }, - "300": { - "type": "number", - "value": 24 - }, - "400": { - "type": "number", - "value": 23.399999618530273 - }, - "500": { - "type": "number", - "value": 26 - }, - "600": { - "type": "number", - "value": 28.600000381469727 - }, - "700": { - "type": "number", - "value": 36.400001525878906 - }, - "800": { - "type": "number", - "value": 46.79999923706055 - } } }, "size": { @@ -311,7 +273,7 @@ "blur": { "100": { "type": "number", - "value": 2 + "value": 4 }, "200": { "type": "number", diff --git a/packages/module/tokens/default/base.json b/packages/module/tokens/default/base.json index 00e58a6..4f2846f 100644 --- a/packages/module/tokens/default/base.json +++ b/packages/module/tokens/default/base.json @@ -219,7 +219,7 @@ "value": "{color.orange.40}" } }, - "gold": { + "yellow": { "100": { "type": "color", "value": "{color.yellow.20}" @@ -247,7 +247,7 @@ "value": "{color.green.40}" } }, - "cyan": { + "teal": { "100": { "type": "color", "value": "{color.teal.20}" @@ -325,7 +325,7 @@ "color": { "100": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.gray.95}" }, "200": { "type": "color", diff --git a/packages/module/tokens/default/semantic.dimension.json b/packages/module/tokens/default/semantic.dimension.json index 217c8a1..4411216 100644 --- a/packages/module/tokens/default/semantic.dimension.json +++ b/packages/module/tokens/default/semantic.dimension.json @@ -4,105 +4,128 @@ "border": { "radius": { "sharp": { + "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", "type": "number", "value": "{global.border.radius.0}" }, "tiny": { + "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", "type": "number", "value": "{global.border.radius.100}" }, "small": { + "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", "type": "number", "value": "{global.border.radius.200}" }, "medium": { + "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", "type": "number", "value": "{global.border.radius.300}" }, "large": { + "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", "type": "number", "value": "{global.border.radius.400}" }, "pill": { + "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", "type": "number", "value": "{global.border.radius.500}" } }, "width": { "regular": { + "description": "Use as the default border width for elements.", "type": "number", "value": "{global.border.width.100}" }, "divider": { "default": { + "description": "Use as the default border width for dividers.", "type": "number", "value": "{global.border.width.100}" }, "hover": { + "description": "Use as the border width hover state for dividers.", "type": "number", "value": "{global.border.width.100}" }, "clicked": { + "description": "Use as the border width clicked state for dividers.", "type": "number", "value": "{global.border.width.100}" } }, "strong": { + "description": "Use as a stronger/wider border width for elements.", "type": "number", "value": "{global.border.width.200}" }, "extra-strong": { + "description": "Use as the strongest/widest border width for elements.", "type": "number", "value": "{global.border.width.300}" }, "box": { "default": { + "description": "Use as the default border width for containers like cards, panels, code editors, etc.", "type": "number", "value": "{global.border.width.100}" }, "hover": { + "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", "type": "number", "value": "{global.border.width.100}" }, "clicked": { + "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", "type": "number", "value": "{global.border.width.200}" }, "status": { "default": { + "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", "type": "number", "value": "{global.border.width.200}" }, "read": { + "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", "type": "number", "value": "{global.border.width.100}" } } }, - "button": { + "action": { "default": { + "description": "Use as the default border width for actions like secondary and tertiary buttons", "type": "number", "value": "{global.border.width.100}" }, "hover": { + "description": "Use as the hover state border width for actions like secondary and tertiary buttons", "type": "number", "value": "{global.border.width.200}" }, "clicked": { + "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", "type": "number", "value": "{global.border.width.200}" } }, "control": { "default": { + "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", "type": "number", "value": "{global.border.width.100}" }, "hover": { + "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", "type": "number", "value": "{global.border.width.100}" }, "clicked": { + "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", "type": "number", "value": "{global.border.width.200}" } @@ -111,144 +134,176 @@ }, "spacer": { "xs": { + "description": "Use for extra small spaces between elements.", "type": "number", "value": "{global.spacer.100}" }, "sm": { + "description": "Use for small spaces between elements.", "type": "number", "value": "{global.spacer.200}" }, "md": { + "description": "Use for medium-sized spaces between elements.", "type": "number", "value": "{global.spacer.300}" }, "lg": { + "description": "Use for large spaces between elements.", "type": "number", "value": "{global.spacer.400}" }, "xl": { + "description": "Use for extra large spaces between elements.", "type": "number", "value": "{global.spacer.500}" }, "2xl": { + "description": "Use for double extra large spaces spacing between elements.", "type": "number", "value": "{global.spacer.600}" }, "3xl": { + "description": "Use for triple extra large spaces between elements.", "type": "number", "value": "{global.spacer.700}" }, "4xl": { + "description": "Use for quadruple extra large spaces between elements.", "type": "number", "value": "{global.spacer.800}" }, "control": { "vertical": { "default": { + "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", "type": "number", "value": "{global.spacer.sm}" }, "compact": { + "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "{global.spacer.100}" + "value": "{global.spacer.xs}" }, "plain": { + "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", "type": "number", "value": "{global.spacer.sm}" } }, "horizontal": { "default": { + "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", "type": "number", "value": "{global.spacer.md}" }, - "compact": { + "plain": { + "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "{global.spacer.200}" + "value": "{global.spacer.sm}" }, - "plain": { + "compact": { + "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", "value": "{global.spacer.sm}" + }, + "spacious": { + "description": "Use to set the horizontal padding in large/display controls.", + "type": "number", + "value": "{global.spacer.lg}" } } }, "gap": { "text-to-element": { "default": { + "description": "Use to space an element, like an icon or badge, inline with text", "type": "number", "value": "{global.spacer.sm}" } }, "control-to-control": { "default": { + "description": "Use to set the space between controls, like in input groups or filter groups", "type": "number", "value": "{global.spacer.xs}" } }, "group": { "vertical": { + "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", "type": "number", "value": "{global.spacer.sm}" }, "horizontal": { + "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", "type": "number", "value": "{global.spacer.md}" } }, "group-to-group": { "horizontal": { + "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", "type": "number", "value": "{global.spacer.2xl}" }, "vertical": { + "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", "type": "number", "value": "{global.spacer.lg}" } }, "action-to-action": { "default": { + "description": "Use to set the space between actions, like in an action list group.", "type": "number", "value": "{global.spacer.md}" }, "plain": { + "description": "Use to set the space between plain actions, like in an action list group.", "type": "number", "value": "{global.spacer.xs}" } } }, "action": { - "vertical": { - "default": { - "type": "number", - "value": "{global.spacer.sm}" - }, - "plain": { - "type": "number", - "value": "{global.spacer.sm}" - } - }, "horizontal": { "default": { + "description": "Use to set the horizontal padding inside a default action, like buttons.", "type": "number", "value": "{global.spacer.lg}" }, "plain": { + "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", "type": "number", - "value": "{global.spacer.sm}" - } - } - }, - "button": { - "horizontal": { + "value": "{global.spacer.sm}", + "compact": { + "description": "Use to set the horizontal padding inside a compact, plain action/button.", + "type": "number", + "value": "{global.spacer.xs}" + } + }, "compact": { + "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", "type": "number", - "value": "{global.spacer.300}" + "value": "{global.spacer.md}" + }, + "spacious": { + "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", + "type": "number", + "value": "{global.spacer.xl}" } }, "vertical": { "compact": { + "description": "Use to set the vertical padding inside a compact action, like compact buttons.", + "type": "number", + "value": "{global.spacer.xs}" + }, + "spacious": { + "description": "Use to set the vertical padding inside a large/display action, like CTAs.", "type": "number", - "value": "{global.spacer.100}" + "value": "{global.spacer.md}" } } } @@ -256,99 +311,122 @@ "icon": { "size": { "sm": { + "description": "Use for small icons.", "type": "number", "value": "{global.icon.size.100}" }, "md": { + "description": "Use for medium icons.", "type": "number", "value": "{global.icon.size.200}" }, "lg": { + "description": "Use for large icons.", "type": "number", "value": "{global.icon.size.250}" }, "xl": { + "description": "Use for extra large icons.", "type": "number", "value": "{global.icon.size.300}" }, "2xl": { + "description": "Use for double extra large icons.", "type": "number", "value": "{global.icon.size.400}" }, "3xl": { + "description": "Use for triple extra large icons.", "type": "number", "value": "{global.icon.size.500}" }, "font": { - "body": { - "sm": { - "type": "number", - "value": "{global.font.size.body.sm}" - }, - "default": { - "type": "number", - "value": "{global.font.size.body.default}" - }, - "lg": { - "type": "number", - "value": "{global.font.size.body.lg}" - } - }, "heading": { "h1": { + "description": "Use for icons that are placed inline with first level headings", "type": "number", "value": "{global.font.size.heading.h1}" }, "h2": { + "description": "Use for icons that are placed inline with second level headings", "type": "number", "value": "{global.font.size.heading.h2}" }, "h3": { + "description": "Use for icons that are placed inline with third level headings", "type": "number", "value": "{global.font.size.heading.h3}" }, "h4": { + "description": "Use for icons that are placed inline with fourth level headings", "type": "number", "value": "{global.font.size.heading.h4}" }, "h5": { + "description": "Use for icons that are placed inline with fifth level headings", "type": "number", "value": "{global.font.size.heading.h5}" }, "h6": { + "description": "Use for icons that are placed inline with sixth level headings", "type": "number", "value": "{global.font.size.heading.h6}" } }, + "body": { + "sm": { + "description": "Use for icons that are placed inline with small body text", + "type": "number", + "value": "{global.font.size.body.sm}" + }, + "default": { + "description": "Use for icons that are placed inline with default body text", + "type": "number", + "value": "{global.font.size.body.default}" + }, + "lg": { + "description": "Use for icons that are placed inline with large body text", + "type": "number", + "value": "{global.font.size.body.lg}" + } + }, "xs": { + "description": "Use for icons that are placed inline with font–size–xs text", "type": "number", "value": "{global.font.size.xs}" }, "sm": { + "description": "Use for icons that are placed inline with font–size–sm text", "type": "number", "value": "{global.font.size.sm}" }, "md": { + "description": "Use for icons that are placed inline with font–size–md text", "type": "number", "value": "{global.font.size.md}" }, "lg": { + "description": "Use for icons that are placed inline with font–size–lg text", "type": "number", "value": "{global.font.size.lg}" }, "xl": { + "description": "Use for icons that are placed inline with font–size–xl text", "type": "number", "value": "{global.font.size.xl}" }, "2xl": { + "description": "Use for icons that are placed inline with font–size–2xl text", "type": "number", "value": "{global.font.size.2xl}" }, "3xl": { + "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", "value": "{global.font.size.3xl}" }, "4xl": { + "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", "value": "{global.font.size.4xl}" } @@ -358,84 +436,51 @@ "font": { "weight": { "body": { + "description": "Use to define the default weight for body text", "type": "number", - "value": "{global.font.weight.body.100}", + "value": "{global.font.weight.100}", "bold": { + "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", "type": "number", - "value": "{global.font.weight.body.200}" + "value": "{global.font.weight.200}" } }, "heading": { + "description": "Use to define the default weight for heading text", "type": "number", - "value": "{global.font.weight.heading.100}", + "value": "{global.font.weight.300}", "bold": { + "description": "Use to define the bold weight for heading text, often used to add emphasis.", "type": "number", - "value": "{global.font.weight.heading.200}" + "value": "{global.font.weight.400}" } } }, "line-height": { "body": { + "description": "Use to define the line height for body text", "type": "number", "value": "{global.font.line-height.100}" }, "heading": { + "description": "Use to define the line height for heading text", "type": "number", "value": "{global.font.line-height.200}" - }, - "figma-only": { - "body": { - "small": { - "type": "number", - "value": "{global.font.line-height.figma-only.100}" - }, - "default": { - "type": "number", - "value": "{global.font.line-height.figma-only.200}" - }, - "large": { - "type": "number", - "value": "{global.font.line-height.figma-only.300}" - } - }, - "heading": { - "xs": { - "type": "number", - "value": "{global.font.line-height.figma-only.300}" - }, - "sm": { - "type": "number", - "value": "{global.font.line-height.figma-only.400}" - }, - "md": { - "type": "number", - "value": "{global.font.line-height.figma-only.500}" - }, - "lg": { - "type": "number", - "value": "{global.font.line-height.figma-only.600}" - }, - "xl": { - "type": "number", - "value": "{global.font.line-height.figma-only.700}" - }, - "2xl": { - "type": "number", - "value": "{global.font.line-height.figma-only.800}" - } - } } }, "family": { "body": { + "description": "Use to define the font family for body text", "type": "number", "value": "{global.font.family.100}" }, "heading": { + "description": "Use to define the font family for heading text", "type": "number", "value": "{global.font.family.200}" }, "mono": { + "description": "Use to define the font family for mono text", "type": "number", "value": "{global.font.family.300}" } @@ -443,40 +488,49 @@ "size": { "body": { "sm": { + "description": "Use for a smaller font size in body sections.", "type": "number", "value": "{global.font.size.xs}" }, "default": { + "description": "Use as the default font size in body sections.", "type": "number", "value": "{global.font.size.sm}" }, "lg": { + "description": "Use for a larger font size in body sections.", "type": "number", "value": "{global.font.size.md}" } }, "heading": { "h1": { + "description": "Use as the font size for first level headings.", "type": "number", "value": "{global.font.size.2xl}" }, "h2": { + "description": "Use as the font size for second level headings.", "type": "number", "value": "{global.font.size.xl}" }, "h3": { + "description": "Use as the font size for third level headings.", "type": "number", "value": "{global.font.size.lg}" }, "h4": { + "description": "Use as the font size for fourth-level headings.", "type": "number", "value": "{global.font.size.md}" }, "h5": { + "description": "Use as the font size for fifth level headings.", "type": "number", "value": "{global.font.size.md}" }, "h6": { + "description": "Use as the font size for sixth level headings.", "type": "number", "value": "{global.font.size.md}" } @@ -486,30 +540,37 @@ "value": "{global.font.size.100}" }, "sm": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.200}" }, "md": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.300}" }, "lg": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.400}" }, "xl": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.500}" }, "2xl": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.600}" }, "3xl": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.700}" }, "4xl": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", "value": "{global.font.size.800}" } @@ -545,66 +606,81 @@ "X": { "sm": { "default": { + "description": "Use to define the X value for a default small box-shadow, like in sticky sections", "type": "number", "value": "{global.box-shadow.X.400}" }, "top": { + "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", "value": "{global.box-shadow.X.400}" }, "bottom": { + "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", "value": "{global.box-shadow.X.400}" }, "left": { + "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", "value": "{global.box-shadow.X.300}" }, "right": { + "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", "value": "{global.box-shadow.X.500}" } }, "md": { "default": { + "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", "value": "{global.box-shadow.X.400}" }, "top": { + "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", "type": "number", "value": "{global.box-shadow.X.400}" }, "bottom": { + "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "{global.box-shadow.X.400}" }, "left": { + "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", "value": "{global.box-shadow.X.200}" }, "right": { + "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", "value": "{global.box-shadow.X.600}" } }, "lg": { "default": { + "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", "type": "number", "value": "{global.box-shadow.X.400}" }, "top": { + "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", "type": "number", "value": "{global.box-shadow.X.400}" }, "bottom": { + "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "{global.box-shadow.X.400}" }, "left": { + "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", "type": "number", "value": "{global.box-shadow.X.100}" }, "right": { + "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", "type": "number", "value": "{global.box-shadow.X.700}" } @@ -613,66 +689,81 @@ "Y": { "sm": { "default": { + "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", "type": "number", "value": "{global.box-shadow.Y.500}" }, "top": { + "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", "value": "{global.box-shadow.Y.300}" }, "bottom": { + "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", "value": "{global.box-shadow.Y.500}" }, "left": { + "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", "value": "{global.box-shadow.Y.400}" }, "right": { + "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", "value": "{global.box-shadow.Y.400}" } }, "md": { "default": { + "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", "value": "{global.box-shadow.Y.600}" }, "top": { + "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", "type": "number", "value": "{global.box-shadow.Y.200}" }, "bottom": { + "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "{global.box-shadow.Y.600}" }, "left": { + "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", "value": "{global.box-shadow.Y.400}" }, "right": { + "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", "value": "{global.box-shadow.Y.400}" } }, "lg": { "default": { + "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", "type": "number", "value": "{global.box-shadow.Y.700}" }, "top": { + "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", "type": "number", "value": "{global.box-shadow.Y.100}" }, "bottom": { + "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", "value": "{global.box-shadow.Y.700}" }, "left": { + "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", "type": "number", "value": "{global.box-shadow.Y.400}" }, "right": { + "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", "type": "number", "value": "{global.box-shadow.Y.400}" } @@ -680,28 +771,34 @@ }, "blur": { "sm": { + "description": "Use to define the blur for a small box-shadow", "type": "number", "value": "{global.box-shadow.blur.100}" }, "md": { + "description": "Use to define the blur for a medium box-shadow", "type": "number", "value": "{global.box-shadow.blur.200}" }, "lg": { + "description": "Use to define the blue for a large box-shadow", "type": "number", "value": "{global.box-shadow.blur.300}" } }, "spread": { "sm": { + "description": "Use to define the spread for a small box-shadow", "type": "number", "value": "{global.box-shadow.spread.100}" }, "md": { + "description": "Use to define the spread of a medium box-shadow", "type": "number", "value": "{global.box-shadow.spread.100}" }, "lg": { + "description": "Use to define the spread of a large box-shadow", "type": "number", "value": "{global.box-shadow.spread.100}" } @@ -709,47 +806,58 @@ }, "breakpoint": { "xs": { + "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.100}" }, "sm": { + "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.200}" }, "md": { + "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.300}" }, "lg": { + "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.400}" }, "xl": { + "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.500}" }, "2xl": { + "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.600}" }, "height": { "sm": { + "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.100}" }, "md": { + "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.250}" }, "lg": { + "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.300}" }, "xl": { + "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.350}" }, "2xl": { + "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", "value": "{global.breakpoint.550}" } diff --git a/packages/module/tokens/default/semantic.json b/packages/module/tokens/default/semantic.json index bd9051b..d1cf1a7 100644 --- a/packages/module/tokens/default/semantic.json +++ b/packages/module/tokens/default/semantic.json @@ -15,7 +15,7 @@ "value": "{global.background.color.200}" }, "clicked": { - "description": "Use as the selected state for primary backgrounds", + "description": "Use as the clicked state for primary backgrounds", "type": "color", "value": "{global.background.color.200}" } @@ -32,14 +32,14 @@ "value": "{global.background.color.300}" }, "clicked": { - "description": "Use as the selected state for secondary backgrounds", + "description": "Use as the clicked state for secondary backgrounds", "type": "color", "value": "{global.background.color.300}" } }, "floating": { "default": { - "description": "Use as background color for components that show over top of other content such as toast alerts, menus, modals, overlay drawers, etc.", + "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", "type": "color", "value": "{global.background.color.100}" }, @@ -49,7 +49,7 @@ "value": "{global.background.color.200}" }, "clicked": { - "description": "Use as the selected state for floating backgrounds", + "description": "Use as the clicked state for floating backgrounds", "type": "color", "value": "{global.background.color.200}" } @@ -130,139 +130,166 @@ "color": { "brand": { "default": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", "value": "{global.color.brand.200}" }, "hover": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", "value": "{global.color.brand.300}" }, "clicked": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", "value": "{global.color.brand.300}" } }, "favorite": { "default": { + "description": "Use as the default color for elements that have been favorited", "type": "color", "value": "{global.color.favorite.100}" }, "hover": { + "description": "Use as the hover state for elements that have been favorited", "type": "color", "value": "{global.color.favorite.200}" }, "clicked": { + "description": "Use as the clicked state for elements that have been favorited", "type": "color", "value": "{global.color.favorite.200}" } }, "status": { - "unread": { - "default": { - "default": { - "type": "color", - "value": "{global.color.brand.default}" - }, - "hover": { - "type": "color", - "value": "{global.color.brand.hover}" - }, - "clicked": { - "type": "color", - "value": "{global.color.brand.clicked}" - } - }, - "attention": { - "default": { - "type": "color", - "value": "{global.color.status.danger.default}" - }, - "clicked": { - "type": "color", - "value": "{global.color.status.danger.clicked}" - }, - "hover": { - "type": "color", - "value": "{global.color.status.danger.hover}" - } - } - }, "success": { "default": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", "value": "{global.color.status.success.100}" }, "hover": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", "value": "{global.color.status.success.200}" }, "clicked": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", "value": "{global.color.status.success.200}" } }, "warning": { "default": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", "value": "{global.color.status.warning.100}" }, "hover": { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", "value": "{global.color.status.warning.200}" }, "clicked": { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", "value": "{global.color.status.warning.200}" } }, "danger": { "default": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", "value": "{global.color.status.danger.100}" }, "hover": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", "value": "{global.color.status.danger.200}" }, "clicked": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", "value": "{global.color.status.danger.200}" } }, "info": { "default": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", "value": "{global.color.status.info.100}" }, "hover": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", "value": "{global.color.status.info.200}" }, "clicked": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", "value": "{global.color.status.info.200}" } }, "custom": { "default": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.100}" }, "hover": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.200}" } }, + "unread": { + "default": { + "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.color.brand.default}" + }, + "hover": { + "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.color.brand.hover}" + }, + "clicked": { + "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", + "type": "color", + "value": "{global.color.brand.clicked}" + }, + "attention": { + "default": { + "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.color.status.danger.default}" + }, + "clicked": { + "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "hover": { + "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.color.status.danger.hover}" + } + } + }, "read": { "on-secondary": { + "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", "type": "color", "value": "{global.background.color.control.default}" }, "on-primary": { + "description": "Use as the default color for elements that convey a read status and are placed on a primary background", "type": "color", "value": "{global.background.color.secondary.default}" } @@ -271,126 +298,153 @@ "nonstatus": { "red": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.color.nonstatus.red.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status red background color.", "type": "color", "value": "{global.color.nonstatus.red.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status red background color.", "type": "color", "value": "{global.color.nonstatus.red.200}" } }, "orange": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.color.nonstatus.orange.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status orange background color.", "type": "color", "value": "{global.color.nonstatus.orange.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status orange background color.", "type": "color", "value": "{global.color.nonstatus.orange.200}" } }, "orangered": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.color.nonstatus.orangered.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status orange-red background color.", "type": "color", "value": "{global.color.nonstatus.orangered.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", "type": "color", "value": "{global.color.nonstatus.orangered.200}" } }, "yellow": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.color.nonstatus.gold.100}" + "value": "{global.color.nonstatus.yellow.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status yellow background color.", "type": "color", - "value": "{global.color.nonstatus.gold.200}" + "value": "{global.color.nonstatus.yellow.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status yellow background color.", "type": "color", - "value": "{global.color.nonstatus.gold.200}" + "value": "{global.color.nonstatus.yellow.200}" } }, "green": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.color.nonstatus.green.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status green background color.", "type": "color", "value": "{global.color.nonstatus.green.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status green background color.", "type": "color", "value": "{global.color.nonstatus.green.200}" } }, "teal": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.color.nonstatus.cyan.100}" + "value": "{global.color.nonstatus.teal.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status teal background color.", "type": "color", - "value": "{global.color.nonstatus.cyan.200}" + "value": "{global.color.nonstatus.teal.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status teal background color.", "type": "color", - "value": "{global.color.nonstatus.cyan.200}" + "value": "{global.color.nonstatus.teal.200}" } }, "blue": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.color.nonstatus.blue.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status blue background color.", "type": "color", "value": "{global.color.nonstatus.blue.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status blue background color.", "type": "color", "value": "{global.color.nonstatus.blue.200}" } }, "purple": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.color.nonstatus.purple.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status purple background color.", "type": "color", "value": "{global.color.nonstatus.purple.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status purple background color.", "type": "color", "value": "{global.color.nonstatus.purple.200}" } }, "gray": { "default": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.color.nonstatus.gray.100}" }, "hover": { + "description": "Use as the hover state color for any element that uses the non status gray background color.", "type": "color", "value": "{global.color.nonstatus.gray.200}" }, "clicked": { + "description": "Use as the clicked state color for any element that uses the non status gray background color.", "type": "color", "value": "{global.color.nonstatus.gray.200}" } @@ -401,42 +455,51 @@ "color": { "brand": { "default": { + "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "{global.color.brand.default}" }, "hover": { + "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "{global.color.brand.hover}" }, "clicked": { + "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", "type": "color", "value": "{global.color.brand.clicked}" } }, "on-brand": { "default": { + "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", "value": "{global.icon.color.inverse}" } }, "favorite": { "default": { + "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "{global.color.favorite.default}" }, "hover": { + "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "{global.color.favorite.hover}" }, "clicked": { + "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", "value": "{global.color.favorite.clicked}" } @@ -444,140 +507,170 @@ "status": { "success": { "default": { + "description": "Use as the default color for text that communicates a success status.", "type": "color", "value": "{global.color.status.success.default}" }, "hover": { + "description": "Use as the hover state color for text that communicates a success status.", "type": "color", "value": "{global.color.status.success.hover}" }, "clicked": { + "description": "Use as the clicked state color for text that communicates a success status.", "type": "color", "value": "{global.color.status.success.clicked}" } }, "on-success": { "default": { + "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", "value": "{global.icon.color.inverse}" } }, "warning": { "default": { + "description": "Use as the default color for text that communicates a warning status.", "type": "color", "value": "{global.color.status.warning.200}" }, "hover": { + "description": "Use as the hover state color for text that communicates a warning status.", "type": "color", "value": "{global.color.status.warning.300}" }, "clicked": { + "description": "Use as the clicked state color for text that communicates a warning status.", "type": "color", "value": "{global.color.status.warning.300}" } }, "on-warning": { "default": { + "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "{global.icon.color.regular}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "{global.icon.color.regular}" }, "clicked": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", "value": "{global.icon.color.regular}" } }, "danger": { "default": { + "description": "Use as the default color for icons that convey danger, like in alerts or banners.", "type": "color", "value": "{global.color.status.danger.default}" }, "hover": { + "description": "Use as the hover state for icons that indicate danger.", "type": "color", "value": "{global.color.status.danger.hover}" }, "clicked": { + "description": "Use as the clicked state for icons that indicate danger.", "type": "color", "value": "{global.color.status.danger.clicked}" } }, "on-danger": { "default": { + "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", "value": "{global.icon.color.inverse}" } }, "info": { "default": { + "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", "type": "color", "value": "{global.color.status.info.default}" }, "hover": { + "description": "Use as the hover state for icons that identify informational messages.", "type": "color", "value": "{global.color.status.info.hover}" }, "clicked": { + "description": "Use as the clicked state for icons that identify informational messages.", "type": "color", "value": "{global.color.status.info.clicked}" } }, "on-info": { "default": { + "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", "value": "{global.icon.color.inverse}" } }, "custom": { "default": { + "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", "type": "color", "value": "{global.color.status.custom.default}" }, "hover": { + "description": "Use as the hover state for icons that convey generic status with no associated severity.", "type": "color", "value": "{global.color.status.custom.hover}" }, "clicked": { + "description": "Use as the clicked state for icons that convey generic status with no associated severity.", "type": "color", "value": "{global.color.status.custom.clicked}" } }, "on-custom": { "default": { + "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", "type": "color", "value": "{global.icon.color.inverse}" } @@ -585,28 +678,34 @@ "unread": { "on-default": { "default": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" } }, "on-attention": { "default": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, "hover": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.icon.color.inverse}" } @@ -614,60 +713,69 @@ } }, "regular": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", "value": "{global.icon.color.100}" }, "subtle": { + "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", "type": "color", "value": "{global.icon.color.200}" }, "inverse": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", "value": "{global.icon.color.300}" }, "disabled": { - "description": "for use without disabled background color", + "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", "type": "color", "value": "{global.color.disabled.200}" }, "on-disabled": { - "description": "pair with disabled background color", + "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", "type": "color", "value": "{global.color.disabled.300}" }, "severity": { "undefined": { "default": { + "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", "type": "color", "value": "{global.color.severity.undefined.100}" } }, "none": { "default": { + "description": "Use as the default color for severity icons that identify no issues.", "type": "color", "value": "{global.color.severity.none.100}" } }, "minor": { "default": { + "description": "Use as the default color for severity icons that identify issues of minor severity.", "type": "color", "value": "{global.color.severity.minor.100}" } }, "moderate": { "default": { + "description": "Use as the default color for severity icons that identify issues of moderate severity.", "type": "color", "value": "{global.color.severity.moderate.100}" } }, "important": { "default": { + "description": "Use as the default color for severity icons that identify issues of important severity.", "type": "color", "value": "{global.color.severity.important.100}" } }, "critical": { "default": { + "description": "Use as the default color for severity icons that identify issues of critical severity.", "type": "color", "value": "{global.color.severity.critical.100}" } @@ -676,126 +784,153 @@ "nonstatus": { "on-red": { "default": { + "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", "type": "color", "value": "{global.icon.color.regular}" } }, "on-orangered": { "default": { + "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", "value": "{global.icon.color.regular}" } }, "on-orange": { "default": { + "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", "value": "{global.icon.color.regular}" } }, "on-yellow": { "default": { + "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", "value": "{global.icon.color.regular}" } }, "on-green": { "default": { + "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", "value": "{global.icon.color.regular}" } }, "on-teal": { "default": { + "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", "value": "{global.icon.color.regular}" } }, "on-blue": { "default": { + "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", "value": "{global.icon.color.regular}" } }, "on-purple": { "default": { + "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", "value": "{global.icon.color.regular}" } }, "on-gray": { "default": { + "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "hover": { + "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "{global.icon.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", "value": "{global.icon.color.regular}" } @@ -807,14 +942,17 @@ "color": { "brand": { "default": { + "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "{global.color.brand.default}" }, "hover": { + "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "{global.color.brand.hover}" }, "clicked": { + "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", "value": "{global.color.brand.clicked}" } @@ -822,222 +960,270 @@ "status": { "success": { "default": { + "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.success.default}" }, "hover": { + "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", "value": "{global.color.status.success.hover}" }, "clicked": { + "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", "value": "{global.color.status.success.clicked}" } }, "warning": { "default": { + "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.warning.200}" }, "hover": { + "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.warning.300}" }, "clicked": { + "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.warning.300}" } }, "danger": { "default": { + "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.danger.default}" }, "hover": { + "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.danger.hover}" }, "clicked": { + "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.danger.clicked}" } }, "info": { "default": { + "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.info.default}" }, "hover": { + "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.info.hover}" }, "clicked": { + "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.info.clicked}" } }, "custom": { "default": { + "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.custom.default}" }, "hover": { + "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.custom.hover}" }, "clicked": { + "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", "value": "{global.color.status.custom.clicked}" } } }, "default": { + "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "{global.border.color.100}" }, "hover": { + "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "{global.color.brand.100}" }, "clicked": { + "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "{global.color.brand.200}" }, "disabled": { + "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", "value": "{global.color.disabled.200}" }, "alt": { + "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", "type": "color", "value": "{global.background.color.primary.default}" }, "on-secondary": { + "description": "Use on borders/dividers that are placed on a secondary bkg color.", "type": "color", "value": "{global.border.color.300}" }, "nonstatus": { "red": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", "value": "{global.color.nonstatus.red.200}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.red.300}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.red.300}" } }, "orangered": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.orangered.200}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.orangered.300}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.orangered.300}" } }, "orange": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.orange.200}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.orange.300}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.orange.300}" } }, "yellow": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.gold.200}" + "value": "{global.color.nonstatus.yellow.200}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.gold.300}" + "value": "{global.color.nonstatus.yellow.300}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.gold.300}" + "value": "{global.color.nonstatus.yellow.300}" } }, "green": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.green.200}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.green.300}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.green.300}" } }, "teal": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.cyan.200}" + "value": "{global.color.nonstatus.teal.200}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.cyan.300}" + "value": "{global.color.nonstatus.teal.300}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.cyan.300}" + "value": "{global.color.nonstatus.teal.300}" } }, "blue": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.blue.200}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.blue.300}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.blue.300}" } }, "purple": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.purple.200}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.purple.300}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.purple.300}" } }, "gray": { "default": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.gray.200}" }, "hover": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.gray.300}" }, "clicked": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", "value": "{global.color.nonstatus.gray.300}" } @@ -1049,77 +1235,92 @@ "color": { "link": { "default": { + "description": "Use as the default text color for links.", "type": "color", "value": "{global.text.color.link.100}" }, "hover": { + "description": "Use as the hover state text color for links.", "type": "color", "value": "{global.text.color.link.200}" }, "visited": { + "description": "Use as the color to indicate that a link has been visited.", "type": "color", "value": "{global.text.color.link.300}" } }, + "brand": { + "default": { + "description": "Use as the default color for branded text.", + "type": "color", + "value": "{global.color.brand.default}" + }, + "hover": { + "description": "Use as the hover state color for branded text.", + "type": "color", + "value": "{global.color.brand.hover}" + }, + "clicked": { + "description": "Use as the clicked state color for branded text.", + "type": "color", + "value": "{global.color.brand.clicked}" + } + }, "regular": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", "value": "{global.text.color.100}" }, "subtle": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", "value": "{global.text.color.200}" }, "inverse": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", "value": "{global.text.color.300}" }, "on-brand": { "default": { + "description": "Use as the default color for text placed on a brand-colored background.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text placed on a brand-colored background.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text placed on a brand-colored background.", "type": "color", "value": "{global.text.color.inverse}" } }, "placeholder": { + "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", "type": "color", "value": "{global.text.color.subtle}" }, "disabled": { - "description": "for use without disabled background color", + "description": "Use as the color of text on disabled elements, like disabled menu items.", "type": "color", "value": "{global.color.disabled.200}" }, "on-disabled": { - "description": "pair with disabled background color", + "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", "type": "color", "value": "{global.color.disabled.300}" }, - "brand": { - "default": { - "type": "color", - "value": "{global.color.brand.default}" - }, - "hover": { - "type": "color", - "value": "{global.color.brand.hover}" - }, - "clicked": { - "type": "color", - "value": "{global.color.brand.clicked}" - } - }, "required": { + "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", "type": "color", "value": "{global.text.color.400}" }, "on-highlight": { + "description": "Use as the color of text that is highlighted.", "type": "color", "value": "{global.text.color.100}" }, @@ -1140,14 +1341,17 @@ }, "on-success": { "default": { + "description": "Use as the default color for text that is placed on a success background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" } @@ -1168,98 +1372,119 @@ }, "on-warning": { "default": { + "description": "Use as the default color for text that is placed on a warning background color, like in banners.", "type": "color", "value": "{global.text.color.regular}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", "type": "color", "value": "{global.text.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", "type": "color", "value": "{global.text.color.regular}" } }, "danger": { "default": { + "description": "Use as the default color for text that communicates a danger status.", "type": "color", "value": "{global.color.status.danger.default}" }, "hover": { + "description": "Use as the hover state color for text that communicates a danger status.", "type": "color", "value": "{global.color.status.danger.hover}" }, "clicked": { + "description": "Use as the clicked state color for text that communicates a danger status.", "type": "color", "value": "{global.color.status.danger.clicked}" } }, "on-danger": { "default": { + "description": "Use as the default color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", "type": "color", "value": "{global.icon.color.inverse}" } }, "info": { "default": { + "description": "Use as the default color for text that communicates am info status.", "type": "color", "value": "{global.color.status.info.default}" }, "hover": { + "description": "Use as the hover state color for text that communicates an infostatus.", "type": "color", "value": "{global.color.status.info.hover}" }, "clicked": { + "description": "Use as the clicked state color for text that communicates an info status.", "type": "color", "value": "{global.color.status.info.clicked}" } }, "on-info": { "default": { + "description": "Use as the default color for text that is placed on an info background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" } }, "custom": { "default": { + "description": "Use as the default color for text that communicates a custom status.", "type": "color", "value": "{global.color.status.custom.default}" }, "hover": { + "description": "Use as the hover state color for text that communicates a custom status.", "type": "color", "value": "{global.color.status.custom.hover}" }, "clicked": { + "description": "Use as the clicked state color for text that communicates a custom status.", "type": "color", "value": "{global.color.status.custom.clicked}" } }, "on-custom": { "default": { + "description": "Use as the default color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", "type": "color", "value": "{global.text.color.inverse}" } @@ -1267,28 +1492,34 @@ "unread": { "on-default": { "default": { + "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" } }, "on-attention": { "default": { + "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, "hover": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", "value": "{global.text.color.inverse}" } @@ -1298,126 +1529,153 @@ "nonstatus": { "on-red": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus red background color.", "type": "color", "value": "{global.text.color.regular}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", "type": "color", "value": "{global.text.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", "type": "color", "value": "{global.text.color.regular}" } }, "on-orangered": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", "type": "color", "value": "{global.text.color.regular}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", "type": "color", "value": "{global.text.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", "type": "color", "value": "{global.text.color.regular}" } }, "on-orange": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus orange background color.", "type": "color", "value": "{global.text.color.regular}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", "type": "color", "value": "{global.text.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", "type": "color", "value": "{global.text.color.regular}" } }, "on-yellow": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", "type": "color", "value": "{global.text.color.regular}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", "type": "color", "value": "{global.text.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", "type": "color", "value": "{global.text.color.regular}" } }, "on-green": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus green background color.", "type": "color", "value": "{global.text.color.regular}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", "type": "color", "value": "{global.text.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", "type": "color", "value": "{global.text.color.regular}" } }, "on-teal": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus teal background color.", "type": "color", "value": "{global.text.color.regular}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", "type": "color", "value": "{global.text.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", "type": "color", "value": "{global.text.color.regular}" } }, "on-blue": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus blue background color.", "type": "color", "value": "{global.text.color.regular}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", "type": "color", "value": "{global.text.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", "type": "color", "value": "{global.text.color.regular}" } }, "on-purple": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus purple background color.", "type": "color", "value": "{global.text.color.regular}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", "type": "color", "value": "{global.text.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", "type": "color", "value": "{global.text.color.regular}" } }, "on-gray": { "default": { + "description": "Use as the default color for text that is placed on a nonstatus gray background color.", "type": "color", "value": "{global.text.color.regular}" }, "hover": { + "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", "type": "color", "value": "{global.text.color.regular}" }, "clicked": { + "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", "type": "color", "value": "{global.text.color.regular}" } @@ -1428,14 +1686,17 @@ "box-shadow": { "color": { "sm": { + "description": "Use as the color of small box-shadows.", "type": "color", "value": "{global.box-shadow.color.100}" }, "md": { + "description": "Use as the color of medium box-shadows.", "type": "color", "value": "{global.box-shadow.color.200}" }, "lg": { + "description": "Use as the color of large box-shadows.", "type": "color", "value": "{global.box-shadow.color.200}" } diff --git a/packages/module/tokens/default/semantic.motion.json b/packages/module/tokens/default/semantic.motion.json index effb51b..d13482c 100644 --- a/packages/module/tokens/default/semantic.motion.json +++ b/packages/module/tokens/default/semantic.motion.json @@ -4,85 +4,104 @@ "motion": { "duration": { "xs": { + "description": "Use for the quickest possible duration of an animation.", "type": "number", "value": "{global.duration.50}" }, "sm": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", "value": "{global.duration.100}" }, "md": { + "description": "Use for a medium animation duration.", "type": "number", "value": "{global.duration.200}" }, "lg": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", "value": "{global.duration.300}" }, "xl": { + "description": "Use for extra long animation duration.", "type": "number", "value": "{global.duration.400}" }, "2xl": { + "description": "Use for significantly long animation duration.", "type": "number", "value": "{global.duration.500}" }, "3xl": { + "description": "Use for the longest possible duration of an animation.", "type": "number", "value": "{global.duration.600}" }, "fade": { "short": { + "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", "type": "number", "value": "{global.motion.duration.sm}" }, "default": { + "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", "type": "number", "value": "{global.motion.duration.md}" }, "long": { + "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", "type": "number", "value": "{global.motion.duration.lg}" } }, "slide-out": { "short": { + "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", "value": "{global.motion.duration.lg}" }, "default": { + "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", "value": "{global.motion.duration.xl}" }, "long": { + "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", "value": "{global.motion.duration.2xl}" } }, "slide-in": { "short": { + "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", "value": "{global.motion.duration.lg}" }, "default": { + "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", "value": "{global.motion.duration.xl}" }, "long": { + "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", "value": "{global.motion.duration.2xl}" } }, "icon": { "short": { + "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", "type": "number", "value": "{global.motion.duration.xs}" }, "default": { + "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", "type": "number", "value": "{global.motion.duration.sm}" }, "long": { + "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", "type": "number", "value": "{global.motion.duration.md}" } @@ -90,32 +109,39 @@ }, "delay": { "none": { + "description": "Use when there should be no delay before an animation plays.", "type": "number", "value": "{global.delay.100}" }, "short": { + "description": "Use when there should be a short delay before an animation plays.", "type": "number", "value": "{global.delay.200}" }, "default": { + "description": "Use when there should be the default delay length before an animation plays.", "type": "number", "value": "{global.delay.300}" }, "long": { + "description": "Use when there should be a long delay before an animation plays.", "type": "number", "value": "{global.delay.400}" } }, "timing-function": { "accelerate": { + "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", "type": "number", "value": "{global.timing-function.100}" }, "default": { + "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", "type": "number", "value": "{global.timing-function.200}" }, "decelerate": { + "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", "type": "number", "value": "{global.timing-function.300}" } From 42dc548b4e3823f4d9ba4ec2a9c9c7ef1db41941 Mon Sep 17 00:00:00 2001 From: Evan Date: Tue, 9 Jul 2024 11:49:49 -0400 Subject: [PATCH 06/23] chore(token-docs): expand correctly, add swatches, dark-only expand fix --- packages/module/build.js | 4 +- .../module/build/css/tokens-charts-dark.scss | 4 +- packages/module/build/css/tokens-charts.scss | 4 +- packages/module/build/css/tokens-dark.scss | 2 +- packages/module/build/css/tokens-default.scss | 4 +- packages/module/build/css/tokens-palette.scss | 4 +- .../content/all-tokens-dark.json | 496 +- .../content/all-tokens-default.json | 496 +- .../content/semantic-tokens-dark.json | 13350 +++++++-------- .../content/semantic-tokens-default.json | 13384 ++++++++-------- .../patternfly-docs/content/tokensTable.css | 8 + .../content/tokensTableCategories.js | 132 +- .../module/patternfly-docs/scssAsJson.json | 927 +- 13 files changed, 13970 insertions(+), 14845 deletions(-) create mode 100644 packages/module/patternfly-docs/content/tokensTable.css diff --git a/packages/module/build.js b/packages/module/build.js index 74406f8..0baddce 100644 --- a/packages/module/build.js +++ b/packages/module/build.js @@ -14,6 +14,7 @@ const build = (selector) => { if (filePath.includes('base.dark.json')) return ['base', 'colors']; if (filePath.includes('base.dimension.json')) return ['base', 'dimension']; if (filePath.includes('base.motion.json')) return ['base', 'motion']; + if (filePath.includes('chart')) return ['chart']; if (filePath.includes('palette.color.json')) return ['palette']; return ['palette']; }; @@ -67,7 +68,8 @@ const build = (selector) => { dimension: {}, motion: {} }, - palette: {} + palette: {}, + chart: {} }; dictionary.allTokens.map((token) => { // determine token type based on tokens filepath diff --git a/packages/module/build/css/tokens-charts-dark.scss b/packages/module/build/css/tokens-charts-dark.scss index b0c3f4b..95bd13a 100644 --- a/packages/module/build/css/tokens-charts-dark.scss +++ b/packages/module/build/css/tokens-charts-dark.scss @@ -1,8 +1,8 @@ // Do not edit directly -// Generated on Tue, 02 Jul 2024 18:11:52 GMT +// Generated on Mon, 08 Jul 2024 13:59:54 GMT -@mixin pf-v6-tokens { +:root { --pf-t--chart--global--BorderWidth--lg: 8; --pf-t--chart--global--BorderWidth--sm: 2; --pf-t--chart--global--BorderWidth--xs: 1; diff --git a/packages/module/build/css/tokens-charts.scss b/packages/module/build/css/tokens-charts.scss index f6f1e29..feecd5d 100644 --- a/packages/module/build/css/tokens-charts.scss +++ b/packages/module/build/css/tokens-charts.scss @@ -1,8 +1,8 @@ // Do not edit directly -// Generated on Tue, 02 Jul 2024 18:11:52 GMT +// Generated on Mon, 08 Jul 2024 13:59:54 GMT -@mixin pf-v6-tokens { +:root { --pf-t--chart--global--BorderWidth--lg: 8; --pf-t--chart--global--BorderWidth--sm: 2; --pf-t--chart--global--BorderWidth--xs: 1; diff --git a/packages/module/build/css/tokens-dark.scss b/packages/module/build/css/tokens-dark.scss index c70b635..f950ba3 100644 --- a/packages/module/build/css/tokens-dark.scss +++ b/packages/module/build/css/tokens-dark.scss @@ -1,6 +1,6 @@ // Do not edit directly -// Generated on Tue, 02 Jul 2024 18:11:52 GMT +// Generated on Mon, 08 Jul 2024 13:59:54 GMT :root { --pf-t--global--background--color--action--plain--default: rgba(0, 0, 0, 0.0000); diff --git a/packages/module/build/css/tokens-default.scss b/packages/module/build/css/tokens-default.scss index 40340e0..897d2e9 100644 --- a/packages/module/build/css/tokens-default.scss +++ b/packages/module/build/css/tokens-default.scss @@ -1,8 +1,8 @@ // Do not edit directly -// Generated on Tue, 02 Jul 2024 18:11:52 GMT +// Generated on Mon, 08 Jul 2024 13:59:54 GMT -@mixin pf-v6-tokens { +:root { --pf-t--global--background--color--500: rgba(21, 21, 21, 0.2000); --pf-t--global--background--color--600: rgba(199, 199, 199, 0.2500); --pf-t--global--background--color--action--plain--default: rgba(255, 255, 255, 0.0000); diff --git a/packages/module/build/css/tokens-palette.scss b/packages/module/build/css/tokens-palette.scss index 1a96c99..1c9b808 100644 --- a/packages/module/build/css/tokens-palette.scss +++ b/packages/module/build/css/tokens-palette.scss @@ -1,8 +1,8 @@ // Do not edit directly -// Generated on Tue, 02 Jul 2024 18:11:52 GMT +// Generated on Mon, 08 Jul 2024 13:59:54 GMT -@mixin pf-v6-tokens { +:root { --pf-t--color--black: #000000; --pf-t--color--blue--10: #e0f0ff; --pf-t--color--blue--20: #b9dafc; diff --git a/packages/module/patternfly-docs/content/all-tokens-dark.json b/packages/module/patternfly-docs/content/all-tokens-dark.json index d644e15..8876a94 100644 --- a/packages/module/patternfly-docs/content/all-tokens-dark.json +++ b/packages/module/patternfly-docs/content/all-tokens-dark.json @@ -1,7 +1,7 @@ { "pf-t--global--spacer--100": { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -22,7 +22,7 @@ }, "pf-t--global--spacer--200": { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -43,7 +43,7 @@ }, "pf-t--global--spacer--300": { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -64,7 +64,7 @@ }, "pf-t--global--spacer--400": { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -85,7 +85,7 @@ }, "pf-t--global--spacer--500": { "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -106,7 +106,7 @@ }, "pf-t--global--spacer--600": { "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -127,7 +127,7 @@ }, "pf-t--global--spacer--700": { "type": "number", - "value": "64px", + "value": "4rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -148,7 +148,7 @@ }, "pf-t--global--spacer--800": { "type": "number", - "value": "80px", + "value": "5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -170,7 +170,7 @@ "pf-t--global--spacer--xs": { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -192,7 +192,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -216,7 +216,7 @@ "pf-t--global--spacer--sm": { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -238,7 +238,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -262,7 +262,7 @@ "pf-t--global--spacer--md": { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -284,7 +284,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -308,7 +308,7 @@ "pf-t--global--spacer--lg": { "description": "Use for large spaces between elements.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -330,7 +330,7 @@ "references": [ { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -354,7 +354,7 @@ "pf-t--global--spacer--xl": { "description": "Use for extra large spaces between elements.", "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -376,7 +376,7 @@ "references": [ { "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -400,7 +400,7 @@ "pf-t--global--spacer--2xl": { "description": "Use for double extra large spaces spacing between elements.", "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -422,7 +422,7 @@ "references": [ { "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -446,7 +446,7 @@ "pf-t--global--spacer--3xl": { "description": "Use for triple extra large spaces between elements.", "type": "number", - "value": "64px", + "value": "4rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -468,7 +468,7 @@ "references": [ { "type": "number", - "value": "64px", + "value": "4rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -492,7 +492,7 @@ "pf-t--global--spacer--4xl": { "description": "Use for quadruple extra large spaces between elements.", "type": "number", - "value": "80px", + "value": "5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -514,7 +514,7 @@ "references": [ { "type": "number", - "value": "80px", + "value": "5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -538,7 +538,7 @@ "pf-t--global--spacer--control--vertical--default": { "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -565,7 +565,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -587,7 +587,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -613,7 +613,7 @@ "pf-t--global--spacer--control--vertical--compact": { "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -640,7 +640,7 @@ { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -662,7 +662,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -688,7 +688,7 @@ "pf-t--global--spacer--control--vertical--plain": { "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -715,7 +715,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -737,7 +737,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -763,7 +763,7 @@ "pf-t--global--spacer--control--horizontal--default": { "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -790,7 +790,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -812,7 +812,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -838,7 +838,7 @@ "pf-t--global--spacer--control--horizontal--plain": { "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -865,7 +865,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -887,7 +887,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -913,7 +913,7 @@ "pf-t--global--spacer--control--horizontal--compact": { "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -940,7 +940,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -962,7 +962,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -988,7 +988,7 @@ "pf-t--global--spacer--control--horizontal--spacious": { "description": "Use to set the horizontal padding in large/display controls.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1015,7 +1015,7 @@ { "description": "Use for large spaces between elements.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1037,7 +1037,7 @@ "references": [ { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -1063,7 +1063,7 @@ "pf-t--global--spacer--gap--text-to-element--default": { "description": "Use to space an element, like an icon or badge, inline with text", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1090,7 +1090,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1112,7 +1112,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -1138,7 +1138,7 @@ "pf-t--global--spacer--gap--control-to-control--default": { "description": "Use to set the space between controls, like in input groups or filter groups", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1165,7 +1165,7 @@ { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1187,7 +1187,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -1213,7 +1213,7 @@ "pf-t--global--spacer--gap--group--vertical": { "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1240,7 +1240,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1262,7 +1262,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -1288,7 +1288,7 @@ "pf-t--global--spacer--gap--group--horizontal": { "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1315,7 +1315,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1337,7 +1337,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -1363,7 +1363,7 @@ "pf-t--global--spacer--gap--group-to-group--horizontal": { "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1390,7 +1390,7 @@ { "description": "Use for double extra large spaces spacing between elements.", "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1412,7 +1412,7 @@ "references": [ { "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -1438,7 +1438,7 @@ "pf-t--global--spacer--gap--group-to-group--vertical": { "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1465,7 +1465,7 @@ { "description": "Use for large spaces between elements.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1487,7 +1487,7 @@ "references": [ { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -1513,7 +1513,7 @@ "pf-t--global--spacer--gap--action-to-action--default": { "description": "Use to set the space between actions, like in an action list group.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1540,7 +1540,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1562,7 +1562,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -1588,7 +1588,7 @@ "pf-t--global--spacer--gap--action-to-action--plain": { "description": "Use to set the space between plain actions, like in an action list group.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1615,7 +1615,7 @@ { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1637,7 +1637,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -1663,7 +1663,7 @@ "pf-t--global--spacer--action--horizontal--default": { "description": "Use to set the horizontal padding inside a default action, like buttons.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1690,7 +1690,7 @@ { "description": "Use for large spaces between elements.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1712,7 +1712,7 @@ "references": [ { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -1738,11 +1738,11 @@ "pf-t--global--spacer--action--horizontal--plain": { "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", "type": "number", - "value": "8px", + "value": "0.5rem", "compact": { "description": "Use to set the horizontal padding inside a compact, plain action/button.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false }, @@ -1779,7 +1779,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1801,7 +1801,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -1827,7 +1827,7 @@ "pf-t--global--spacer--action--horizontal--compact": { "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1854,7 +1854,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1876,7 +1876,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -1902,7 +1902,7 @@ "pf-t--global--spacer--action--horizontal--spacious": { "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1929,7 +1929,7 @@ { "description": "Use for extra large spaces between elements.", "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -1951,7 +1951,7 @@ "references": [ { "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -1977,7 +1977,7 @@ "pf-t--global--spacer--action--vertical--compact": { "description": "Use to set the vertical padding inside a compact action, like compact buttons.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2004,7 +2004,7 @@ { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2026,7 +2026,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2052,7 +2052,7 @@ "pf-t--global--spacer--action--vertical--spacious": { "description": "Use to set the vertical padding inside a large/display action, like CTAs.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2079,7 +2079,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2101,7 +2101,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2126,7 +2126,7 @@ }, "pf-t--global--icon--size--100": { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2149,7 +2149,7 @@ }, "pf-t--global--icon--size--200": { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2172,7 +2172,7 @@ }, "pf-t--global--icon--size--250": { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2195,7 +2195,7 @@ }, "pf-t--global--icon--size--300": { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2218,7 +2218,7 @@ }, "pf-t--global--icon--size--400": { "type": "number", - "value": "56px", + "value": "3.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2241,7 +2241,7 @@ }, "pf-t--global--icon--size--500": { "type": "number", - "value": "96px", + "value": "6rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2265,7 +2265,7 @@ "pf-t--global--icon--size--sm": { "description": "Use for small icons.", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2289,7 +2289,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2315,7 +2315,7 @@ "pf-t--global--icon--size--md": { "description": "Use for medium icons.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2339,7 +2339,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2365,7 +2365,7 @@ "pf-t--global--icon--size--lg": { "description": "Use for large icons.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2389,7 +2389,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2415,7 +2415,7 @@ "pf-t--global--icon--size--xl": { "description": "Use for extra large icons.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2439,7 +2439,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2465,7 +2465,7 @@ "pf-t--global--icon--size--2xl": { "description": "Use for double extra large icons.", "type": "number", - "value": "56px", + "value": "3.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2489,7 +2489,7 @@ "references": [ { "type": "number", - "value": "56px", + "value": "3.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2515,7 +2515,7 @@ "pf-t--global--icon--size--3xl": { "description": "Use for triple extra large icons.", "type": "number", - "value": "96px", + "value": "6rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2539,7 +2539,7 @@ "references": [ { "type": "number", - "value": "96px", + "value": "6rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2565,7 +2565,7 @@ "pf-t--global--icon--size--font--heading--h1": { "description": "Use for icons that are placed inline with first level headings", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2593,7 +2593,7 @@ { "description": "Use as the font size for first level headings.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2620,7 +2620,7 @@ { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2644,7 +2644,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2674,7 +2674,7 @@ "pf-t--global--icon--size--font--heading--h2": { "description": "Use for icons that are placed inline with second level headings", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2702,7 +2702,7 @@ { "description": "Use as the font size for second level headings.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2729,7 +2729,7 @@ { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2753,7 +2753,7 @@ "references": [ { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2783,7 +2783,7 @@ "pf-t--global--icon--size--font--heading--h3": { "description": "Use for icons that are placed inline with third level headings", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2811,7 +2811,7 @@ { "description": "Use as the font size for third level headings.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2838,7 +2838,7 @@ { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2862,7 +2862,7 @@ "references": [ { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -2892,7 +2892,7 @@ "pf-t--global--icon--size--font--heading--h4": { "description": "Use for icons that are placed inline with fourth level headings", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2920,7 +2920,7 @@ { "description": "Use as the font size for fourth-level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2947,7 +2947,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -2971,7 +2971,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -3001,7 +3001,7 @@ "pf-t--global--icon--size--font--heading--h5": { "description": "Use for icons that are placed inline with fifth level headings", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3029,7 +3029,7 @@ { "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3056,7 +3056,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3080,7 +3080,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -3110,7 +3110,7 @@ "pf-t--global--icon--size--font--heading--h6": { "description": "Use for icons that are placed inline with sixth level headings", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3138,7 +3138,7 @@ { "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3165,7 +3165,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3189,7 +3189,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -3219,7 +3219,7 @@ "pf-t--global--icon--size--font--body--sm": { "description": "Use for icons that are placed inline with small body text", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3247,7 +3247,7 @@ { "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3273,7 +3273,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3296,7 +3296,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -3326,7 +3326,7 @@ "pf-t--global--icon--size--font--body--default": { "description": "Use for icons that are placed inline with default body text", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3354,7 +3354,7 @@ { "description": "Use as the default font size in body sections.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3381,7 +3381,7 @@ { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3405,7 +3405,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -3435,7 +3435,7 @@ "pf-t--global--icon--size--font--body--lg": { "description": "Use for icons that are placed inline with large body text", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3463,7 +3463,7 @@ { "description": "Use for a larger font size in body sections.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3490,7 +3490,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3514,7 +3514,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -3544,7 +3544,7 @@ "pf-t--global--icon--size--font--xs": { "description": "Use for icons that are placed inline with font–size–xs text", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3570,7 +3570,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3593,7 +3593,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -3621,7 +3621,7 @@ "pf-t--global--icon--size--font--sm": { "description": "Use for icons that are placed inline with font–size–sm text", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3648,7 +3648,7 @@ { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3672,7 +3672,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -3700,7 +3700,7 @@ "pf-t--global--icon--size--font--md": { "description": "Use for icons that are placed inline with font–size–md text", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3727,7 +3727,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3751,7 +3751,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -3779,7 +3779,7 @@ "pf-t--global--icon--size--font--lg": { "description": "Use for icons that are placed inline with font–size–lg text", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3806,7 +3806,7 @@ { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3830,7 +3830,7 @@ "references": [ { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -3858,7 +3858,7 @@ "pf-t--global--icon--size--font--xl": { "description": "Use for icons that are placed inline with font–size–xl text", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3885,7 +3885,7 @@ { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3909,7 +3909,7 @@ "references": [ { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -3937,7 +3937,7 @@ "pf-t--global--icon--size--font--2xl": { "description": "Use for icons that are placed inline with font–size–2xl text", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3964,7 +3964,7 @@ { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -3988,7 +3988,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -4016,7 +4016,7 @@ "pf-t--global--icon--size--font--3xl": { "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -4043,7 +4043,7 @@ { "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -4067,7 +4067,7 @@ "references": [ { "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -4095,7 +4095,7 @@ "pf-t--global--icon--size--font--4xl": { "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -4122,7 +4122,7 @@ { "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -4146,7 +4146,7 @@ "references": [ { "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -19333,7 +19333,7 @@ }, "pf-t--global--font--size--100": { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -19356,7 +19356,7 @@ }, "pf-t--global--font--size--200": { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -19379,7 +19379,7 @@ }, "pf-t--global--font--size--300": { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -19402,7 +19402,7 @@ }, "pf-t--global--font--size--400": { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -19425,7 +19425,7 @@ }, "pf-t--global--font--size--500": { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -19448,7 +19448,7 @@ }, "pf-t--global--font--size--600": { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -19471,7 +19471,7 @@ }, "pf-t--global--font--size--700": { "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -19494,7 +19494,7 @@ }, "pf-t--global--font--size--800": { "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -19518,7 +19518,7 @@ "pf-t--global--font--size--body--sm": { "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -19544,7 +19544,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -19567,7 +19567,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -19595,7 +19595,7 @@ "pf-t--global--font--size--body--default": { "description": "Use as the default font size in body sections.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -19622,7 +19622,7 @@ { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -19646,7 +19646,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -19674,7 +19674,7 @@ "pf-t--global--font--size--body--lg": { "description": "Use for a larger font size in body sections.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -19701,7 +19701,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -19725,7 +19725,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -19753,7 +19753,7 @@ "pf-t--global--font--size--heading--h1": { "description": "Use as the font size for first level headings.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -19780,7 +19780,7 @@ { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -19804,7 +19804,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -19832,7 +19832,7 @@ "pf-t--global--font--size--heading--h2": { "description": "Use as the font size for second level headings.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -19859,7 +19859,7 @@ { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -19883,7 +19883,7 @@ "references": [ { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -19911,7 +19911,7 @@ "pf-t--global--font--size--heading--h3": { "description": "Use as the font size for third level headings.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -19938,7 +19938,7 @@ { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -19962,7 +19962,7 @@ "references": [ { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -19990,7 +19990,7 @@ "pf-t--global--font--size--heading--h4": { "description": "Use as the font size for fourth-level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -20017,7 +20017,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -20041,7 +20041,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -20069,7 +20069,7 @@ "pf-t--global--font--size--heading--h5": { "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -20096,7 +20096,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -20120,7 +20120,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -20148,7 +20148,7 @@ "pf-t--global--font--size--heading--h6": { "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -20175,7 +20175,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -20199,7 +20199,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -20226,7 +20226,7 @@ }, "pf-t--global--font--size--xs": { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -20249,7 +20249,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -20275,7 +20275,7 @@ "pf-t--global--font--size--sm": { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -20299,7 +20299,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -20325,7 +20325,7 @@ "pf-t--global--font--size--md": { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -20349,7 +20349,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -20375,7 +20375,7 @@ "pf-t--global--font--size--lg": { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -20399,7 +20399,7 @@ "references": [ { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -20425,7 +20425,7 @@ "pf-t--global--font--size--xl": { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -20449,7 +20449,7 @@ "references": [ { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -20475,7 +20475,7 @@ "pf-t--global--font--size--2xl": { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -20499,7 +20499,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -20525,7 +20525,7 @@ "pf-t--global--font--size--3xl": { "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -20549,7 +20549,7 @@ "references": [ { "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -20575,7 +20575,7 @@ "pf-t--global--font--size--4xl": { "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -20599,7 +20599,7 @@ "references": [ { "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -23490,7 +23490,7 @@ }, "pf-t--global--breakpoint--100": { "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -23511,7 +23511,7 @@ }, "pf-t--global--breakpoint--200": { "type": "number", - "value": "576px", + "value": "36rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -23532,7 +23532,7 @@ }, "pf-t--global--breakpoint--250": { "type": "number", - "value": "640px", + "value": "40rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -23553,7 +23553,7 @@ }, "pf-t--global--breakpoint--300": { "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -23574,7 +23574,7 @@ }, "pf-t--global--breakpoint--350": { "type": "number", - "value": "960px", + "value": "60rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -23595,7 +23595,7 @@ }, "pf-t--global--breakpoint--400": { "type": "number", - "value": "992px", + "value": "62rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -23616,7 +23616,7 @@ }, "pf-t--global--breakpoint--500": { "type": "number", - "value": "1200px", + "value": "75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -23637,7 +23637,7 @@ }, "pf-t--global--breakpoint--550": { "type": "number", - "value": "1280px", + "value": "80rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -23658,7 +23658,7 @@ }, "pf-t--global--breakpoint--600": { "type": "number", - "value": "1450px", + "value": "90.625rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -23680,7 +23680,7 @@ "pf-t--global--breakpoint--xs": { "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -23702,7 +23702,7 @@ "references": [ { "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -23726,7 +23726,7 @@ "pf-t--global--breakpoint--sm": { "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "576px", + "value": "36rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -23748,7 +23748,7 @@ "references": [ { "type": "number", - "value": "576px", + "value": "36rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -23772,7 +23772,7 @@ "pf-t--global--breakpoint--md": { "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -23794,7 +23794,7 @@ "references": [ { "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -23818,7 +23818,7 @@ "pf-t--global--breakpoint--lg": { "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "992px", + "value": "62rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -23840,7 +23840,7 @@ "references": [ { "type": "number", - "value": "992px", + "value": "62rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -23864,7 +23864,7 @@ "pf-t--global--breakpoint--xl": { "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "1200px", + "value": "75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -23886,7 +23886,7 @@ "references": [ { "type": "number", - "value": "1200px", + "value": "75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -23910,7 +23910,7 @@ "pf-t--global--breakpoint--2xl": { "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "1450px", + "value": "90.625rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -23932,7 +23932,7 @@ "references": [ { "type": "number", - "value": "1450px", + "value": "90.625rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -23956,7 +23956,7 @@ "pf-t--global--breakpoint--height--sm": { "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -23980,7 +23980,7 @@ "references": [ { "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -24004,7 +24004,7 @@ "pf-t--global--breakpoint--height--md": { "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "640px", + "value": "40rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -24028,7 +24028,7 @@ "references": [ { "type": "number", - "value": "640px", + "value": "40rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -24052,7 +24052,7 @@ "pf-t--global--breakpoint--height--lg": { "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -24076,7 +24076,7 @@ "references": [ { "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -24100,7 +24100,7 @@ "pf-t--global--breakpoint--height--xl": { "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "960px", + "value": "60rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -24124,7 +24124,7 @@ "references": [ { "type": "number", - "value": "960px", + "value": "60rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -24148,7 +24148,7 @@ "pf-t--global--breakpoint--height--2xl": { "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "1280px", + "value": "80rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -24172,7 +24172,7 @@ "references": [ { "type": "number", - "value": "1280px", + "value": "80rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { diff --git a/packages/module/patternfly-docs/content/all-tokens-default.json b/packages/module/patternfly-docs/content/all-tokens-default.json index 01ccf98..bbd4f3c 100644 --- a/packages/module/patternfly-docs/content/all-tokens-default.json +++ b/packages/module/patternfly-docs/content/all-tokens-default.json @@ -1,7 +1,7 @@ { "pf-t--global--spacer--100": { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -22,7 +22,7 @@ }, "pf-t--global--spacer--200": { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -43,7 +43,7 @@ }, "pf-t--global--spacer--300": { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -64,7 +64,7 @@ }, "pf-t--global--spacer--400": { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -85,7 +85,7 @@ }, "pf-t--global--spacer--500": { "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -106,7 +106,7 @@ }, "pf-t--global--spacer--600": { "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -127,7 +127,7 @@ }, "pf-t--global--spacer--700": { "type": "number", - "value": "64px", + "value": "4rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -148,7 +148,7 @@ }, "pf-t--global--spacer--800": { "type": "number", - "value": "80px", + "value": "5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -170,7 +170,7 @@ "pf-t--global--spacer--xs": { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -192,7 +192,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -216,7 +216,7 @@ "pf-t--global--spacer--sm": { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -238,7 +238,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -262,7 +262,7 @@ "pf-t--global--spacer--md": { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -284,7 +284,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -308,7 +308,7 @@ "pf-t--global--spacer--lg": { "description": "Use for large spaces between elements.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -330,7 +330,7 @@ "references": [ { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -354,7 +354,7 @@ "pf-t--global--spacer--xl": { "description": "Use for extra large spaces between elements.", "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -376,7 +376,7 @@ "references": [ { "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -400,7 +400,7 @@ "pf-t--global--spacer--2xl": { "description": "Use for double extra large spaces spacing between elements.", "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -422,7 +422,7 @@ "references": [ { "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -446,7 +446,7 @@ "pf-t--global--spacer--3xl": { "description": "Use for triple extra large spaces between elements.", "type": "number", - "value": "64px", + "value": "4rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -468,7 +468,7 @@ "references": [ { "type": "number", - "value": "64px", + "value": "4rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -492,7 +492,7 @@ "pf-t--global--spacer--4xl": { "description": "Use for quadruple extra large spaces between elements.", "type": "number", - "value": "80px", + "value": "5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -514,7 +514,7 @@ "references": [ { "type": "number", - "value": "80px", + "value": "5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -538,7 +538,7 @@ "pf-t--global--spacer--control--vertical--default": { "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -565,7 +565,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -587,7 +587,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -613,7 +613,7 @@ "pf-t--global--spacer--control--vertical--compact": { "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -640,7 +640,7 @@ { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -662,7 +662,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -688,7 +688,7 @@ "pf-t--global--spacer--control--vertical--plain": { "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -715,7 +715,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -737,7 +737,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -763,7 +763,7 @@ "pf-t--global--spacer--control--horizontal--default": { "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -790,7 +790,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -812,7 +812,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -838,7 +838,7 @@ "pf-t--global--spacer--control--horizontal--plain": { "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -865,7 +865,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -887,7 +887,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -913,7 +913,7 @@ "pf-t--global--spacer--control--horizontal--compact": { "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -940,7 +940,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -962,7 +962,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -988,7 +988,7 @@ "pf-t--global--spacer--control--horizontal--spacious": { "description": "Use to set the horizontal padding in large/display controls.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1015,7 +1015,7 @@ { "description": "Use for large spaces between elements.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1037,7 +1037,7 @@ "references": [ { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -1063,7 +1063,7 @@ "pf-t--global--spacer--gap--text-to-element--default": { "description": "Use to space an element, like an icon or badge, inline with text", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1090,7 +1090,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1112,7 +1112,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -1138,7 +1138,7 @@ "pf-t--global--spacer--gap--control-to-control--default": { "description": "Use to set the space between controls, like in input groups or filter groups", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1165,7 +1165,7 @@ { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1187,7 +1187,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -1213,7 +1213,7 @@ "pf-t--global--spacer--gap--group--vertical": { "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1240,7 +1240,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1262,7 +1262,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -1288,7 +1288,7 @@ "pf-t--global--spacer--gap--group--horizontal": { "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1315,7 +1315,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1337,7 +1337,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -1363,7 +1363,7 @@ "pf-t--global--spacer--gap--group-to-group--horizontal": { "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1390,7 +1390,7 @@ { "description": "Use for double extra large spaces spacing between elements.", "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1412,7 +1412,7 @@ "references": [ { "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -1438,7 +1438,7 @@ "pf-t--global--spacer--gap--group-to-group--vertical": { "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1465,7 +1465,7 @@ { "description": "Use for large spaces between elements.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1487,7 +1487,7 @@ "references": [ { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -1513,7 +1513,7 @@ "pf-t--global--spacer--gap--action-to-action--default": { "description": "Use to set the space between actions, like in an action list group.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1540,7 +1540,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1562,7 +1562,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -1588,7 +1588,7 @@ "pf-t--global--spacer--gap--action-to-action--plain": { "description": "Use to set the space between plain actions, like in an action list group.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1615,7 +1615,7 @@ { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1637,7 +1637,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -1663,7 +1663,7 @@ "pf-t--global--spacer--action--horizontal--default": { "description": "Use to set the horizontal padding inside a default action, like buttons.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1690,7 +1690,7 @@ { "description": "Use for large spaces between elements.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1712,7 +1712,7 @@ "references": [ { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -1738,11 +1738,11 @@ "pf-t--global--spacer--action--horizontal--plain": { "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", "type": "number", - "value": "8px", + "value": "0.5rem", "compact": { "description": "Use to set the horizontal padding inside a compact, plain action/button.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true }, @@ -1779,7 +1779,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1801,7 +1801,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -1827,7 +1827,7 @@ "pf-t--global--spacer--action--horizontal--compact": { "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1854,7 +1854,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1876,7 +1876,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -1902,7 +1902,7 @@ "pf-t--global--spacer--action--horizontal--spacious": { "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1929,7 +1929,7 @@ { "description": "Use for extra large spaces between elements.", "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -1951,7 +1951,7 @@ "references": [ { "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -1977,7 +1977,7 @@ "pf-t--global--spacer--action--vertical--compact": { "description": "Use to set the vertical padding inside a compact action, like compact buttons.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2004,7 +2004,7 @@ { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2026,7 +2026,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2052,7 +2052,7 @@ "pf-t--global--spacer--action--vertical--spacious": { "description": "Use to set the vertical padding inside a large/display action, like CTAs.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2079,7 +2079,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2101,7 +2101,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2126,7 +2126,7 @@ }, "pf-t--global--icon--size--100": { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2149,7 +2149,7 @@ }, "pf-t--global--icon--size--200": { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2172,7 +2172,7 @@ }, "pf-t--global--icon--size--250": { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2195,7 +2195,7 @@ }, "pf-t--global--icon--size--300": { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2218,7 +2218,7 @@ }, "pf-t--global--icon--size--400": { "type": "number", - "value": "56px", + "value": "3.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2241,7 +2241,7 @@ }, "pf-t--global--icon--size--500": { "type": "number", - "value": "96px", + "value": "6rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2265,7 +2265,7 @@ "pf-t--global--icon--size--sm": { "description": "Use for small icons.", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2289,7 +2289,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2315,7 +2315,7 @@ "pf-t--global--icon--size--md": { "description": "Use for medium icons.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2339,7 +2339,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2365,7 +2365,7 @@ "pf-t--global--icon--size--lg": { "description": "Use for large icons.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2389,7 +2389,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2415,7 +2415,7 @@ "pf-t--global--icon--size--xl": { "description": "Use for extra large icons.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2439,7 +2439,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2465,7 +2465,7 @@ "pf-t--global--icon--size--2xl": { "description": "Use for double extra large icons.", "type": "number", - "value": "56px", + "value": "3.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2489,7 +2489,7 @@ "references": [ { "type": "number", - "value": "56px", + "value": "3.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2515,7 +2515,7 @@ "pf-t--global--icon--size--3xl": { "description": "Use for triple extra large icons.", "type": "number", - "value": "96px", + "value": "6rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2539,7 +2539,7 @@ "references": [ { "type": "number", - "value": "96px", + "value": "6rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2565,7 +2565,7 @@ "pf-t--global--icon--size--font--heading--h1": { "description": "Use for icons that are placed inline with first level headings", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2593,7 +2593,7 @@ { "description": "Use as the font size for first level headings.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2620,7 +2620,7 @@ { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2644,7 +2644,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2674,7 +2674,7 @@ "pf-t--global--icon--size--font--heading--h2": { "description": "Use for icons that are placed inline with second level headings", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2702,7 +2702,7 @@ { "description": "Use as the font size for second level headings.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2729,7 +2729,7 @@ { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2753,7 +2753,7 @@ "references": [ { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2783,7 +2783,7 @@ "pf-t--global--icon--size--font--heading--h3": { "description": "Use for icons that are placed inline with third level headings", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2811,7 +2811,7 @@ { "description": "Use as the font size for third level headings.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2838,7 +2838,7 @@ { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2862,7 +2862,7 @@ "references": [ { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -2892,7 +2892,7 @@ "pf-t--global--icon--size--font--heading--h4": { "description": "Use for icons that are placed inline with fourth level headings", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2920,7 +2920,7 @@ { "description": "Use as the font size for fourth-level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2947,7 +2947,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -2971,7 +2971,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -3001,7 +3001,7 @@ "pf-t--global--icon--size--font--heading--h5": { "description": "Use for icons that are placed inline with fifth level headings", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3029,7 +3029,7 @@ { "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3056,7 +3056,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3080,7 +3080,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -3110,7 +3110,7 @@ "pf-t--global--icon--size--font--heading--h6": { "description": "Use for icons that are placed inline with sixth level headings", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3138,7 +3138,7 @@ { "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3165,7 +3165,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3189,7 +3189,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -3219,7 +3219,7 @@ "pf-t--global--icon--size--font--body--sm": { "description": "Use for icons that are placed inline with small body text", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3247,7 +3247,7 @@ { "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3273,7 +3273,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3296,7 +3296,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -3326,7 +3326,7 @@ "pf-t--global--icon--size--font--body--default": { "description": "Use for icons that are placed inline with default body text", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3354,7 +3354,7 @@ { "description": "Use as the default font size in body sections.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3381,7 +3381,7 @@ { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3405,7 +3405,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -3435,7 +3435,7 @@ "pf-t--global--icon--size--font--body--lg": { "description": "Use for icons that are placed inline with large body text", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3463,7 +3463,7 @@ { "description": "Use for a larger font size in body sections.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3490,7 +3490,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3514,7 +3514,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -3544,7 +3544,7 @@ "pf-t--global--icon--size--font--xs": { "description": "Use for icons that are placed inline with font–size–xs text", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3570,7 +3570,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3593,7 +3593,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -3621,7 +3621,7 @@ "pf-t--global--icon--size--font--sm": { "description": "Use for icons that are placed inline with font–size–sm text", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3648,7 +3648,7 @@ { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3672,7 +3672,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -3700,7 +3700,7 @@ "pf-t--global--icon--size--font--md": { "description": "Use for icons that are placed inline with font–size–md text", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3727,7 +3727,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3751,7 +3751,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -3779,7 +3779,7 @@ "pf-t--global--icon--size--font--lg": { "description": "Use for icons that are placed inline with font–size–lg text", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3806,7 +3806,7 @@ { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3830,7 +3830,7 @@ "references": [ { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -3858,7 +3858,7 @@ "pf-t--global--icon--size--font--xl": { "description": "Use for icons that are placed inline with font–size–xl text", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3885,7 +3885,7 @@ { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3909,7 +3909,7 @@ "references": [ { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -3937,7 +3937,7 @@ "pf-t--global--icon--size--font--2xl": { "description": "Use for icons that are placed inline with font–size–2xl text", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3964,7 +3964,7 @@ { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -3988,7 +3988,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -4016,7 +4016,7 @@ "pf-t--global--icon--size--font--3xl": { "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -4043,7 +4043,7 @@ { "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -4067,7 +4067,7 @@ "references": [ { "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -4095,7 +4095,7 @@ "pf-t--global--icon--size--font--4xl": { "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -4122,7 +4122,7 @@ { "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -4146,7 +4146,7 @@ "references": [ { "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -18989,7 +18989,7 @@ }, "pf-t--global--font--size--100": { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19012,7 +19012,7 @@ }, "pf-t--global--font--size--200": { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19035,7 +19035,7 @@ }, "pf-t--global--font--size--300": { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19058,7 +19058,7 @@ }, "pf-t--global--font--size--400": { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19081,7 +19081,7 @@ }, "pf-t--global--font--size--500": { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19104,7 +19104,7 @@ }, "pf-t--global--font--size--600": { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19127,7 +19127,7 @@ }, "pf-t--global--font--size--700": { "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19150,7 +19150,7 @@ }, "pf-t--global--font--size--800": { "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19174,7 +19174,7 @@ "pf-t--global--font--size--body--sm": { "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19200,7 +19200,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19223,7 +19223,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19251,7 +19251,7 @@ "pf-t--global--font--size--body--default": { "description": "Use as the default font size in body sections.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19278,7 +19278,7 @@ { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19302,7 +19302,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19330,7 +19330,7 @@ "pf-t--global--font--size--body--lg": { "description": "Use for a larger font size in body sections.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19357,7 +19357,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19381,7 +19381,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19409,7 +19409,7 @@ "pf-t--global--font--size--heading--h1": { "description": "Use as the font size for first level headings.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19436,7 +19436,7 @@ { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19460,7 +19460,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19488,7 +19488,7 @@ "pf-t--global--font--size--heading--h2": { "description": "Use as the font size for second level headings.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19515,7 +19515,7 @@ { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19539,7 +19539,7 @@ "references": [ { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19567,7 +19567,7 @@ "pf-t--global--font--size--heading--h3": { "description": "Use as the font size for third level headings.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19594,7 +19594,7 @@ { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19618,7 +19618,7 @@ "references": [ { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19646,7 +19646,7 @@ "pf-t--global--font--size--heading--h4": { "description": "Use as the font size for fourth-level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19673,7 +19673,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19697,7 +19697,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19725,7 +19725,7 @@ "pf-t--global--font--size--heading--h5": { "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19752,7 +19752,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19776,7 +19776,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19804,7 +19804,7 @@ "pf-t--global--font--size--heading--h6": { "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19831,7 +19831,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19855,7 +19855,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19882,7 +19882,7 @@ }, "pf-t--global--font--size--xs": { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19905,7 +19905,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19931,7 +19931,7 @@ "pf-t--global--font--size--sm": { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -19955,7 +19955,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -19981,7 +19981,7 @@ "pf-t--global--font--size--md": { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -20005,7 +20005,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -20031,7 +20031,7 @@ "pf-t--global--font--size--lg": { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -20055,7 +20055,7 @@ "references": [ { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -20081,7 +20081,7 @@ "pf-t--global--font--size--xl": { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -20105,7 +20105,7 @@ "references": [ { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -20131,7 +20131,7 @@ "pf-t--global--font--size--2xl": { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -20155,7 +20155,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -20181,7 +20181,7 @@ "pf-t--global--font--size--3xl": { "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -20205,7 +20205,7 @@ "references": [ { "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -20231,7 +20231,7 @@ "pf-t--global--font--size--4xl": { "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -20255,7 +20255,7 @@ "references": [ { "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23140,7 +23140,7 @@ }, "pf-t--global--breakpoint--100": { "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23161,7 +23161,7 @@ }, "pf-t--global--breakpoint--200": { "type": "number", - "value": "576px", + "value": "36rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23182,7 +23182,7 @@ }, "pf-t--global--breakpoint--250": { "type": "number", - "value": "640px", + "value": "40rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23203,7 +23203,7 @@ }, "pf-t--global--breakpoint--300": { "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23224,7 +23224,7 @@ }, "pf-t--global--breakpoint--350": { "type": "number", - "value": "960px", + "value": "60rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23245,7 +23245,7 @@ }, "pf-t--global--breakpoint--400": { "type": "number", - "value": "992px", + "value": "62rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23266,7 +23266,7 @@ }, "pf-t--global--breakpoint--500": { "type": "number", - "value": "1200px", + "value": "75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23287,7 +23287,7 @@ }, "pf-t--global--breakpoint--550": { "type": "number", - "value": "1280px", + "value": "80rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23308,7 +23308,7 @@ }, "pf-t--global--breakpoint--600": { "type": "number", - "value": "1450px", + "value": "90.625rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23330,7 +23330,7 @@ "pf-t--global--breakpoint--xs": { "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -23352,7 +23352,7 @@ "references": [ { "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23376,7 +23376,7 @@ "pf-t--global--breakpoint--sm": { "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "576px", + "value": "36rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -23398,7 +23398,7 @@ "references": [ { "type": "number", - "value": "576px", + "value": "36rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23422,7 +23422,7 @@ "pf-t--global--breakpoint--md": { "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -23444,7 +23444,7 @@ "references": [ { "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23468,7 +23468,7 @@ "pf-t--global--breakpoint--lg": { "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "992px", + "value": "62rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -23490,7 +23490,7 @@ "references": [ { "type": "number", - "value": "992px", + "value": "62rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23514,7 +23514,7 @@ "pf-t--global--breakpoint--xl": { "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "1200px", + "value": "75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -23536,7 +23536,7 @@ "references": [ { "type": "number", - "value": "1200px", + "value": "75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23560,7 +23560,7 @@ "pf-t--global--breakpoint--2xl": { "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "1450px", + "value": "90.625rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -23582,7 +23582,7 @@ "references": [ { "type": "number", - "value": "1450px", + "value": "90.625rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23606,7 +23606,7 @@ "pf-t--global--breakpoint--height--sm": { "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -23630,7 +23630,7 @@ "references": [ { "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23654,7 +23654,7 @@ "pf-t--global--breakpoint--height--md": { "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "640px", + "value": "40rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -23678,7 +23678,7 @@ "references": [ { "type": "number", - "value": "640px", + "value": "40rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23702,7 +23702,7 @@ "pf-t--global--breakpoint--height--lg": { "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -23726,7 +23726,7 @@ "references": [ { "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23750,7 +23750,7 @@ "pf-t--global--breakpoint--height--xl": { "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "960px", + "value": "60rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -23774,7 +23774,7 @@ "references": [ { "type": "number", - "value": "960px", + "value": "60rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -23798,7 +23798,7 @@ "pf-t--global--breakpoint--height--2xl": { "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "1280px", + "value": "80rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -23822,7 +23822,7 @@ "references": [ { "type": "number", - "value": "1280px", + "value": "80rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { diff --git a/packages/module/patternfly-docs/content/semantic-tokens-dark.json b/packages/module/patternfly-docs/content/semantic-tokens-dark.json index 86c187e..0c79d7f 100644 --- a/packages/module/patternfly-docs/content/semantic-tokens-dark.json +++ b/packages/module/patternfly-docs/content/semantic-tokens-dark.json @@ -27051,7 +27051,7 @@ "pf-t--global--spacer--xs": { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27073,7 +27073,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -27097,7 +27097,7 @@ "pf-t--global--spacer--sm": { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27119,7 +27119,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -27143,7 +27143,7 @@ "pf-t--global--spacer--md": { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27165,7 +27165,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -27189,7 +27189,7 @@ "pf-t--global--spacer--lg": { "description": "Use for large spaces between elements.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27211,7 +27211,7 @@ "references": [ { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -27235,7 +27235,7 @@ "pf-t--global--spacer--xl": { "description": "Use for extra large spaces between elements.", "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27257,7 +27257,7 @@ "references": [ { "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -27281,7 +27281,7 @@ "pf-t--global--spacer--2xl": { "description": "Use for double extra large spaces spacing between elements.", "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27303,7 +27303,7 @@ "references": [ { "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -27327,7 +27327,7 @@ "pf-t--global--spacer--3xl": { "description": "Use for triple extra large spaces between elements.", "type": "number", - "value": "64px", + "value": "4rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27349,7 +27349,7 @@ "references": [ { "type": "number", - "value": "64px", + "value": "4rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -27373,7 +27373,7 @@ "pf-t--global--spacer--4xl": { "description": "Use for quadruple extra large spaces between elements.", "type": "number", - "value": "80px", + "value": "5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27395,7 +27395,7 @@ "references": [ { "type": "number", - "value": "80px", + "value": "5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -27419,7 +27419,7 @@ "pf-t--global--spacer--control--vertical--default": { "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27446,7 +27446,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27468,7 +27468,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -27494,7 +27494,7 @@ "pf-t--global--spacer--control--vertical--compact": { "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27521,7 +27521,7 @@ { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27543,7 +27543,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -27569,7 +27569,7 @@ "pf-t--global--spacer--control--vertical--plain": { "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27596,7 +27596,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27618,7 +27618,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -27644,7 +27644,7 @@ "pf-t--global--spacer--control--horizontal--default": { "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27671,7 +27671,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27693,7 +27693,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -27719,7 +27719,7 @@ "pf-t--global--spacer--control--horizontal--plain": { "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27746,7 +27746,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27768,7 +27768,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -27794,7 +27794,7 @@ "pf-t--global--spacer--control--horizontal--compact": { "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27821,7 +27821,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27843,7 +27843,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -27869,7 +27869,7 @@ "pf-t--global--spacer--control--horizontal--spacious": { "description": "Use to set the horizontal padding in large/display controls.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27896,7 +27896,7 @@ { "description": "Use for large spaces between elements.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27918,7 +27918,7 @@ "references": [ { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -27944,7 +27944,7 @@ "pf-t--global--spacer--gap--text-to-element--default": { "description": "Use to space an element, like an icon or badge, inline with text", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27971,7 +27971,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -27993,7 +27993,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -28019,7 +28019,7 @@ "pf-t--global--spacer--gap--control-to-control--default": { "description": "Use to set the space between controls, like in input groups or filter groups", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28046,7 +28046,7 @@ { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28068,7 +28068,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -28094,7 +28094,7 @@ "pf-t--global--spacer--gap--group--vertical": { "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28121,7 +28121,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28143,7 +28143,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -28169,7 +28169,7 @@ "pf-t--global--spacer--gap--group--horizontal": { "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28196,7 +28196,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28218,7 +28218,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -28244,7 +28244,7 @@ "pf-t--global--spacer--gap--group-to-group--horizontal": { "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28271,7 +28271,7 @@ { "description": "Use for double extra large spaces spacing between elements.", "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28293,7 +28293,7 @@ "references": [ { "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -28319,7 +28319,7 @@ "pf-t--global--spacer--gap--group-to-group--vertical": { "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28346,7 +28346,7 @@ { "description": "Use for large spaces between elements.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28368,7 +28368,7 @@ "references": [ { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -28394,7 +28394,7 @@ "pf-t--global--spacer--gap--action-to-action--default": { "description": "Use to set the space between actions, like in an action list group.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28421,7 +28421,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28443,7 +28443,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -28469,7 +28469,7 @@ "pf-t--global--spacer--gap--action-to-action--plain": { "description": "Use to set the space between plain actions, like in an action list group.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28496,7 +28496,7 @@ { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28518,7 +28518,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -28544,7 +28544,7 @@ "pf-t--global--spacer--action--horizontal--default": { "description": "Use to set the horizontal padding inside a default action, like buttons.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28571,7 +28571,7 @@ { "description": "Use for large spaces between elements.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28593,7 +28593,7 @@ "references": [ { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -28619,11 +28619,11 @@ "pf-t--global--spacer--action--horizontal--plain": { "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", "type": "number", - "value": "8px", + "value": "0.5rem", "compact": { "description": "Use to set the horizontal padding inside a compact, plain action/button.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false }, @@ -28660,7 +28660,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28682,7 +28682,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -28708,7 +28708,7 @@ "pf-t--global--spacer--action--horizontal--compact": { "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28735,7 +28735,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28757,7 +28757,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -28783,7 +28783,7 @@ "pf-t--global--spacer--action--horizontal--spacious": { "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28810,7 +28810,7 @@ { "description": "Use for extra large spaces between elements.", "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28832,7 +28832,7 @@ "references": [ { "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -28858,7 +28858,7 @@ "pf-t--global--spacer--action--vertical--compact": { "description": "Use to set the vertical padding inside a compact action, like compact buttons.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28885,7 +28885,7 @@ { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28907,7 +28907,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -28933,7 +28933,7 @@ "pf-t--global--spacer--action--vertical--spacious": { "description": "Use to set the vertical padding inside a large/display action, like CTAs.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28960,7 +28960,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -28982,7 +28982,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -29008,7 +29008,7 @@ "pf-t--global--icon--size--sm": { "description": "Use for small icons.", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29032,7 +29032,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -29058,7 +29058,7 @@ "pf-t--global--icon--size--md": { "description": "Use for medium icons.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29082,7 +29082,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -29108,7 +29108,7 @@ "pf-t--global--icon--size--lg": { "description": "Use for large icons.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29132,7 +29132,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -29158,7 +29158,7 @@ "pf-t--global--icon--size--xl": { "description": "Use for extra large icons.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29182,7 +29182,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -29208,7 +29208,7 @@ "pf-t--global--icon--size--2xl": { "description": "Use for double extra large icons.", "type": "number", - "value": "56px", + "value": "3.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29232,7 +29232,7 @@ "references": [ { "type": "number", - "value": "56px", + "value": "3.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -29258,7 +29258,7 @@ "pf-t--global--icon--size--3xl": { "description": "Use for triple extra large icons.", "type": "number", - "value": "96px", + "value": "6rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29282,7 +29282,7 @@ "references": [ { "type": "number", - "value": "96px", + "value": "6rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -29308,7 +29308,7 @@ "pf-t--global--icon--size--font--heading--h1": { "description": "Use for icons that are placed inline with first level headings", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29336,7 +29336,7 @@ { "description": "Use as the font size for first level headings.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29363,7 +29363,7 @@ { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29387,7 +29387,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -29417,7 +29417,7 @@ "pf-t--global--icon--size--font--heading--h2": { "description": "Use for icons that are placed inline with second level headings", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29445,7 +29445,7 @@ { "description": "Use as the font size for second level headings.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29472,7 +29472,7 @@ { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29496,7 +29496,7 @@ "references": [ { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -29526,7 +29526,7 @@ "pf-t--global--icon--size--font--heading--h3": { "description": "Use for icons that are placed inline with third level headings", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29554,7 +29554,7 @@ { "description": "Use as the font size for third level headings.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29581,7 +29581,7 @@ { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29605,7 +29605,7 @@ "references": [ { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -29635,7 +29635,7 @@ "pf-t--global--icon--size--font--heading--h4": { "description": "Use for icons that are placed inline with fourth level headings", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29663,7 +29663,7 @@ { "description": "Use as the font size for fourth-level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29690,7 +29690,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29714,7 +29714,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -29744,7 +29744,7 @@ "pf-t--global--icon--size--font--heading--h5": { "description": "Use for icons that are placed inline with fifth level headings", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29772,7 +29772,7 @@ { "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29799,7 +29799,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29823,7 +29823,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -29853,7 +29853,7 @@ "pf-t--global--icon--size--font--heading--h6": { "description": "Use for icons that are placed inline with sixth level headings", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29881,7 +29881,7 @@ { "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29908,7 +29908,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29932,7 +29932,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -29962,7 +29962,7 @@ "pf-t--global--icon--size--font--body--sm": { "description": "Use for icons that are placed inline with small body text", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -29990,7 +29990,7 @@ { "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30016,7 +30016,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30039,7 +30039,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -30069,7 +30069,7 @@ "pf-t--global--icon--size--font--body--default": { "description": "Use for icons that are placed inline with default body text", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30097,7 +30097,7 @@ { "description": "Use as the default font size in body sections.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30124,7 +30124,7 @@ { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30148,7 +30148,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -30178,7 +30178,7 @@ "pf-t--global--icon--size--font--body--lg": { "description": "Use for icons that are placed inline with large body text", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30206,7 +30206,7 @@ { "description": "Use for a larger font size in body sections.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30233,7 +30233,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30257,7 +30257,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -30287,7 +30287,7 @@ "pf-t--global--icon--size--font--xs": { "description": "Use for icons that are placed inline with font–size–xs text", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30313,7 +30313,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30336,7 +30336,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -30364,7 +30364,7 @@ "pf-t--global--icon--size--font--sm": { "description": "Use for icons that are placed inline with font–size–sm text", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30391,7 +30391,7 @@ { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30415,7 +30415,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -30443,7 +30443,7 @@ "pf-t--global--icon--size--font--md": { "description": "Use for icons that are placed inline with font–size–md text", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30470,7 +30470,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30494,7 +30494,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -30522,7 +30522,7 @@ "pf-t--global--icon--size--font--lg": { "description": "Use for icons that are placed inline with font–size–lg text", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30549,7 +30549,7 @@ { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30573,7 +30573,7 @@ "references": [ { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -30601,7 +30601,7 @@ "pf-t--global--icon--size--font--xl": { "description": "Use for icons that are placed inline with font–size–xl text", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30628,7 +30628,7 @@ { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30652,7 +30652,7 @@ "references": [ { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -30680,7 +30680,7 @@ "pf-t--global--icon--size--font--2xl": { "description": "Use for icons that are placed inline with font–size–2xl text", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30707,7 +30707,7 @@ { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30731,7 +30731,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -30759,7 +30759,7 @@ "pf-t--global--icon--size--font--3xl": { "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30786,7 +30786,7 @@ { "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30810,7 +30810,7 @@ "references": [ { "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -30838,7 +30838,7 @@ "pf-t--global--icon--size--font--4xl": { "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30865,7 +30865,7 @@ { "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -30889,7 +30889,7 @@ "references": [ { "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -32475,7 +32475,7 @@ "pf-t--global--font--size--body--sm": { "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -32501,7 +32501,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -32524,7 +32524,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -32552,7 +32552,7 @@ "pf-t--global--font--size--body--default": { "description": "Use as the default font size in body sections.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -32579,7 +32579,7 @@ { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -32603,7 +32603,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -32631,7 +32631,7 @@ "pf-t--global--font--size--body--lg": { "description": "Use for a larger font size in body sections.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -32658,7 +32658,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -32682,7 +32682,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -32710,7 +32710,7 @@ "pf-t--global--font--size--heading--h1": { "description": "Use as the font size for first level headings.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -32737,7 +32737,7 @@ { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -32761,7 +32761,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -32789,7 +32789,7 @@ "pf-t--global--font--size--heading--h2": { "description": "Use as the font size for second level headings.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -32816,7 +32816,7 @@ { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -32840,7 +32840,7 @@ "references": [ { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -32868,7 +32868,7 @@ "pf-t--global--font--size--heading--h3": { "description": "Use as the font size for third level headings.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -32895,7 +32895,7 @@ { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -32919,7 +32919,7 @@ "references": [ { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -32947,7 +32947,7 @@ "pf-t--global--font--size--heading--h4": { "description": "Use as the font size for fourth-level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -32974,7 +32974,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -32998,7 +32998,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -33026,7 +33026,7 @@ "pf-t--global--font--size--heading--h5": { "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -33053,7 +33053,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -33077,7 +33077,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -33105,7 +33105,7 @@ "pf-t--global--font--size--heading--h6": { "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -33132,7 +33132,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -33156,7 +33156,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -33183,7 +33183,7 @@ }, "pf-t--global--font--size--xs": { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -33206,7 +33206,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -33232,7 +33232,7 @@ "pf-t--global--font--size--sm": { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -33256,7 +33256,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -33282,7 +33282,7 @@ "pf-t--global--font--size--md": { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -33306,7 +33306,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -33332,7 +33332,7 @@ "pf-t--global--font--size--lg": { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -33356,7 +33356,7 @@ "references": [ { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -33382,7 +33382,7 @@ "pf-t--global--font--size--xl": { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -33406,7 +33406,7 @@ "references": [ { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -33432,7 +33432,7 @@ "pf-t--global--font--size--2xl": { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -33456,7 +33456,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -33482,7 +33482,7 @@ "pf-t--global--font--size--3xl": { "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -33506,7 +33506,7 @@ "references": [ { "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -33532,7 +33532,7 @@ "pf-t--global--font--size--4xl": { "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -33556,7 +33556,7 @@ "references": [ { "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -35706,7 +35706,7 @@ "pf-t--global--breakpoint--xs": { "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -35728,7 +35728,7 @@ "references": [ { "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -35752,7 +35752,7 @@ "pf-t--global--breakpoint--sm": { "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "576px", + "value": "36rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -35774,7 +35774,7 @@ "references": [ { "type": "number", - "value": "576px", + "value": "36rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -35798,7 +35798,7 @@ "pf-t--global--breakpoint--md": { "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -35820,7 +35820,7 @@ "references": [ { "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -35844,7 +35844,7 @@ "pf-t--global--breakpoint--lg": { "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "992px", + "value": "62rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -35866,7 +35866,7 @@ "references": [ { "type": "number", - "value": "992px", + "value": "62rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -35890,7 +35890,7 @@ "pf-t--global--breakpoint--xl": { "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "1200px", + "value": "75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -35912,7 +35912,7 @@ "references": [ { "type": "number", - "value": "1200px", + "value": "75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -35936,7 +35936,7 @@ "pf-t--global--breakpoint--2xl": { "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "1450px", + "value": "90.625rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -35958,7 +35958,7 @@ "references": [ { "type": "number", - "value": "1450px", + "value": "90.625rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -35982,7 +35982,7 @@ "pf-t--global--breakpoint--height--sm": { "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -36006,7 +36006,7 @@ "references": [ { "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -36030,7 +36030,7 @@ "pf-t--global--breakpoint--height--md": { "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "640px", + "value": "40rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -36054,7 +36054,7 @@ "references": [ { "type": "number", - "value": "640px", + "value": "40rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -36078,7 +36078,7 @@ "pf-t--global--breakpoint--height--lg": { "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -36102,7 +36102,7 @@ "references": [ { "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -36126,7 +36126,7 @@ "pf-t--global--breakpoint--height--xl": { "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "960px", + "value": "60rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -36150,7 +36150,7 @@ "references": [ { "type": "number", - "value": "960px", + "value": "60rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -36174,7 +36174,7 @@ "pf-t--global--breakpoint--height--2xl": { "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "1280px", + "value": "80rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false, "original": { @@ -36198,7 +36198,7 @@ "references": [ { "type": "number", - "value": "1280px", + "value": "80rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -44856,7 +44856,7 @@ "dimension": { "pf-t--global--spacer--100": { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -44877,7 +44877,7 @@ }, "pf-t--global--spacer--200": { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -44898,7 +44898,7 @@ }, "pf-t--global--spacer--300": { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -44919,7 +44919,7 @@ }, "pf-t--global--spacer--400": { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -44940,7 +44940,7 @@ }, "pf-t--global--spacer--500": { "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -44961,7 +44961,7 @@ }, "pf-t--global--spacer--600": { "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -44982,7 +44982,7 @@ }, "pf-t--global--spacer--700": { "type": "number", - "value": "64px", + "value": "4rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -45003,7 +45003,7 @@ }, "pf-t--global--spacer--800": { "type": "number", - "value": "80px", + "value": "5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -45024,7 +45024,7 @@ }, "pf-t--global--icon--size--100": { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -45047,7 +45047,7 @@ }, "pf-t--global--icon--size--200": { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -45070,7 +45070,7 @@ }, "pf-t--global--icon--size--250": { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -45093,7 +45093,7 @@ }, "pf-t--global--icon--size--300": { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -45116,7 +45116,7 @@ }, "pf-t--global--icon--size--400": { "type": "number", - "value": "56px", + "value": "3.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -45139,7 +45139,7 @@ }, "pf-t--global--icon--size--500": { "type": "number", - "value": "96px", + "value": "6rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -45576,7 +45576,7 @@ }, "pf-t--global--font--size--100": { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -45599,7 +45599,7 @@ }, "pf-t--global--font--size--200": { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -45622,7 +45622,7 @@ }, "pf-t--global--font--size--300": { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -45645,7 +45645,7 @@ }, "pf-t--global--font--size--400": { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -45668,7 +45668,7 @@ }, "pf-t--global--font--size--500": { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -45691,7 +45691,7 @@ }, "pf-t--global--font--size--600": { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -45714,7 +45714,7 @@ }, "pf-t--global--font--size--700": { "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -45737,7 +45737,7 @@ }, "pf-t--global--font--size--800": { "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -46300,7 +46300,7 @@ }, "pf-t--global--breakpoint--100": { "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -46321,7 +46321,7 @@ }, "pf-t--global--breakpoint--200": { "type": "number", - "value": "576px", + "value": "36rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -46342,7 +46342,7 @@ }, "pf-t--global--breakpoint--250": { "type": "number", - "value": "640px", + "value": "40rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -46363,7 +46363,7 @@ }, "pf-t--global--breakpoint--300": { "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -46384,7 +46384,7 @@ }, "pf-t--global--breakpoint--350": { "type": "number", - "value": "960px", + "value": "60rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -46405,7 +46405,7 @@ }, "pf-t--global--breakpoint--400": { "type": "number", - "value": "992px", + "value": "62rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -46426,7 +46426,7 @@ }, "pf-t--global--breakpoint--500": { "type": "number", - "value": "1200px", + "value": "75rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -46447,7 +46447,7 @@ }, "pf-t--global--breakpoint--550": { "type": "number", - "value": "1280px", + "value": "80rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -46468,7 +46468,7 @@ }, "pf-t--global--breakpoint--600": { "type": "number", - "value": "1450px", + "value": "90.625rem", "filePath": "tokens/default/base.dimension.json", "isSource": false, "original": { @@ -46786,7342 +46786,4698 @@ } }, "palette": { - "pf-t--chart--color--blue--100": { + "pf-t--color--white": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.50}" + "value": "#ffffff" }, - "name": "pf-t--chart--color--blue--100", + "name": "pf-t--color--white", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "100" + "category": "color", + "type": "white" }, "path": [ - "chart", "color", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } + "white" ] }, - "pf-t--chart--color--blue--200": { + "pf-t--color--gray--10": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.40}" + "value": "#f2f2f2" }, - "name": "pf-t--chart--color--blue--200", + "name": "pf-t--color--gray--10", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "200" + "category": "color", + "type": "gray", + "item": "10" }, "path": [ - "chart", "color", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } + "gray", + "10" ] }, - "pf-t--chart--color--blue--300": { + "pf-t--color--gray--20": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.30}" + "value": "#e0e0e0" }, - "name": "pf-t--chart--color--blue--300", + "name": "pf-t--color--gray--20", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "300" + "category": "color", + "type": "gray", + "item": "20" }, "path": [ - "chart", "color", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } + "gray", + "20" ] }, - "pf-t--chart--color--blue--400": { + "pf-t--color--gray--30": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/charts.dark.json", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.20}" + "value": "#c7c7c7" }, - "name": "pf-t--chart--color--blue--400", + "name": "pf-t--color--gray--30", "attributes": { - "category": "chart", + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + }, + "pf-t--color--gray--40": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { "type": "color", - "item": "blue", - "subitem": "400" + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" }, "path": [ - "chart", "color", - "blue", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } + "gray", + "40" ] }, - "pf-t--chart--color--blue--500": { + "pf-t--color--gray--50": { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.10}" + "value": "#707070" }, - "name": "pf-t--chart--color--blue--500", + "name": "pf-t--color--gray--50", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "500" + "category": "color", + "type": "gray", + "item": "50" }, "path": [ - "chart", "color", - "blue", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } + "gray", + "50" ] }, - "pf-t--chart--color--green--100": { + "pf-t--color--gray--60": { "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", + "value": "#4d4d4d", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.50}" + "value": "#4d4d4d" }, - "name": "pf-t--chart--color--green--100", + "name": "pf-t--color--gray--60", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "100" + "category": "color", + "type": "gray", + "item": "60" }, "path": [ - "chart", "color", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } + "gray", + "60" ] }, - "pf-t--chart--color--green--200": { + "pf-t--color--gray--70": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.40}" + "value": "#383838" }, - "name": "pf-t--chart--color--green--200", + "name": "pf-t--color--gray--70", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "200" + "category": "color", + "type": "gray", + "item": "70" }, "path": [ - "chart", "color", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } + "gray", + "70" ] }, - "pf-t--chart--color--green--300": { + "pf-t--color--gray--80": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.30}" + "value": "#292929" }, - "name": "pf-t--chart--color--green--300", + "name": "pf-t--color--gray--80", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "300" + "category": "color", + "type": "gray", + "item": "80" }, "path": [ - "chart", "color", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } + "gray", + "80" ] }, - "pf-t--chart--color--green--400": { + "pf-t--color--gray--90": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/charts.dark.json", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.20}" + "value": "#1f1f1f" }, - "name": "pf-t--chart--color--green--400", + "name": "pf-t--color--gray--90", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "400" + "category": "color", + "type": "gray", + "item": "90" }, "path": [ - "chart", "color", - "green", - "400" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } + "gray", + "90" ] }, - "pf-t--chart--color--green--500": { + "pf-t--color--gray--95": { "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", + "value": "#151515", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.10}" + "value": "#151515" }, - "name": "pf-t--chart--color--green--500", + "name": "pf-t--color--gray--95", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "500" + "category": "color", + "type": "gray", + "item": "95" }, "path": [ - "chart", "color", - "green", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] - } + "gray", + "95" ] }, - "pf-t--chart--color--teal--100": { + "pf-t--color--black": { "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", + "value": "#000000", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.50}" + "value": "#000000" }, - "name": "pf-t--chart--color--teal--100", + "name": "pf-t--color--black", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "100" + "category": "color", + "type": "black" }, "path": [ - "chart", "color", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } + "black" ] }, - "pf-t--chart--color--teal--200": { + "pf-t--color--blue--10": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.40}" + "value": "#e0f0ff" }, - "name": "pf-t--chart--color--teal--200", + "name": "pf-t--color--blue--10", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "200" + "category": "color", + "type": "blue", + "item": "10" }, "path": [ - "chart", "color", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } + "blue", + "10" ] }, - "pf-t--chart--color--teal--300": { + "pf-t--color--blue--20": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.30}" + "value": "#b9dafc" }, - "name": "pf-t--chart--color--teal--300", + "name": "pf-t--color--blue--20", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "300" + "category": "color", + "type": "blue", + "item": "20" }, "path": [ - "chart", "color", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } + "blue", + "20" ] }, - "pf-t--chart--color--teal--400": { + "pf-t--color--blue--30": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/charts.dark.json", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.20}" + "value": "#92c5f9" }, - "name": "pf-t--chart--color--teal--400", + "name": "pf-t--color--blue--30", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "400" + "category": "color", + "type": "blue", + "item": "30" }, "path": [ - "chart", "color", - "teal", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } + "blue", + "30" ] }, - "pf-t--chart--color--teal--500": { + "pf-t--color--blue--40": { "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.10}" + "value": "#4394e5" }, - "name": "pf-t--chart--color--teal--500", + "name": "pf-t--color--blue--40", "attributes": { - "category": "chart", + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + }, + "pf-t--color--blue--50": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { "type": "color", - "item": "teal", - "subitem": "500" + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" }, "path": [ - "chart", "color", - "teal", - "500" - ], - "references": [ - { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - } + "blue", + "50" ] }, - "pf-t--chart--color--purple--100": { + "pf-t--color--blue--60": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/charts.dark.json", + "value": "#004d99", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.60}" + "value": "#004d99" }, - "name": "pf-t--chart--color--purple--100", + "name": "pf-t--color--blue--60", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "100" + "category": "color", + "type": "blue", + "item": "60" }, "path": [ - "chart", "color", - "purple", - "100" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } + "blue", + "60" ] }, - "pf-t--chart--color--purple--200": { + "pf-t--color--blue--70": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/charts.dark.json", + "value": "#003366", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.50}" + "value": "#003366" }, - "name": "pf-t--chart--color--purple--200", + "name": "pf-t--color--blue--70", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "200" + "category": "color", + "type": "blue", + "item": "70" }, "path": [ - "chart", "color", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } + "blue", + "70" ] }, - "pf-t--chart--color--purple--300": { + "pf-t--color--teal--10": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/charts.dark.json", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.40}" + "value": "#daf2f2" }, - "name": "pf-t--chart--color--purple--300", + "name": "pf-t--color--teal--10", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "300" + "category": "color", + "type": "teal", + "item": "10" }, "path": [ - "chart", "color", - "purple", - "300" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } + "teal", + "10" ] }, - "pf-t--chart--color--purple--400": { + "pf-t--color--teal--20": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/charts.dark.json", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.30}" + "value": "#b9e5e5" }, - "name": "pf-t--chart--color--purple--400", + "name": "pf-t--color--teal--20", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "400" + "category": "color", + "type": "teal", + "item": "20" }, "path": [ - "chart", "color", - "purple", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } + "teal", + "20" ] }, - "pf-t--chart--color--purple--500": { + "pf-t--color--teal--30": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/charts.dark.json", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.20}" + "value": "#9ad8d8" }, - "name": "pf-t--chart--color--purple--500", + "name": "pf-t--color--teal--30", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "500" + "category": "color", + "type": "teal", + "item": "30" }, "path": [ - "chart", "color", - "purple", - "500" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } + "teal", + "30" ] }, - "pf-t--chart--color--yellow--100": { + "pf-t--color--teal--40": { "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.50}" + "value": "#63bdbd" }, - "name": "pf-t--chart--color--yellow--100", + "name": "pf-t--color--teal--40", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "100" + "category": "color", + "type": "teal", + "item": "40" }, "path": [ - "chart", "color", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } + "teal", + "40" ] }, - "pf-t--chart--color--yellow--200": { + "pf-t--color--teal--50": { "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.40}" + "value": "#37a3a3" }, - "name": "pf-t--chart--color--yellow--200", + "name": "pf-t--color--teal--50", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "200" + "category": "color", + "type": "teal", + "item": "50" }, "path": [ - "chart", "color", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } + "teal", + "50" ] }, - "pf-t--chart--color--yellow--300": { + "pf-t--color--teal--60": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", + "value": "#147878", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.30}" + "value": "#147878" }, - "name": "pf-t--chart--color--yellow--300", + "name": "pf-t--color--teal--60", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "300" + "category": "color", + "type": "teal", + "item": "60" }, "path": [ - "chart", "color", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } + "teal", + "60" ] }, - "pf-t--chart--color--yellow--400": { + "pf-t--color--teal--70": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/charts.dark.json", + "value": "#004d4d", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.20}" + "value": "#004d4d" }, - "name": "pf-t--chart--color--yellow--400", + "name": "pf-t--color--teal--70", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "400" + "category": "color", + "type": "teal", + "item": "70" }, "path": [ - "chart", "color", - "yellow", - "400" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } + "teal", + "70" ] }, - "pf-t--chart--color--yellow--500": { + "pf-t--color--yellow--10": { "type": "color", "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.10}" + "value": "#fff4cc" }, - "name": "pf-t--chart--color--yellow--500", + "name": "pf-t--color--yellow--10", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "500" + "category": "color", + "type": "yellow", + "item": "10" }, "path": [ - "chart", "color", "yellow", - "500" - ], - "references": [ - { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] - } + "10" ] }, - "pf-t--chart--color--orange--100": { + "pf-t--color--yellow--20": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.50}" + "value": "#ffe072" }, - "name": "pf-t--chart--color--orange--100", + "name": "pf-t--color--yellow--20", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "100" + "category": "color", + "type": "yellow", + "item": "20" }, "path": [ - "chart", "color", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } + "yellow", + "20" ] }, - "pf-t--chart--color--orange--200": { + "pf-t--color--yellow--30": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.40}" + "value": "#ffcc17" }, - "name": "pf-t--chart--color--orange--200", + "name": "pf-t--color--yellow--30", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "200" + "category": "color", + "type": "yellow", + "item": "30" }, "path": [ - "chart", "color", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } + "yellow", + "30" ] }, - "pf-t--chart--color--orange--300": { + "pf-t--color--yellow--40": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.30}" + "value": "#dca614" }, - "name": "pf-t--chart--color--orange--300", + "name": "pf-t--color--yellow--40", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "300" + "category": "color", + "type": "yellow", + "item": "40" }, "path": [ - "chart", "color", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } + "yellow", + "40" ] }, - "pf-t--chart--color--orange--400": { + "pf-t--color--yellow--50": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/charts.dark.json", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.20}" + "value": "#b98412" }, - "name": "pf-t--chart--color--orange--400", + "name": "pf-t--color--yellow--50", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "400" + "category": "color", + "type": "yellow", + "item": "50" }, "path": [ - "chart", "color", - "orange", - "400" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } + "yellow", + "50" ] }, - "pf-t--chart--color--orange--500": { + "pf-t--color--yellow--60": { "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", + "value": "#96640f", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.10}" + "value": "#96640f" }, - "name": "pf-t--chart--color--orange--500", + "name": "pf-t--color--yellow--60", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "500" + "category": "color", + "type": "yellow", + "item": "60" }, "path": [ - "chart", "color", - "orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] - } + "yellow", + "60" ] }, - "pf-t--chart--color--red-orange--100": { + "pf-t--color--yellow--70": { "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/charts.dark.json", + "value": "#73480b", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.red-orange.50}" + "value": "#73480b" }, - "name": "pf-t--chart--color--red-orange--100", + "name": "pf-t--color--yellow--70", "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "100" + "category": "color", + "type": "yellow", + "item": "70" }, "path": [ - "chart", "color", - "red-orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } + "yellow", + "70" ] }, - "pf-t--chart--color--red-orange--200": { + "pf-t--color--green--10": { "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/charts.dark.json", + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.red-orange.40}" + "value": "#e9f7df" }, - "name": "pf-t--chart--color--red-orange--200", + "name": "pf-t--color--green--10", "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "200" + "category": "color", + "type": "green", + "item": "10" }, "path": [ - "chart", "color", - "red-orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } + "green", + "10" ] }, - "pf-t--chart--color--red-orange--300": { + "pf-t--color--green--20": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/charts.dark.json", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.red-orange.30}" + "value": "#d1f1bb" }, - "name": "pf-t--chart--color--red-orange--300", + "name": "pf-t--color--green--20", "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "300" + "category": "color", + "type": "green", + "item": "20" }, "path": [ - "chart", "color", - "red-orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } + "green", + "20" ] }, - "pf-t--chart--color--red-orange--400": { + "pf-t--color--green--30": { "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/charts.dark.json", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.red-orange.20}" + "value": "#afdc8f" }, - "name": "pf-t--chart--color--red-orange--400", + "name": "pf-t--color--green--30", "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "400" + "category": "color", + "type": "green", + "item": "30" }, "path": [ - "chart", "color", - "red-orange", - "400" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } + "green", + "30" ] }, - "pf-t--chart--color--red-orange--500": { + "pf-t--color--green--40": { "type": "color", - "value": "#ffe3d9", - "filePath": "tokens/dark/charts.dark.json", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.red-orange.10}" + "value": "#87bb62" }, - "name": "pf-t--chart--color--red-orange--500", + "name": "pf-t--color--green--40", "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "500" + "category": "color", + "type": "green", + "item": "40" }, "path": [ - "chart", "color", - "red-orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#ffe3d9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe3d9" - }, - "name": "pf-t--color--red-orange--10", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "10" - }, - "path": [ - "color", - "red-orange", - "10" - ] - } + "green", + "40" ] }, - "pf-t--chart--color--black--100": { + "pf-t--color--green--50": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/charts.dark.json", + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.50}" + "value": "#63993d" }, - "name": "pf-t--chart--color--black--100", + "name": "pf-t--color--green--50", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "100" + "category": "color", + "type": "green", + "item": "50" }, "path": [ - "chart", "color", - "black", - "100" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } + "green", + "50" ] }, - "pf-t--chart--color--black--200": { + "pf-t--color--green--60": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/charts.dark.json", + "value": "#3d7317", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.40}" + "value": "#3d7317" }, - "name": "pf-t--chart--color--black--200", + "name": "pf-t--color--green--60", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "200" + "category": "color", + "type": "green", + "item": "60" }, "path": [ - "chart", "color", - "black", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } + "green", + "60" ] }, - "pf-t--chart--color--black--300": { + "pf-t--color--green--70": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/charts.dark.json", + "value": "#204d00", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.30}" + "value": "#204d00" }, - "name": "pf-t--chart--color--black--300", + "name": "pf-t--color--green--70", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "300" + "category": "color", + "type": "green", + "item": "70" }, "path": [ - "chart", "color", - "black", - "300" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } + "green", + "70" ] }, - "pf-t--chart--color--black--400": { + "pf-t--color--orange--10": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/charts.dark.json", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.20}" + "value": "#ffe8cc" }, - "name": "pf-t--chart--color--black--400", + "name": "pf-t--color--orange--10", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "400" + "category": "color", + "type": "orange", + "item": "10" }, "path": [ - "chart", "color", - "black", - "400" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } + "orange", + "10" ] }, - "pf-t--chart--color--black--500": { + "pf-t--color--orange--20": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/charts.dark.json", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.10}" + "value": "#fccb8f" }, - "name": "pf-t--chart--color--black--500", + "name": "pf-t--color--orange--20", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "500" + "category": "color", + "type": "orange", + "item": "20" }, "path": [ - "chart", "color", - "black", - "500" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } + "orange", + "20" ] }, - "pf-t--chart--global--BorderWidth--xs": { - "type": "number", - "value": 1, - "filePath": "tokens/dark/charts.dark.json", + "pf-t--color--orange--30": { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 1 + "type": "color", + "value": "#f8ae54" }, - "name": "pf-t--chart--global--BorderWidth--xs", + "name": "pf-t--color--orange--30", "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "xs" + "category": "color", + "type": "orange", + "item": "30" }, "path": [ - "chart", - "global", - "BorderWidth", - "xs" + "color", + "orange", + "30" ] }, - "pf-t--chart--global--BorderWidth--sm": { - "type": "number", - "value": 2, - "filePath": "tokens/dark/charts.dark.json", + "pf-t--color--orange--40": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 2 + "type": "color", + "value": "#f5921b" }, - "name": "pf-t--chart--global--BorderWidth--sm", + "name": "pf-t--color--orange--40", "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "sm" + "category": "color", + "type": "orange", + "item": "40" }, "path": [ - "chart", - "global", - "BorderWidth", - "sm" + "color", + "orange", + "40" ] }, - "pf-t--chart--global--BorderWidth--lg": { - "type": "number", - "value": 8, - "filePath": "tokens/dark/charts.dark.json", + "pf-t--color--orange--50": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 8 + "type": "color", + "value": "#ca6c0f" }, - "name": "pf-t--chart--global--BorderWidth--lg", + "name": "pf-t--color--orange--50", "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "lg" + "category": "color", + "type": "orange", + "item": "50" }, "path": [ - "chart", - "global", - "BorderWidth", - "lg" + "color", + "orange", + "50" ] }, - "pf-t--chart--global--stroke--width--xs": { - "type": "number", - "value": 1, - "filePath": "tokens/dark/charts.dark.json", + "pf-t--color--orange--60": { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 1 + "type": "color", + "value": "#9e4a06" }, - "name": "pf-t--chart--global--stroke--width--xs", + "name": "pf-t--color--orange--60", "attributes": { - "category": "chart", - "type": "global", - "item": "stroke", - "subitem": "width", - "state": "xs" + "category": "color", + "type": "orange", + "item": "60" }, "path": [ - "chart", - "global", - "stroke", - "width", - "xs" + "color", + "orange", + "60" ] }, - "pf-t--chart--global--stroke--width--sm": { - "type": "number", - "value": 2, - "filePath": "tokens/dark/charts.dark.json", + "pf-t--color--orange--70": { + "type": "color", + "value": "#732e00", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 2 + "type": "color", + "value": "#732e00" }, - "name": "pf-t--chart--global--stroke--width--sm", + "name": "pf-t--color--orange--70", "attributes": { - "category": "chart", - "type": "global", - "item": "stroke", - "subitem": "width", - "state": "sm" + "category": "color", + "type": "orange", + "item": "70" }, "path": [ - "chart", - "global", - "stroke", - "width", - "sm" + "color", + "orange", + "70" ] }, - "pf-t--chart--global--fill--color--100": { + "pf-t--color--red-orange--10": { "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/dark/charts.dark.json", + "value": "#ffe3d9", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.60}" + "value": "#ffe3d9" }, - "name": "pf-t--chart--global--fill--color--100", + "name": "pf-t--color--red-orange--10", "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "100" + "category": "color", + "type": "red-orange", + "item": "10" }, "path": [ - "chart", - "global", - "fill", "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } + "red-orange", + "10" ] }, - "pf-t--chart--global--fill--color--200": { + "pf-t--color--red-orange--20": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/charts.dark.json", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.50}" + "value": "#fbbea8" }, - "name": "pf-t--chart--global--fill--color--200", + "name": "pf-t--color--red-orange--20", "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "200" + "category": "color", + "type": "red-orange", + "item": "20" }, "path": [ - "chart", - "global", - "fill", "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } + "red-orange", + "20" ] }, - "pf-t--chart--global--fill--color--300": { + "pf-t--color--red-orange--30": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/charts.dark.json", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.40}" + "value": "#f89b78" }, - "name": "pf-t--chart--global--fill--color--300", + "name": "pf-t--color--red-orange--30", "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "300" + "category": "color", + "type": "red-orange", + "item": "30" }, "path": [ - "chart", - "global", - "fill", "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } + "red-orange", + "30" ] }, - "pf-t--chart--global--fill--color--400": { + "pf-t--color--red-orange--40": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/charts.dark.json", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.30}" + "value": "#f4784a" }, - "name": "pf-t--chart--global--fill--color--400", + "name": "pf-t--color--red-orange--40", "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "400" + "category": "color", + "type": "red-orange", + "item": "40" }, "path": [ - "chart", - "global", - "fill", "color", - "400" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } + "red-orange", + "40" ] }, - "pf-t--chart--global--fill--color--500": { + "pf-t--color--red-orange--50": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/charts.dark.json", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.20}" + "value": "#f0561d" }, - "name": "pf-t--chart--global--fill--color--500", + "name": "pf-t--color--red-orange--50", "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "500" + "category": "color", + "type": "red-orange", + "item": "50" }, "path": [ - "chart", - "global", - "fill", "color", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } + "red-orange", + "50" ] }, - "pf-t--chart--global--fill--color--700": { + "pf-t--color--red-orange--60": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/charts.dark.json", + "value": "#b1380b", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.10}" + "value": "#b1380b" }, - "name": "pf-t--chart--global--fill--color--700", + "name": "pf-t--color--red-orange--60", "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "700" - }, + "category": "color", + "type": "red-orange", + "item": "60" + }, "path": [ - "chart", - "global", - "fill", "color", - "700" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } + "red-orange", + "60" ] }, - "pf-t--chart--global--fill--color--900": { + "pf-t--color--red-orange--70": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/charts.dark.json", + "value": "#731f00", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.white}" + "value": "#731f00" }, - "name": "pf-t--chart--global--fill--color--900", + "name": "pf-t--color--red-orange--70", "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "900" + "category": "color", + "type": "red-orange", + "item": "70" }, "path": [ - "chart", - "global", - "fill", "color", - "900" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } + "red-orange", + "70" ] }, - "pf-t--chart--global--fill--color--white": { + "pf-t--color--purple--10": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/charts.dark.json", + "value": "#ece6ff", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.white}" + "value": "#ece6ff" }, - "name": "pf-t--chart--global--fill--color--white", + "name": "pf-t--color--purple--10", "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "white" + "category": "color", + "type": "purple", + "item": "10" }, "path": [ - "chart", - "global", - "fill", "color", - "white" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } + "purple", + "10" ] }, - "pf-t--chart--global--warning--color--100": { + "pf-t--color--purple--20": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.30}" + "value": "#d0c5f4" }, - "name": "pf-t--chart--global--warning--color--100", + "name": "pf-t--color--purple--20", "attributes": { - "category": "chart", - "type": "global", - "item": "warning", - "subitem": "color", - "state": "100" + "category": "color", + "type": "purple", + "item": "20" }, "path": [ - "chart", - "global", - "warning", "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } + "purple", + "20" ] }, - "pf-t--chart--global--warning--color--200": { + "pf-t--color--purple--30": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.30}" + "value": "#b6a6e9" }, - "name": "pf-t--chart--global--warning--color--200", + "name": "pf-t--color--purple--30", "attributes": { - "category": "chart", - "type": "global", - "item": "warning", - "subitem": "color", - "state": "200" + "category": "color", + "type": "purple", + "item": "30" }, "path": [ - "chart", - "global", - "warning", "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } + "purple", + "30" ] }, - "pf-t--chart--global--success--color--100": { + "pf-t--color--purple--40": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.30}" + "value": "#876fd4" }, - "name": "pf-t--chart--global--success--color--100", + "name": "pf-t--color--purple--40", "attributes": { - "category": "chart", - "type": "global", - "item": "success", - "subitem": "color", - "state": "100" + "category": "color", + "type": "purple", + "item": "40" }, "path": [ - "chart", - "global", - "success", "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } + "purple", + "40" ] }, - "pf-t--chart--global--danger--color--100": { + "pf-t--color--purple--50": { "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/charts.dark.json", + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.red-orange.50}" + "value": "#5e40be" }, - "name": "pf-t--chart--global--danger--color--100", + "name": "pf-t--color--purple--50", "attributes": { - "category": "chart", - "type": "global", - "item": "danger", - "subitem": "color", - "state": "100" + "category": "color", + "type": "purple", + "item": "50" }, "path": [ - "chart", - "global", - "danger", "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } + "purple", + "50" ] }, - "pf-t--chart--global--FontSize--xs": { - "type": "number", - "value": 12, - "filePath": "tokens/dark/charts.dark.json", + "pf-t--color--purple--60": { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 12 + "type": "color", + "value": "#3d2785" }, - "name": "pf-t--chart--global--FontSize--xs", + "name": "pf-t--color--purple--60", "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "xs" + "category": "color", + "type": "purple", + "item": "60" }, "path": [ - "chart", - "global", - "FontSize", - "xs" + "color", + "purple", + "60" ] }, - "pf-t--chart--global--FontSize--sm": { - "type": "number", - "value": 14, - "filePath": "tokens/dark/charts.dark.json", + "pf-t--color--purple--70": { + "type": "color", + "value": "#21134d", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 14 + "type": "color", + "value": "#21134d" }, - "name": "pf-t--chart--global--FontSize--sm", + "name": "pf-t--color--purple--70", "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "sm" + "category": "color", + "type": "purple", + "item": "70" }, "path": [ - "chart", - "global", - "FontSize", - "sm" + "color", + "purple", + "70" ] }, - "pf-t--chart--global--FontSize--lg": { - "type": "number", - "value": 18, - "filePath": "tokens/dark/charts.dark.json", + "pf-t--color--red--10": { + "type": "color", + "value": "#fce3e3", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 18 + "type": "color", + "value": "#fce3e3" }, - "name": "pf-t--chart--global--FontSize--lg", + "name": "pf-t--color--red--10", "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "lg" + "category": "color", + "type": "red", + "item": "10" }, "path": [ - "chart", - "global", - "FontSize", - "lg" + "color", + "red", + "10" ] }, - "pf-t--chart--global--FontSize--2xl": { - "type": "number", - "value": 22, - "filePath": "tokens/dark/charts.dark.json", + "pf-t--color--red--20": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 22 + "type": "color", + "value": "#fbc5c5" }, - "name": "pf-t--chart--global--FontSize--2xl", + "name": "pf-t--color--red--20", "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "2xl" + "category": "color", + "type": "red", + "item": "20" }, "path": [ - "chart", - "global", - "FontSize", - "2xl" + "color", + "red", + "20" ] }, - "pf-t--chart--global--letter-spacing": { - "type": "string", - "value": "normal", - "filePath": "tokens/dark/charts.dark.json", + "pf-t--color--red--30": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { - "type": "string", - "value": "normal" + "type": "color", + "value": "#f9a8a8" }, - "name": "pf-t--chart--global--letter-spacing", + "name": "pf-t--color--red--30", "attributes": { - "category": "chart", - "type": "global", - "item": "letter-spacing" + "category": "color", + "type": "red", + "item": "30" }, "path": [ - "chart", - "global", - "letter-spacing" + "color", + "red", + "30" ] }, - "pf-t--chart--global--stroke-line-cap": { - "type": "string", - "value": "round", - "filePath": "tokens/dark/charts.dark.json", + "pf-t--color--red--40": { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { - "type": "string", - "value": "round" + "type": "color", + "value": "#f56e6e" }, - "name": "pf-t--chart--global--stroke-line-cap", + "name": "pf-t--color--red--40", "attributes": { - "category": "chart", - "type": "global", - "item": "stroke-line-cap" + "category": "color", + "type": "red", + "item": "40" }, "path": [ - "chart", - "global", - "stroke-line-cap" + "color", + "red", + "40" ] }, - "pf-t--chart--global--label--padding": { - "type": "number", - "value": 10, - "filePath": "tokens/dark/charts.dark.json", + "pf-t--color--red--50": { + "type": "color", + "value": "#ee0000", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 10 + "type": "color", + "value": "#ee0000" }, - "name": "pf-t--chart--global--label--padding", + "name": "pf-t--color--red--50", "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "padding" + "category": "color", + "type": "red", + "item": "50" }, "path": [ - "chart", - "global", - "label", - "padding" + "color", + "red", + "50" ] }, - "pf-t--chart--global--label--margin": { - "type": "number", - "value": 8, - "filePath": "tokens/dark/charts.dark.json", + "pf-t--color--red--60": { + "type": "color", + "value": "#a60000", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 8 + "type": "color", + "value": "#a60000" }, - "name": "pf-t--chart--global--label--margin", + "name": "pf-t--color--red--60", "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "margin" + "category": "color", + "type": "red", + "item": "60" }, "path": [ - "chart", - "global", - "label", - "margin" + "color", + "red", + "60" ] }, - "pf-t--chart--global--label--stroke": { - "width": { - "type": "number", - "value": 0, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true - }, - "type": "string", - "value": "transparent", - "filePath": "tokens/dark/charts.dark.json", + "pf-t--color--red--70": { + "type": "color", + "value": "#5f0000", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { - "width": { - "type": "number", - "value": 0, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true - }, - "type": "string", - "value": "transparent" + "type": "color", + "value": "#5f0000" }, - "name": "pf-t--chart--global--label--stroke", + "name": "pf-t--color--red--70", "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "stroke" + "category": "color", + "type": "red", + "item": "70" }, "path": [ - "chart", - "global", - "label", - "stroke" + "color", + "red", + "70" ] - }, - "pf-t--chart--global--label--text-anchor": { - "type": "string", - "value": "middle", + } + }, + "chart": { + "pf-t--chart--color--blue--100": { + "type": "color", + "value": "#0066cc", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { - "type": "string", - "value": "middle" + "type": "color", + "value": "{color.blue.50}" }, - "name": "pf-t--chart--global--label--text-anchor", + "name": "pf-t--chart--color--blue--100", "attributes": { "category": "chart", - "type": "global", - "item": "label", - "subitem": "text-anchor" + "type": "color", + "item": "blue", + "subitem": "100" }, "path": [ "chart", - "global", - "label", - "text-anchor" + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } ] }, - "pf-t--chart--global--label--fill": { + "pf-t--chart--color--blue--200": { "type": "color", - "value": "#ffffff", + "value": "#4394e5", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.white}" + "value": "{color.blue.40}" }, - "name": "pf-t--chart--global--label--fill", + "name": "pf-t--chart--color--blue--200", "attributes": { "category": "chart", - "type": "global", - "item": "label", - "subitem": "fill" + "type": "color", + "item": "blue", + "subitem": "200" }, "path": [ "chart", - "global", - "label", - "fill" + "color", + "blue", + "200" ], "references": [ { "type": "color", - "value": "#ffffff", + "value": "#4394e5", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#ffffff" + "value": "#4394e5" }, - "name": "pf-t--color--white", + "name": "pf-t--color--blue--40", "attributes": { "category": "color", - "type": "white" + "type": "blue", + "item": "40" }, "path": [ "color", - "white" + "blue", + "40" ] } ] }, - "pf-t--chart--global--layout--padding": { - "type": "number", - "value": 50, + "pf-t--chart--color--blue--300": { + "type": "color", + "value": "#92c5f9", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { - "type": "number", - "value": 50 + "type": "color", + "value": "{color.blue.30}" }, - "name": "pf-t--chart--global--layout--padding", + "name": "pf-t--chart--color--blue--300", "attributes": { "category": "chart", - "type": "global", - "item": "layout", - "subitem": "padding" + "type": "color", + "item": "blue", + "subitem": "300" }, "path": [ "chart", - "global", - "layout", - "padding" + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } ] }, - "pf-t--chart--global--layout--height": { - "type": "number", - "value": 300, + "pf-t--chart--color--blue--400": { + "type": "color", + "value": "#b9dafc", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { - "type": "number", - "value": 300 + "type": "color", + "value": "{color.blue.20}" }, - "name": "pf-t--chart--global--layout--height", + "name": "pf-t--chart--color--blue--400", "attributes": { "category": "chart", - "type": "global", - "item": "layout", - "subitem": "height" + "type": "color", + "item": "blue", + "subitem": "400" }, "path": [ "chart", - "global", - "layout", - "height" + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } ] }, - "pf-t--chart--global--layout--width": { - "type": "number", - "value": 450, + "pf-t--chart--color--blue--500": { + "type": "color", + "value": "#e0f0ff", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { - "type": "number", - "value": 450 + "type": "color", + "value": "{color.blue.10}" }, - "name": "pf-t--chart--global--layout--width", + "name": "pf-t--chart--color--blue--500", "attributes": { "category": "chart", - "type": "global", - "item": "layout", - "subitem": "width" + "type": "color", + "item": "blue", + "subitem": "500" }, "path": [ "chart", - "global", - "layout", - "width" - ] - }, - "pf-t--chart--global--stroke-line-join": { - "type": "string", - "value": "round", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "string", - "value": "round" - }, - "name": "pf-t--chart--global--stroke-line-join", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke-line-join" - }, - "path": [ - "chart", - "global", - "stroke-line-join" + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } ] }, - "pf-t--chart--theme--colorscales--blue--colorscale--100": { + "pf-t--chart--color--green--100": { "type": "color", - "value": "#92c5f9", + "value": "#63993d", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.300}" + "value": "{color.green.50}" }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--100", + "name": "pf-t--chart--color--green--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" + "type": "color", + "item": "green", + "subitem": "100" }, "path": [ "chart", - "theme", - "colorscales", - "blue", - "colorscale", + "color", + "green", "100" ], "references": [ { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.30}" + "value": "#63993d" }, - "name": "pf-t--chart--color--blue--300", + "name": "pf-t--color--green--50", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "300" + "category": "color", + "type": "green", + "item": "50" }, "path": [ - "chart", "color", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } + "green", + "50" ] } ] }, - "pf-t--chart--theme--colorscales--blue--colorscale--200": { + "pf-t--chart--color--green--200": { "type": "color", - "value": "#0066cc", + "value": "#87bb62", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.100}" + "value": "{color.green.40}" }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--200", + "name": "pf-t--chart--color--green--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" + "type": "color", + "item": "green", + "subitem": "200" }, "path": [ "chart", - "theme", - "colorscales", - "blue", - "colorscale", + "color", + "green", "200" ], "references": [ { "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.50}" + "value": "#87bb62" }, - "name": "pf-t--chart--color--blue--100", + "name": "pf-t--color--green--40", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "100" + "category": "color", + "type": "green", + "item": "40" }, "path": [ - "chart", "color", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } + "green", + "40" ] } ] }, - "pf-t--chart--theme--colorscales--blue--colorscale--300": { + "pf-t--chart--color--green--300": { "type": "color", - "value": "#e0f0ff", + "value": "#afdc8f", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.500}" + "value": "{color.green.30}" }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--300", + "name": "pf-t--chart--color--green--300", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" + "type": "color", + "item": "green", + "subitem": "300" }, "path": [ "chart", - "theme", - "colorscales", - "blue", - "colorscale", + "color", + "green", "300" ], "references": [ { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.10}" + "value": "#afdc8f" }, - "name": "pf-t--chart--color--blue--500", + "name": "pf-t--color--green--30", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "500" + "category": "color", + "type": "green", + "item": "30" }, "path": [ - "chart", "color", - "blue", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } + "green", + "30" ] } ] }, - "pf-t--chart--theme--colorscales--blue--colorscale--400": { + "pf-t--chart--color--green--400": { "type": "color", - "value": "#4394e5", + "value": "#d1f1bb", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.200}" + "value": "{color.green.20}" }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--400", + "name": "pf-t--chart--color--green--400", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" + "type": "color", + "item": "green", + "subitem": "400" }, "path": [ "chart", - "theme", - "colorscales", - "blue", - "colorscale", + "color", + "green", "400" ], "references": [ { "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.40}" + "value": "#d1f1bb" }, - "name": "pf-t--chart--color--blue--200", + "name": "pf-t--color--green--20", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "200" + "category": "color", + "type": "green", + "item": "20" }, "path": [ - "chart", "color", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } + "green", + "20" ] } ] }, - "pf-t--chart--theme--colorscales--blue--colorscale--500": { + "pf-t--chart--color--green--500": { "type": "color", - "value": "#b9dafc", + "value": "#e9f7df", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.400}" + "value": "{color.green.10}" }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--500", + "name": "pf-t--chart--color--green--500", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" + "type": "color", + "item": "green", + "subitem": "500" }, "path": [ "chart", - "theme", - "colorscales", - "blue", - "colorscale", + "color", + "green", "500" ], "references": [ { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/charts.dark.json", + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.20}" + "value": "#e9f7df" }, - "name": "pf-t--chart--color--blue--400", + "name": "pf-t--color--green--10", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "400" + "category": "color", + "type": "green", + "item": "10" }, "path": [ - "chart", "color", - "blue", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } + "green", + "10" ] } ] }, - "pf-t--chart--theme--colorscales--teal--colorscale--100": { + "pf-t--chart--color--teal--100": { "type": "color", - "value": "#9ad8d8", + "value": "#37a3a3", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.300}" + "value": "{color.teal.50}" }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--100", + "name": "pf-t--chart--color--teal--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" + "type": "color", + "item": "teal", + "subitem": "100" }, "path": [ "chart", - "theme", - "colorscales", + "color", "teal", - "colorscale", "100" ], "references": [ { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.30}" + "value": "#37a3a3" }, - "name": "pf-t--chart--color--teal--300", + "name": "pf-t--color--teal--50", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "300" + "category": "color", + "type": "teal", + "item": "50" }, "path": [ - "chart", "color", "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } + "50" ] } ] }, - "pf-t--chart--theme--colorscales--teal--colorscale--200": { + "pf-t--chart--color--teal--200": { "type": "color", - "value": "#37a3a3", + "value": "#63bdbd", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.100}" + "value": "{color.teal.40}" }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--200", + "name": "pf-t--chart--color--teal--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" + "type": "color", + "item": "teal", + "subitem": "200" }, "path": [ "chart", - "theme", - "colorscales", + "color", "teal", - "colorscale", "200" ], "references": [ { "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.50}" + "value": "#63bdbd" }, - "name": "pf-t--chart--color--teal--100", + "name": "pf-t--color--teal--40", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "100" + "category": "color", + "type": "teal", + "item": "40" }, "path": [ - "chart", "color", "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } + "40" ] } ] }, - "pf-t--chart--theme--colorscales--teal--colorscale--300": { + "pf-t--chart--color--teal--300": { "type": "color", - "value": "#daf2f2", + "value": "#9ad8d8", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.500}" + "value": "{color.teal.30}" }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--300", + "name": "pf-t--chart--color--teal--300", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" + "type": "color", + "item": "teal", + "subitem": "300" }, "path": [ "chart", - "theme", - "colorscales", + "color", "teal", - "colorscale", "300" ], "references": [ { "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.10}" + "value": "#9ad8d8" }, - "name": "pf-t--chart--color--teal--500", + "name": "pf-t--color--teal--30", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "500" + "category": "color", + "type": "teal", + "item": "30" }, "path": [ - "chart", "color", "teal", - "500" - ], - "references": [ - { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - } + "30" ] } ] }, - "pf-t--chart--theme--colorscales--teal--colorscale--400": { + "pf-t--chart--color--teal--400": { "type": "color", - "value": "#63bdbd", + "value": "#b9e5e5", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.200}" + "value": "{color.teal.20}" }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--400", + "name": "pf-t--chart--color--teal--400", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" + "type": "color", + "item": "teal", + "subitem": "400" }, "path": [ "chart", - "theme", - "colorscales", + "color", "teal", - "colorscale", "400" ], "references": [ { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.40}" + "value": "#b9e5e5" }, - "name": "pf-t--chart--color--teal--200", + "name": "pf-t--color--teal--20", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "200" + "category": "color", + "type": "teal", + "item": "20" }, "path": [ - "chart", "color", "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } + "20" ] } ] }, - "pf-t--chart--theme--colorscales--teal--colorscale--500": { + "pf-t--chart--color--teal--500": { "type": "color", - "value": "#b9e5e5", + "value": "#daf2f2", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.400}" + "value": "{color.teal.10}" }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--500", + "name": "pf-t--chart--color--teal--500", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" + "type": "color", + "item": "teal", + "subitem": "500" }, "path": [ "chart", - "theme", - "colorscales", + "color", "teal", - "colorscale", "500" ], "references": [ { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/charts.dark.json", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.20}" + "value": "#daf2f2" }, - "name": "pf-t--chart--color--teal--400", + "name": "pf-t--color--teal--10", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "400" + "category": "color", + "type": "teal", + "item": "10" }, "path": [ - "chart", "color", "teal", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } + "10" ] } ] }, - "pf-t--chart--theme--colorscales--yellow--colorscale--100": { + "pf-t--chart--color--purple--100": { "type": "color", - "value": "#ffcc17", + "value": "#3d2785", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.300}" + "value": "{color.purple.60}" }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--100", + "name": "pf-t--chart--color--purple--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" + "type": "color", + "item": "purple", + "subitem": "100" }, "path": [ "chart", - "theme", - "colorscales", - "yellow", - "colorscale", + "color", + "purple", "100" ], "references": [ { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.30}" + "value": "#3d2785" }, - "name": "pf-t--chart--color--yellow--300", + "name": "pf-t--color--purple--60", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "300" + "category": "color", + "type": "purple", + "item": "60" }, "path": [ - "chart", "color", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } + "purple", + "60" ] } ] }, - "pf-t--chart--theme--colorscales--yellow--colorscale--200": { + "pf-t--chart--color--purple--200": { "type": "color", - "value": "#b98412", + "value": "#5e40be", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.100}" + "value": "{color.purple.50}" }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--200", + "name": "pf-t--chart--color--purple--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" + "type": "color", + "item": "purple", + "subitem": "200" }, "path": [ "chart", - "theme", - "colorscales", - "yellow", - "colorscale", + "color", + "purple", "200" ], "references": [ { "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.50}" + "value": "#5e40be" }, - "name": "pf-t--chart--color--yellow--100", + "name": "pf-t--color--purple--50", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "100" + "category": "color", + "type": "purple", + "item": "50" }, "path": [ - "chart", "color", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } + "purple", + "50" ] } ] }, - "pf-t--chart--theme--colorscales--yellow--colorscale--300": { + "pf-t--chart--color--purple--300": { "type": "color", - "value": "#fff4cc", + "value": "#876fd4", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.500}" + "value": "{color.purple.40}" }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--300", + "name": "pf-t--chart--color--purple--300", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" + "type": "color", + "item": "purple", + "subitem": "300" }, "path": [ "chart", - "theme", - "colorscales", - "yellow", - "colorscale", + "color", + "purple", "300" ], "references": [ { "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.10}" + "value": "#876fd4" }, - "name": "pf-t--chart--color--yellow--500", + "name": "pf-t--color--purple--40", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "500" + "category": "color", + "type": "purple", + "item": "40" }, "path": [ - "chart", "color", - "yellow", - "500" - ], - "references": [ - { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] - } + "purple", + "40" ] } ] }, - "pf-t--chart--theme--colorscales--yellow--colorscale--400": { + "pf-t--chart--color--purple--400": { "type": "color", - "value": "#dca614", + "value": "#b6a6e9", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.200}" + "value": "{color.purple.30}" }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--400", + "name": "pf-t--chart--color--purple--400", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" + "type": "color", + "item": "purple", + "subitem": "400" }, "path": [ "chart", - "theme", - "colorscales", - "yellow", - "colorscale", + "color", + "purple", "400" ], "references": [ { "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.40}" + "value": "#b6a6e9" }, - "name": "pf-t--chart--color--yellow--200", + "name": "pf-t--color--purple--30", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "200" + "category": "color", + "type": "purple", + "item": "30" }, "path": [ - "chart", "color", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } + "purple", + "30" ] } ] }, - "pf-t--chart--theme--colorscales--yellow--colorscale--500": { + "pf-t--chart--color--purple--500": { "type": "color", - "value": "#ffe072", + "value": "#d0c5f4", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.400}" + "value": "{color.purple.20}" }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--500", + "name": "pf-t--chart--color--purple--500", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" + "type": "color", + "item": "purple", + "subitem": "500" }, "path": [ "chart", - "theme", - "colorscales", - "yellow", - "colorscale", + "color", + "purple", "500" ], "references": [ { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/charts.dark.json", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.20}" + "value": "#d0c5f4" }, - "name": "pf-t--chart--color--yellow--400", + "name": "pf-t--color--purple--20", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "400" + "category": "color", + "type": "purple", + "item": "20" }, "path": [ - "chart", "color", - "yellow", - "400" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } + "purple", + "20" ] } ] }, - "pf-t--chart--theme--colorscales--gray--colorscale--100": { + "pf-t--chart--color--yellow--100": { "type": "color", - "value": "#c7c7c7", + "value": "#b98412", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.300}" + "value": "{color.yellow.50}" }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--100", + "name": "pf-t--chart--color--yellow--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" + "type": "color", + "item": "yellow", + "subitem": "100" }, "path": [ "chart", - "theme", - "colorscales", - "gray", - "colorscale", + "color", + "yellow", "100" ], "references": [ { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/charts.dark.json", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.30}" + "value": "#b98412" }, - "name": "pf-t--chart--color--black--300", + "name": "pf-t--color--yellow--50", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "300" + "category": "color", + "type": "yellow", + "item": "50" }, "path": [ - "chart", "color", - "black", - "300" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } + "yellow", + "50" ] } ] }, - "pf-t--chart--theme--colorscales--gray--colorscale--200": { + "pf-t--chart--color--yellow--200": { "type": "color", - "value": "#707070", + "value": "#dca614", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.100}" + "value": "{color.yellow.40}" }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--200", + "name": "pf-t--chart--color--yellow--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" + "type": "color", + "item": "yellow", + "subitem": "200" }, "path": [ "chart", - "theme", - "colorscales", - "gray", - "colorscale", + "color", + "yellow", "200" ], "references": [ { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/charts.dark.json", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.50}" + "value": "#dca614" }, - "name": "pf-t--chart--color--black--100", + "name": "pf-t--color--yellow--40", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "100" + "category": "color", + "type": "yellow", + "item": "40" }, "path": [ - "chart", "color", - "black", - "100" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } + "yellow", + "40" ] } ] }, - "pf-t--chart--theme--colorscales--gray--colorscale--300": { + "pf-t--chart--color--yellow--300": { "type": "color", - "value": "#f2f2f2", + "value": "#ffcc17", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.500}" + "value": "{color.yellow.30}" }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--300", + "name": "pf-t--chart--color--yellow--300", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" + "type": "color", + "item": "yellow", + "subitem": "300" }, "path": [ "chart", - "theme", - "colorscales", - "gray", - "colorscale", + "color", + "yellow", "300" ], "references": [ { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/charts.dark.json", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.10}" + "value": "#ffcc17" }, - "name": "pf-t--chart--color--black--500", + "name": "pf-t--color--yellow--30", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "500" + "category": "color", + "type": "yellow", + "item": "30" }, "path": [ - "chart", "color", - "black", - "500" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } + "yellow", + "30" ] } ] }, - "pf-t--chart--theme--colorscales--gray--colorscale--400": { + "pf-t--chart--color--yellow--400": { "type": "color", - "value": "#a3a3a3", + "value": "#ffe072", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.200}" + "value": "{color.yellow.20}" }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--400", + "name": "pf-t--chart--color--yellow--400", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" + "type": "color", + "item": "yellow", + "subitem": "400" }, "path": [ "chart", - "theme", - "colorscales", - "gray", - "colorscale", + "color", + "yellow", "400" ], "references": [ { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/charts.dark.json", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.40}" + "value": "#ffe072" }, - "name": "pf-t--chart--color--black--200", + "name": "pf-t--color--yellow--20", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "200" + "category": "color", + "type": "yellow", + "item": "20" }, "path": [ - "chart", "color", - "black", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } + "yellow", + "20" ] } ] }, - "pf-t--chart--theme--colorscales--gray--colorscale--500": { + "pf-t--chart--color--yellow--500": { "type": "color", - "value": "#e0e0e0", + "value": "#fff4cc", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.400}" + "value": "{color.yellow.10}" }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--500", + "name": "pf-t--chart--color--yellow--500", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" + "type": "color", + "item": "yellow", + "subitem": "500" }, "path": [ "chart", - "theme", - "colorscales", - "gray", - "colorscale", + "color", + "yellow", "500" ], "references": [ { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/charts.dark.json", + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.20}" + "value": "#fff4cc" }, - "name": "pf-t--chart--color--black--400", + "name": "pf-t--color--yellow--10", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "400" + "category": "color", + "type": "yellow", + "item": "10" }, "path": [ - "chart", "color", - "black", - "400" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } + "yellow", + "10" ] } ] }, - "pf-t--chart--theme--colorscales--green--colorscale--100": { + "pf-t--chart--color--orange--100": { "type": "color", - "value": "#afdc8f", + "value": "#ca6c0f", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.300}" + "value": "{color.orange.50}" }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--100", + "name": "pf-t--chart--color--orange--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" + "type": "color", + "item": "orange", + "subitem": "100" }, "path": [ "chart", - "theme", - "colorscales", - "green", - "colorscale", + "color", + "orange", "100" ], "references": [ { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.30}" + "value": "#ca6c0f" }, - "name": "pf-t--chart--color--green--300", + "name": "pf-t--color--orange--50", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "300" + "category": "color", + "type": "orange", + "item": "50" }, "path": [ - "chart", "color", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } + "orange", + "50" ] } ] }, - "pf-t--chart--theme--colorscales--green--colorscale--200": { + "pf-t--chart--color--orange--200": { "type": "color", - "value": "#63993d", + "value": "#f5921b", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.100}" + "value": "{color.orange.40}" }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--200", + "name": "pf-t--chart--color--orange--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" + "type": "color", + "item": "orange", + "subitem": "200" }, "path": [ "chart", - "theme", - "colorscales", - "green", - "colorscale", + "color", + "orange", "200" ], "references": [ { "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.50}" + "value": "#f5921b" }, - "name": "pf-t--chart--color--green--100", + "name": "pf-t--color--orange--40", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "100" + "category": "color", + "type": "orange", + "item": "40" }, "path": [ - "chart", "color", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } + "orange", + "40" ] } ] }, - "pf-t--chart--theme--colorscales--green--colorscale--300": { + "pf-t--chart--color--orange--300": { "type": "color", - "value": "#e9f7df", + "value": "#f8ae54", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.500}" + "value": "{color.orange.30}" }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--300", + "name": "pf-t--chart--color--orange--300", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" + "type": "color", + "item": "orange", + "subitem": "300" }, "path": [ "chart", - "theme", - "colorscales", - "green", - "colorscale", + "color", + "orange", "300" ], "references": [ { "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.10}" + "value": "#f8ae54" }, - "name": "pf-t--chart--color--green--500", + "name": "pf-t--color--orange--30", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "500" + "category": "color", + "type": "orange", + "item": "30" }, "path": [ - "chart", "color", - "green", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] - } + "orange", + "30" ] } ] }, - "pf-t--chart--theme--colorscales--green--colorscale--400": { + "pf-t--chart--color--orange--400": { "type": "color", - "value": "#87bb62", + "value": "#fccb8f", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.200}" + "value": "{color.orange.20}" }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--400", + "name": "pf-t--chart--color--orange--400", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" + "type": "color", + "item": "orange", + "subitem": "400" }, "path": [ "chart", - "theme", - "colorscales", - "green", - "colorscale", + "color", + "orange", "400" ], "references": [ { "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.40}" + "value": "#fccb8f" }, - "name": "pf-t--chart--color--green--200", + "name": "pf-t--color--orange--20", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "200" + "category": "color", + "type": "orange", + "item": "20" }, "path": [ - "chart", "color", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } + "orange", + "20" ] } ] }, - "pf-t--chart--theme--colorscales--green--colorscale--500": { + "pf-t--chart--color--orange--500": { "type": "color", - "value": "#d1f1bb", + "value": "#ffe8cc", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.400}" + "value": "{color.orange.10}" }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--500", + "name": "pf-t--chart--color--orange--500", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" + "type": "color", + "item": "orange", + "subitem": "500" }, "path": [ "chart", - "theme", - "colorscales", - "green", - "colorscale", + "color", + "orange", "500" ], "references": [ { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/charts.dark.json", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.20}" + "value": "#ffe8cc" }, - "name": "pf-t--chart--color--green--400", + "name": "pf-t--color--orange--10", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "400" + "category": "color", + "type": "orange", + "item": "10" }, "path": [ - "chart", "color", - "green", - "400" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } + "orange", + "10" ] } ] }, - "pf-t--chart--theme--colorscales--purple--colorscale--100": { + "pf-t--chart--color--red-orange--100": { "type": "color", - "value": "#876fd4", + "value": "#f0561d", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.300}" + "value": "{color.red-orange.50}" }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--100", + "name": "pf-t--chart--color--red-orange--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" + "type": "color", + "item": "red-orange", + "subitem": "100" }, "path": [ "chart", - "theme", - "colorscales", - "purple", - "colorscale", + "color", + "red-orange", "100" ], "references": [ { "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/charts.dark.json", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.40}" + "value": "#f0561d" }, - "name": "pf-t--chart--color--purple--300", + "name": "pf-t--color--red-orange--50", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "300" + "category": "color", + "type": "red-orange", + "item": "50" }, "path": [ - "chart", "color", - "purple", - "300" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } + "red-orange", + "50" ] } ] }, - "pf-t--chart--theme--colorscales--purple--colorscale--200": { + "pf-t--chart--color--red-orange--200": { "type": "color", - "value": "#3d2785", + "value": "#f4784a", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.100}" + "value": "{color.red-orange.40}" }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--200", + "name": "pf-t--chart--color--red-orange--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" + "type": "color", + "item": "red-orange", + "subitem": "200" }, "path": [ "chart", - "theme", - "colorscales", - "purple", - "colorscale", + "color", + "red-orange", "200" ], "references": [ { "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/charts.dark.json", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.60}" + "value": "#f4784a" }, - "name": "pf-t--chart--color--purple--100", + "name": "pf-t--color--red-orange--40", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "100" + "category": "color", + "type": "red-orange", + "item": "40" }, "path": [ - "chart", "color", - "purple", - "100" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } + "red-orange", + "40" ] } ] }, - "pf-t--chart--theme--colorscales--purple--colorscale--300": { + "pf-t--chart--color--red-orange--300": { "type": "color", - "value": "#d0c5f4", + "value": "#f89b78", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.500}" + "value": "{color.red-orange.30}" }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--300", + "name": "pf-t--chart--color--red-orange--300", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" + "type": "color", + "item": "red-orange", + "subitem": "300" }, "path": [ "chart", - "theme", - "colorscales", - "purple", - "colorscale", + "color", + "red-orange", "300" ], "references": [ { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/charts.dark.json", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.20}" + "value": "#f89b78" }, - "name": "pf-t--chart--color--purple--500", + "name": "pf-t--color--red-orange--30", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "500" + "category": "color", + "type": "red-orange", + "item": "30" }, "path": [ - "chart", "color", - "purple", - "500" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } + "red-orange", + "30" ] } ] }, - "pf-t--chart--theme--colorscales--purple--colorscale--400": { + "pf-t--chart--color--red-orange--400": { "type": "color", - "value": "#5e40be", + "value": "#fbbea8", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.200}" + "value": "{color.red-orange.20}" }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--400", + "name": "pf-t--chart--color--red-orange--400", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" + "type": "color", + "item": "red-orange", + "subitem": "400" }, "path": [ "chart", - "theme", - "colorscales", - "purple", - "colorscale", + "color", + "red-orange", "400" ], "references": [ { "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/charts.dark.json", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.50}" + "value": "#fbbea8" }, - "name": "pf-t--chart--color--purple--200", + "name": "pf-t--color--red-orange--20", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "200" + "category": "color", + "type": "red-orange", + "item": "20" }, "path": [ - "chart", "color", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } + "red-orange", + "20" ] } ] }, - "pf-t--chart--theme--colorscales--purple--colorscale--500": { + "pf-t--chart--color--red-orange--500": { "type": "color", - "value": "#b6a6e9", + "value": "#ffe3d9", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.400}" + "value": "{color.red-orange.10}" }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--500", + "name": "pf-t--chart--color--red-orange--500", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" + "type": "color", + "item": "red-orange", + "subitem": "500" }, "path": [ "chart", - "theme", - "colorscales", - "purple", - "colorscale", + "color", + "red-orange", "500" ], "references": [ { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/charts.dark.json", + "value": "#ffe3d9", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.30}" + "value": "#ffe3d9" }, - "name": "pf-t--chart--color--purple--400", + "name": "pf-t--color--red-orange--10", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "400" + "category": "color", + "type": "red-orange", + "item": "10" }, "path": [ - "chart", "color", - "purple", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } + "red-orange", + "10" ] } ] }, - "pf-t--chart--theme--colorscales--orange--colorscale--100": { + "pf-t--chart--color--black--100": { "type": "color", - "value": "#f8ae54", + "value": "#707070", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.300}" + "value": "{color.gray.50}" }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--100", + "name": "pf-t--chart--color--black--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" + "type": "color", + "item": "black", + "subitem": "100" }, "path": [ "chart", - "theme", - "colorscales", - "orange", - "colorscale", + "color", + "black", "100" ], "references": [ { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.30}" + "value": "#707070" }, - "name": "pf-t--chart--color--orange--300", + "name": "pf-t--color--gray--50", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "300" + "category": "color", + "type": "gray", + "item": "50" }, "path": [ - "chart", "color", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } + "gray", + "50" ] } ] }, - "pf-t--chart--theme--colorscales--orange--colorscale--200": { + "pf-t--chart--color--black--200": { "type": "color", - "value": "#ca6c0f", + "value": "#a3a3a3", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.100}" + "value": "{color.gray.40}" }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--200", + "name": "pf-t--chart--color--black--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" + "type": "color", + "item": "black", + "subitem": "200" }, "path": [ "chart", - "theme", - "colorscales", - "orange", - "colorscale", + "color", + "black", "200" ], "references": [ { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.50}" + "value": "#a3a3a3" }, - "name": "pf-t--chart--color--orange--100", + "name": "pf-t--color--gray--40", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "100" + "category": "color", + "type": "gray", + "item": "40" }, "path": [ - "chart", "color", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } + "gray", + "40" ] } ] }, - "pf-t--chart--theme--colorscales--orange--colorscale--300": { + "pf-t--chart--color--black--300": { "type": "color", - "value": "#ffe8cc", + "value": "#c7c7c7", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.500}" + "value": "{color.gray.30}" }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--300", + "name": "pf-t--chart--color--black--300", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" + "type": "color", + "item": "black", + "subitem": "300" }, "path": [ "chart", - "theme", - "colorscales", - "orange", - "colorscale", + "color", + "black", "300" ], "references": [ { "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.10}" + "value": "#c7c7c7" }, - "name": "pf-t--chart--color--orange--500", + "name": "pf-t--color--gray--30", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "500" + "category": "color", + "type": "gray", + "item": "30" }, "path": [ - "chart", "color", - "orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] - } + "gray", + "30" ] } ] }, - "pf-t--chart--theme--colorscales--orange--colorscale--400": { + "pf-t--chart--color--black--400": { "type": "color", - "value": "#f5921b", + "value": "#e0e0e0", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.200}" + "value": "{color.gray.20}" }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--400", + "name": "pf-t--chart--color--black--400", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" + "type": "color", + "item": "black", + "subitem": "400" }, "path": [ "chart", - "theme", - "colorscales", - "orange", - "colorscale", + "color", + "black", "400" ], "references": [ { "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.40}" + "value": "#e0e0e0" }, - "name": "pf-t--chart--color--orange--200", + "name": "pf-t--color--gray--20", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "200" + "category": "color", + "type": "gray", + "item": "20" }, "path": [ - "chart", "color", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } + "gray", + "20" ] } ] }, - "pf-t--chart--theme--colorscales--orange--colorscale--500": { + "pf-t--chart--color--black--500": { "type": "color", - "value": "#fccb8f", + "value": "#f2f2f2", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.400}" + "value": "{color.gray.10}" }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--500", + "name": "pf-t--chart--color--black--500", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" + "type": "color", + "item": "black", + "subitem": "500" }, "path": [ "chart", - "theme", - "colorscales", - "orange", - "colorscale", + "color", + "black", "500" ], "references": [ { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/charts.dark.json", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.20}" + "value": "#f2f2f2" }, - "name": "pf-t--chart--color--orange--400", + "name": "pf-t--color--gray--10", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "400" + "category": "color", + "type": "gray", + "item": "10" }, "path": [ - "chart", "color", - "orange", - "400" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } + "gray", + "10" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100": { - "type": "color", - "value": "#4394e5", + "pf-t--chart--global--BorderWidth--xs": { + "type": "number", + "value": 1, "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { - "type": "color", - "value": "{chart.color.blue.200}" + "type": "number", + "value": 1 }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100", + "name": "pf-t--chart--global--BorderWidth--xs", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "BorderWidth", + "subitem": "xs" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } + "global", + "BorderWidth", + "xs" ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200": { + "pf-t--chart--global--BorderWidth--sm": { + "type": "number", + "value": 2, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--chart--global--BorderWidth--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "sm" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "sm" + ] + }, + "pf-t--chart--global--BorderWidth--lg": { + "type": "number", + "value": 8, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--chart--global--BorderWidth--lg", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "lg" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "lg" + ] + }, + "pf-t--chart--global--stroke--width--xs": { + "type": "number", + "value": 1, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--chart--global--stroke--width--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke", + "subitem": "width", + "state": "xs" + }, + "path": [ + "chart", + "global", + "stroke", + "width", + "xs" + ] + }, + "pf-t--chart--global--stroke--width--sm": { + "type": "number", + "value": 2, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--chart--global--stroke--width--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke", + "subitem": "width", + "state": "sm" + }, + "path": [ + "chart", + "global", + "stroke", + "width", + "sm" + ] + }, + "pf-t--chart--global--fill--color--100": { "type": "color", - "value": "#afdc8f", + "value": "#4d4d4d", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.300}" + "value": "{color.gray.60}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200", + "name": "pf-t--chart--global--fill--color--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "fill", + "subitem": "color", + "state": "100" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "200" + "global", + "fill", + "color", + "100" ], "references": [ { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", + "value": "#4d4d4d", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.30}" + "value": "#4d4d4d" }, - "name": "pf-t--chart--color--green--300", + "name": "pf-t--color--gray--60", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "300" + "category": "color", + "type": "gray", + "item": "60" }, "path": [ - "chart", "color", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } + "gray", + "60" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300": { + "pf-t--chart--global--fill--color--200": { "type": "color", - "value": "#63bdbd", + "value": "#707070", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.200}" + "value": "{color.gray.50}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300", + "name": "pf-t--chart--global--fill--color--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "fill", + "subitem": "color", + "state": "200" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "300" + "global", + "fill", + "color", + "200" ], "references": [ { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.40}" + "value": "#707070" }, - "name": "pf-t--chart--color--teal--200", + "name": "pf-t--color--gray--50", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "200" + "category": "color", + "type": "gray", + "item": "50" }, "path": [ - "chart", "color", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } + "gray", + "50" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400": { + "pf-t--chart--global--fill--color--300": { "type": "color", - "value": "#ffcc17", + "value": "#a3a3a3", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.300}" + "value": "{color.gray.40}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400", + "name": "pf-t--chart--global--fill--color--300", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "fill", + "subitem": "color", + "state": "300" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "400" + "global", + "fill", + "color", + "300" ], "references": [ { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.30}" + "value": "#a3a3a3" }, - "name": "pf-t--chart--color--yellow--300", + "name": "pf-t--color--gray--40", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "300" + "category": "color", + "type": "gray", + "item": "40" }, "path": [ - "chart", "color", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } + "gray", + "40" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500": { + "pf-t--chart--global--fill--color--400": { "type": "color", - "value": "#f5921b", + "value": "#c7c7c7", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.200}" + "value": "{color.gray.30}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500", + "name": "pf-t--chart--global--fill--color--400", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "fill", + "subitem": "color", + "state": "400" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "500" + "global", + "fill", + "color", + "400" ], "references": [ { "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.40}" + "value": "#c7c7c7" }, - "name": "pf-t--chart--color--orange--200", + "name": "pf-t--color--gray--30", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "200" + "category": "color", + "type": "gray", + "item": "30" }, "path": [ - "chart", "color", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } + "gray", + "30" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600": { + "pf-t--chart--global--fill--color--500": { "type": "color", - "value": "#92c5f9", + "value": "#e0e0e0", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.300}" + "value": "{color.gray.20}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600", + "name": "pf-t--chart--global--fill--color--500", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "fill", + "subitem": "color", + "state": "500" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "600" + "global", + "fill", + "color", + "500" ], "references": [ { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.30}" + "value": "#e0e0e0" }, - "name": "pf-t--chart--color--blue--300", + "name": "pf-t--color--gray--20", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "300" + "category": "color", + "type": "gray", + "item": "20" }, "path": [ - "chart", "color", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } + "gray", + "20" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700": { + "pf-t--chart--global--fill--color--700": { "type": "color", - "value": "#87bb62", + "value": "#f2f2f2", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.200}" + "value": "{color.gray.10}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700", + "name": "pf-t--chart--global--fill--color--700", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "fill", + "subitem": "color", + "state": "700" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", + "global", + "fill", + "color", "700" ], "references": [ { "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.40}" + "value": "#f2f2f2" }, - "name": "pf-t--chart--color--green--200", + "name": "pf-t--color--gray--10", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "200" + "category": "color", + "type": "gray", + "item": "10" }, "path": [ - "chart", "color", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } + "gray", + "10" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800": { + "pf-t--chart--global--fill--color--900": { "type": "color", - "value": "#9ad8d8", + "value": "#ffffff", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.300}" + "value": "{color.white}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800", + "name": "pf-t--chart--global--fill--color--900", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "fill", + "subitem": "color", + "state": "900" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "800" + "global", + "fill", + "color", + "900" ], "references": [ { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.30}" + "value": "#ffffff" }, - "name": "pf-t--chart--color--teal--300", + "name": "pf-t--color--white", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "300" + "category": "color", + "type": "white" }, "path": [ - "chart", "color", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } + "white" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900": { + "pf-t--chart--global--fill--color--white": { "type": "color", - "value": "#dca614", + "value": "#ffffff", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.200}" + "value": "{color.white}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900", + "name": "pf-t--chart--global--fill--color--white", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "fill", + "subitem": "color", + "state": "white" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "900" + "global", + "fill", + "color", + "white" ], "references": [ { "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.40}" + "value": "#ffffff" }, - "name": "pf-t--chart--color--yellow--200", + "name": "pf-t--color--white", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "200" + "category": "color", + "type": "white" }, "path": [ - "chart", "color", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } + "white" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000": { + "pf-t--chart--global--warning--color--100": { "type": "color", "value": "#f8ae54", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.300}" + "value": "{color.orange.30}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000", + "name": "pf-t--chart--global--warning--color--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "warning", + "subitem": "color", + "state": "100" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1000" + "global", + "warning", + "color", + "100" ], "references": [ { "type": "color", "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.30}" + "value": "#f8ae54" }, - "name": "pf-t--chart--color--orange--300", + "name": "pf-t--color--orange--30", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "300" + "category": "color", + "type": "orange", + "item": "30" }, "path": [ - "chart", "color", "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } + "30" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100": { + "pf-t--chart--global--warning--color--200": { "type": "color", - "value": "#e0f0ff", + "value": "#ffcc17", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.500}" + "value": "{color.yellow.30}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100", + "name": "pf-t--chart--global--warning--color--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "warning", + "subitem": "color", + "state": "200" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1100" + "global", + "warning", + "color", + "200" ], "references": [ { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.10}" + "value": "#ffcc17" }, - "name": "pf-t--chart--color--blue--500", + "name": "pf-t--color--yellow--30", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "500" + "category": "color", + "type": "yellow", + "item": "30" }, "path": [ - "chart", "color", - "blue", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } + "yellow", + "30" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200": { + "pf-t--chart--global--success--color--100": { "type": "color", - "value": "#63993d", + "value": "#92c5f9", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.100}" + "value": "{color.blue.30}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200", + "name": "pf-t--chart--global--success--color--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "success", + "subitem": "color", + "state": "100" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1200" + "global", + "success", + "color", + "100" ], "references": [ { "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.50}" + "value": "#92c5f9" }, - "name": "pf-t--chart--color--green--100", + "name": "pf-t--color--blue--30", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "100" + "category": "color", + "type": "blue", + "item": "30" }, "path": [ - "chart", "color", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } + "blue", + "30" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300": { + "pf-t--chart--global--danger--color--100": { "type": "color", - "value": "#daf2f2", + "value": "#f0561d", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.500}" + "value": "{color.red-orange.50}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300", + "name": "pf-t--chart--global--danger--color--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "danger", + "subitem": "color", + "state": "100" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1300" + "global", + "danger", + "color", + "100" ], "references": [ { "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.10}" + "value": "#f0561d" }, - "name": "pf-t--chart--color--teal--500", + "name": "pf-t--color--red-orange--50", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "500" + "category": "color", + "type": "red-orange", + "item": "50" }, "path": [ - "chart", "color", - "teal", - "500" - ], - "references": [ - { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - } + "red-orange", + "50" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400": { - "type": "color", - "value": "#b98412", + "pf-t--chart--global--FontSize--xs": { + "type": "number", + "value": 12, "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { - "type": "color", - "value": "{chart.color.yellow.100}" + "type": "number", + "value": 12 }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400", + "name": "pf-t--chart--global--FontSize--xs", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "FontSize", + "subitem": "xs" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1400" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } + "global", + "FontSize", + "xs" ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500": { - "type": "color", - "value": "#ffe8cc", + "pf-t--chart--global--FontSize--sm": { + "type": "number", + "value": 14, "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { - "type": "color", - "value": "{chart.color.orange.500}" + "type": "number", + "value": 14 }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500", + "name": "pf-t--chart--global--FontSize--sm", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "FontSize", + "subitem": "sm" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1500" - ], - "references": [ - { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.10}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] - } - ] - } + "global", + "FontSize", + "sm" ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600": { - "type": "color", - "value": "#0066cc", + "pf-t--chart--global--FontSize--lg": { + "type": "number", + "value": 18, "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { - "type": "color", - "value": "{chart.color.blue.100}" + "type": "number", + "value": 18 }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600", + "name": "pf-t--chart--global--FontSize--lg", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "FontSize", + "subitem": "lg" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1600" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } + "global", + "FontSize", + "lg" ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700": { - "type": "color", - "value": "#e9f7df", + "pf-t--chart--global--FontSize--2xl": { + "type": "number", + "value": 22, "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { - "type": "color", - "value": "{chart.color.green.500}" + "type": "number", + "value": 22 }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700", + "name": "pf-t--chart--global--FontSize--2xl", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "FontSize", + "subitem": "2xl" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1700" - ], - "references": [ - { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.10}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] - } - ] - } + "global", + "FontSize", + "2xl" ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800": { - "type": "color", - "value": "#37a3a3", + "pf-t--chart--global--letter-spacing": { + "type": "string", + "value": "normal", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { - "type": "color", - "value": "{chart.color.teal.100}" + "type": "string", + "value": "normal" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800", + "name": "pf-t--chart--global--letter-spacing", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "letter-spacing" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1800" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] - } + "global", + "letter-spacing" ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900": { + "pf-t--chart--global--stroke-line-cap": { + "type": "string", + "value": "round", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "string", + "value": "round" + }, + "name": "pf-t--chart--global--stroke-line-cap", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke-line-cap" + }, + "path": [ + "chart", + "global", + "stroke-line-cap" + ] + }, + "pf-t--chart--global--label--padding": { + "type": "number", + "value": 10, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 10 + }, + "name": "pf-t--chart--global--label--padding", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "padding" + }, + "path": [ + "chart", + "global", + "label", + "padding" + ] + }, + "pf-t--chart--global--label--margin": { + "type": "number", + "value": 8, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--chart--global--label--margin", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "margin" + }, + "path": [ + "chart", + "global", + "label", + "margin" + ] + }, + "pf-t--chart--global--label--stroke": { + "width": { + "type": "number", + "value": 0, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true + }, + "type": "string", + "value": "transparent", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "width": { + "type": "number", + "value": 0, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true + }, + "type": "string", + "value": "transparent" + }, + "name": "pf-t--chart--global--label--stroke", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "stroke" + }, + "path": [ + "chart", + "global", + "label", + "stroke" + ] + }, + "pf-t--chart--global--label--text-anchor": { + "type": "string", + "value": "middle", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "string", + "value": "middle" + }, + "name": "pf-t--chart--global--label--text-anchor", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "text-anchor" + }, + "path": [ + "chart", + "global", + "label", + "text-anchor" + ] + }, + "pf-t--chart--global--label--fill": { "type": "color", - "value": "#fff4cc", + "value": "#ffffff", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.500}" + "value": "{color.white}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900", + "name": "pf-t--chart--global--label--fill", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "label", + "subitem": "fill" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1900" + "global", + "label", + "fill" ], "references": [ { "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.10}" + "value": "#ffffff" }, - "name": "pf-t--chart--color--yellow--500", + "name": "pf-t--color--white", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "500" + "category": "color", + "type": "white" }, "path": [ - "chart", "color", - "yellow", - "500" - ], - "references": [ - { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] - } + "white" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000": { - "type": "color", - "value": "#ca6c0f", + "pf-t--chart--global--layout--padding": { + "type": "number", + "value": 50, "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { - "type": "color", - "value": "{chart.color.orange.100}" + "type": "number", + "value": 50 }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000", + "name": "pf-t--chart--global--layout--padding", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "layout", + "subitem": "padding" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2000" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - } + "global", + "layout", + "padding" ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100": { + "pf-t--chart--global--layout--height": { + "type": "number", + "value": 300, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--chart--global--layout--height", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "height" + }, + "path": [ + "chart", + "global", + "layout", + "height" + ] + }, + "pf-t--chart--global--layout--width": { + "type": "number", + "value": 450, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 450 + }, + "name": "pf-t--chart--global--layout--width", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "width" + }, + "path": [ + "chart", + "global", + "layout", + "width" + ] + }, + "pf-t--chart--global--stroke-line-join": { + "type": "string", + "value": "round", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "string", + "value": "round" + }, + "name": "pf-t--chart--global--stroke-line-join", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke-line-join" + }, + "path": [ + "chart", + "global", + "stroke-line-join" + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--100": { "type": "color", - "value": "#b9dafc", + "value": "#92c5f9", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.400}" + "value": "{chart.color.blue.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100", + "name": "pf-t--chart--theme--colorscales--blue--colorscale--100", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-ordered", + "subitem": "blue", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-ordered", + "blue", "colorscale", - "2100" + "100" ], "references": [ { "type": "color", - "value": "#b9dafc", + "value": "#92c5f9", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.20}" + "value": "{color.blue.30}" }, - "name": "pf-t--chart--color--blue--400", + "name": "pf-t--chart--color--blue--300", "attributes": { "category": "chart", "type": "color", "item": "blue", - "subitem": "400" + "subitem": "300" }, "path": [ "chart", "color", "blue", - "400" + "300" ], "references": [ { "type": "color", - "value": "#b9dafc", + "value": "#92c5f9", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b9dafc" + "value": "#92c5f9" }, - "name": "pf-t--color--blue--20", + "name": "pf-t--color--blue--30", "attributes": { "category": "color", "type": "blue", - "item": "20" + "item": "30" }, "path": [ "color", "blue", - "20" + "30" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200": { + "pf-t--chart--theme--colorscales--blue--colorscale--200": { "type": "color", - "value": "#d1f1bb", + "value": "#0066cc", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.400}" + "value": "{chart.color.blue.100}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200", + "name": "pf-t--chart--theme--colorscales--blue--colorscale--200", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-ordered", + "subitem": "blue", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-ordered", + "blue", "colorscale", - "2200" + "200" ], "references": [ { "type": "color", - "value": "#d1f1bb", + "value": "#0066cc", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.20}" + "value": "{color.blue.50}" }, - "name": "pf-t--chart--color--green--400", + "name": "pf-t--chart--color--blue--100", "attributes": { "category": "chart", "type": "color", - "item": "green", - "subitem": "400" + "item": "blue", + "subitem": "100" }, "path": [ "chart", "color", - "green", - "400" + "blue", + "100" ], "references": [ { "type": "color", - "value": "#d1f1bb", + "value": "#0066cc", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#d1f1bb" + "value": "#0066cc" }, - "name": "pf-t--color--green--20", + "name": "pf-t--color--blue--50", "attributes": { "category": "color", - "type": "green", - "item": "20" + "type": "blue", + "item": "50" }, "path": [ "color", - "green", - "20" + "blue", + "50" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300": { + "pf-t--chart--theme--colorscales--blue--colorscale--300": { "type": "color", - "value": "#b9e5e5", + "value": "#e0f0ff", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.400}" + "value": "{chart.color.blue.500}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300", + "name": "pf-t--chart--theme--colorscales--blue--colorscale--300", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-ordered", + "subitem": "blue", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-ordered", + "blue", "colorscale", - "2300" + "300" ], "references": [ { "type": "color", - "value": "#b9e5e5", + "value": "#e0f0ff", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.20}" + "value": "{color.blue.10}" }, - "name": "pf-t--chart--color--teal--400", + "name": "pf-t--chart--color--blue--500", "attributes": { "category": "chart", "type": "color", - "item": "teal", - "subitem": "400" + "item": "blue", + "subitem": "500" }, "path": [ "chart", "color", - "teal", - "400" + "blue", + "500" ], "references": [ { "type": "color", - "value": "#b9e5e5", + "value": "#e0f0ff", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b9e5e5" + "value": "#e0f0ff" }, - "name": "pf-t--color--teal--20", + "name": "pf-t--color--blue--10", "attributes": { "category": "color", - "type": "teal", - "item": "20" + "type": "blue", + "item": "10" }, "path": [ "color", - "teal", - "20" + "blue", + "10" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400": { + "pf-t--chart--theme--colorscales--blue--colorscale--400": { "type": "color", - "value": "#ffe072", + "value": "#4394e5", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.400}" + "value": "{chart.color.blue.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400", + "name": "pf-t--chart--theme--colorscales--blue--colorscale--400", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-ordered", + "subitem": "blue", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-ordered", + "blue", "colorscale", - "2400" + "400" ], "references": [ { "type": "color", - "value": "#ffe072", + "value": "#4394e5", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.20}" + "value": "{color.blue.40}" }, - "name": "pf-t--chart--color--yellow--400", + "name": "pf-t--chart--color--blue--200", "attributes": { "category": "chart", "type": "color", - "item": "yellow", - "subitem": "400" + "item": "blue", + "subitem": "200" }, "path": [ "chart", "color", - "yellow", - "400" + "blue", + "200" ], "references": [ { "type": "color", - "value": "#ffe072", + "value": "#4394e5", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#ffe072" + "value": "#4394e5" }, - "name": "pf-t--color--yellow--20", + "name": "pf-t--color--blue--40", "attributes": { "category": "color", - "type": "yellow", - "item": "20" + "type": "blue", + "item": "40" }, "path": [ "color", - "yellow", - "20" + "blue", + "40" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500": { + "pf-t--chart--theme--colorscales--blue--colorscale--500": { "type": "color", - "value": "#fccb8f", + "value": "#b9dafc", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.400}" + "value": "{chart.color.blue.400}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500", + "name": "pf-t--chart--theme--colorscales--blue--colorscale--500", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-ordered", + "subitem": "blue", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-ordered", + "blue", "colorscale", - "2500" + "500" ], "references": [ { "type": "color", - "value": "#fccb8f", + "value": "#b9dafc", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.20}" + "value": "{color.blue.20}" }, - "name": "pf-t--chart--color--orange--400", + "name": "pf-t--chart--color--blue--400", "attributes": { "category": "chart", "type": "color", - "item": "orange", + "item": "blue", "subitem": "400" }, "path": [ "chart", "color", - "orange", + "blue", "400" ], "references": [ { "type": "color", - "value": "#fccb8f", + "value": "#b9dafc", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#fccb8f" + "value": "#b9dafc" }, - "name": "pf-t--color--orange--20", + "name": "pf-t--color--blue--20", "attributes": { "category": "color", - "type": "orange", + "type": "blue", "item": "20" }, "path": [ "color", - "orange", + "blue", "20" ] } @@ -54129,295 +51485,295 @@ } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100": { + "pf-t--chart--theme--colorscales--teal--colorscale--100": { "type": "color", - "value": "#4394e5", + "value": "#9ad8d8", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.200}" + "value": "{chart.color.teal.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100", + "name": "pf-t--chart--theme--colorscales--teal--colorscale--100", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "teal", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "teal", "colorscale", "100" ], "references": [ { "type": "color", - "value": "#4394e5", + "value": "#9ad8d8", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.40}" + "value": "{color.teal.30}" }, - "name": "pf-t--chart--color--blue--200", + "name": "pf-t--chart--color--teal--300", "attributes": { "category": "chart", "type": "color", - "item": "blue", - "subitem": "200" + "item": "teal", + "subitem": "300" }, "path": [ "chart", "color", - "blue", - "200" + "teal", + "300" ], "references": [ { "type": "color", - "value": "#4394e5", + "value": "#9ad8d8", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#4394e5" + "value": "#9ad8d8" }, - "name": "pf-t--color--blue--40", + "name": "pf-t--color--teal--30", "attributes": { "category": "color", - "type": "blue", - "item": "40" + "type": "teal", + "item": "30" }, "path": [ "color", - "blue", - "40" + "teal", + "30" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200": { + "pf-t--chart--theme--colorscales--teal--colorscale--200": { "type": "color", - "value": "#ffcc17", + "value": "#37a3a3", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.300}" + "value": "{chart.color.teal.100}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200", + "name": "pf-t--chart--theme--colorscales--teal--colorscale--200", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "teal", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "teal", "colorscale", "200" ], "references": [ { "type": "color", - "value": "#ffcc17", + "value": "#37a3a3", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.30}" + "value": "{color.teal.50}" }, - "name": "pf-t--chart--color--yellow--300", + "name": "pf-t--chart--color--teal--100", "attributes": { "category": "chart", "type": "color", - "item": "yellow", - "subitem": "300" + "item": "teal", + "subitem": "100" }, "path": [ "chart", "color", - "yellow", - "300" + "teal", + "100" ], "references": [ { "type": "color", - "value": "#ffcc17", + "value": "#37a3a3", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#ffcc17" + "value": "#37a3a3" }, - "name": "pf-t--color--yellow--30", + "name": "pf-t--color--teal--50", "attributes": { "category": "color", - "type": "yellow", - "item": "30" + "type": "teal", + "item": "50" }, "path": [ "color", - "yellow", - "30" + "teal", + "50" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300": { + "pf-t--chart--theme--colorscales--teal--colorscale--300": { "type": "color", - "value": "#87bb62", + "value": "#daf2f2", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.200}" + "value": "{chart.color.teal.500}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300", + "name": "pf-t--chart--theme--colorscales--teal--colorscale--300", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "teal", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "teal", "colorscale", "300" ], "references": [ { "type": "color", - "value": "#87bb62", + "value": "#daf2f2", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.40}" + "value": "{color.teal.10}" }, - "name": "pf-t--chart--color--green--200", + "name": "pf-t--chart--color--teal--500", "attributes": { "category": "chart", "type": "color", - "item": "green", - "subitem": "200" + "item": "teal", + "subitem": "500" }, "path": [ "chart", "color", - "green", - "200" + "teal", + "500" ], "references": [ { "type": "color", - "value": "#87bb62", + "value": "#daf2f2", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#87bb62" + "value": "#daf2f2" }, - "name": "pf-t--color--green--40", + "name": "pf-t--color--teal--10", "attributes": { "category": "color", - "type": "green", - "item": "40" + "type": "teal", + "item": "10" }, "path": [ "color", - "green", - "40" + "teal", + "10" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400": { + "pf-t--chart--theme--colorscales--teal--colorscale--400": { "type": "color", - "value": "#876fd4", + "value": "#63bdbd", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.300}" + "value": "{chart.color.teal.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400", + "name": "pf-t--chart--theme--colorscales--teal--colorscale--400", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "teal", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "teal", "colorscale", "400" ], "references": [ { "type": "color", - "value": "#876fd4", + "value": "#63bdbd", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.40}" + "value": "{color.teal.40}" }, - "name": "pf-t--chart--color--purple--300", + "name": "pf-t--chart--color--teal--200", "attributes": { "category": "chart", "type": "color", - "item": "purple", - "subitem": "300" + "item": "teal", + "subitem": "200" }, "path": [ "chart", "color", - "purple", - "300" + "teal", + "200" ], "references": [ { "type": "color", - "value": "#876fd4", + "value": "#63bdbd", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#876fd4" + "value": "#63bdbd" }, - "name": "pf-t--color--purple--40", + "name": "pf-t--color--teal--40", "attributes": { "category": "color", - "type": "purple", + "type": "teal", "item": "40" }, "path": [ "color", - "purple", + "teal", "40" ] } @@ -54425,147 +51781,147 @@ } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500": { + "pf-t--chart--theme--colorscales--teal--colorscale--500": { "type": "color", - "value": "#f5921b", + "value": "#b9e5e5", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.200}" + "value": "{chart.color.teal.400}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500", + "name": "pf-t--chart--theme--colorscales--teal--colorscale--500", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "teal", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "teal", "colorscale", "500" ], "references": [ { "type": "color", - "value": "#f5921b", + "value": "#b9e5e5", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.40}" + "value": "{color.teal.20}" }, - "name": "pf-t--chart--color--orange--200", + "name": "pf-t--chart--color--teal--400", "attributes": { "category": "chart", "type": "color", - "item": "orange", - "subitem": "200" + "item": "teal", + "subitem": "400" }, "path": [ "chart", "color", - "orange", - "200" + "teal", + "400" ], "references": [ { "type": "color", - "value": "#f5921b", + "value": "#b9e5e5", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#f5921b" + "value": "#b9e5e5" }, - "name": "pf-t--color--orange--40", + "name": "pf-t--color--teal--20", "attributes": { "category": "color", - "type": "orange", - "item": "40" + "type": "teal", + "item": "20" }, "path": [ "color", - "orange", - "40" + "teal", + "20" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600": { + "pf-t--chart--theme--colorscales--yellow--colorscale--100": { "type": "color", - "value": "#9ad8d8", + "value": "#ffcc17", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.300}" + "value": "{chart.color.yellow.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600", + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--100", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "yellow", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "yellow", "colorscale", - "600" + "100" ], "references": [ { "type": "color", - "value": "#9ad8d8", + "value": "#ffcc17", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.30}" + "value": "{color.yellow.30}" }, - "name": "pf-t--chart--color--teal--300", + "name": "pf-t--chart--color--yellow--300", "attributes": { "category": "chart", "type": "color", - "item": "teal", + "item": "yellow", "subitem": "300" }, "path": [ "chart", "color", - "teal", + "yellow", "300" ], "references": [ { "type": "color", - "value": "#9ad8d8", + "value": "#ffcc17", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#9ad8d8" + "value": "#ffcc17" }, - "name": "pf-t--color--teal--30", + "name": "pf-t--color--yellow--30", "attributes": { "category": "color", - "type": "teal", + "type": "yellow", "item": "30" }, "path": [ "color", - "teal", + "yellow", "30" ] } @@ -54573,155 +51929,155 @@ } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700": { + "pf-t--chart--theme--colorscales--yellow--colorscale--200": { "type": "color", - "value": "#a3a3a3", + "value": "#b98412", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.200}" + "value": "{chart.color.yellow.100}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700", + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--200", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "yellow", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "yellow", "colorscale", - "700" + "200" ], "references": [ { "type": "color", - "value": "#a3a3a3", + "value": "#b98412", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.40}" + "value": "{color.yellow.50}" }, - "name": "pf-t--chart--color--black--200", + "name": "pf-t--chart--color--yellow--100", "attributes": { "category": "chart", "type": "color", - "item": "black", - "subitem": "200" + "item": "yellow", + "subitem": "100" }, "path": [ "chart", "color", - "black", - "200" + "yellow", + "100" ], "references": [ { "type": "color", - "value": "#a3a3a3", + "value": "#b98412", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#a3a3a3" + "value": "#b98412" }, - "name": "pf-t--color--gray--40", + "name": "pf-t--color--yellow--50", "attributes": { "category": "color", - "type": "gray", - "item": "40" + "type": "yellow", + "item": "50" }, "path": [ "color", - "gray", - "40" + "yellow", + "50" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800": { + "pf-t--chart--theme--colorscales--yellow--colorscale--300": { "type": "color", - "value": "#92c5f9", + "value": "#fff4cc", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.300}" + "value": "{chart.color.yellow.500}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800", + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--300", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "yellow", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "yellow", "colorscale", - "800" + "300" ], "references": [ { "type": "color", - "value": "#92c5f9", + "value": "#fff4cc", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.30}" + "value": "{color.yellow.10}" }, - "name": "pf-t--chart--color--blue--300", + "name": "pf-t--chart--color--yellow--500", "attributes": { "category": "chart", "type": "color", - "item": "blue", - "subitem": "300" + "item": "yellow", + "subitem": "500" }, "path": [ "chart", "color", - "blue", - "300" + "yellow", + "500" ], "references": [ { "type": "color", - "value": "#92c5f9", + "value": "#fff4cc", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#92c5f9" + "value": "#fff4cc" }, - "name": "pf-t--color--blue--30", + "name": "pf-t--color--yellow--10", "attributes": { "category": "color", - "type": "blue", - "item": "30" + "type": "yellow", + "item": "10" }, "path": [ "color", - "blue", - "30" + "yellow", + "10" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900": { + "pf-t--chart--theme--colorscales--yellow--colorscale--400": { "type": "color", "value": "#dca614", "filePath": "tokens/dark/charts.dark.json", @@ -54730,21 +52086,21 @@ "type": "color", "value": "{chart.color.yellow.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900", + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--400", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "yellow", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "yellow", "colorscale", - "900" + "400" ], "references": [ { @@ -54795,525 +52151,525 @@ } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000": { + "pf-t--chart--theme--colorscales--yellow--colorscale--500": { "type": "color", - "value": "#afdc8f", + "value": "#ffe072", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.300}" + "value": "{chart.color.yellow.400}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000", + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--500", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "yellow", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "yellow", "colorscale", - "1000" + "500" ], "references": [ { "type": "color", - "value": "#afdc8f", + "value": "#ffe072", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.30}" + "value": "{color.yellow.20}" }, - "name": "pf-t--chart--color--green--300", + "name": "pf-t--chart--color--yellow--400", "attributes": { "category": "chart", "type": "color", - "item": "green", - "subitem": "300" + "item": "yellow", + "subitem": "400" }, "path": [ "chart", "color", - "green", - "300" + "yellow", + "400" ], "references": [ { "type": "color", - "value": "#afdc8f", + "value": "#ffe072", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#afdc8f" + "value": "#ffe072" }, - "name": "pf-t--color--green--30", + "name": "pf-t--color--yellow--20", "attributes": { "category": "color", - "type": "green", - "item": "30" + "type": "yellow", + "item": "20" }, "path": [ "color", - "green", - "30" + "yellow", + "20" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100": { + "pf-t--chart--theme--colorscales--gray--colorscale--100": { "type": "color", - "value": "#5e40be", + "value": "#c7c7c7", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.200}" + "value": "{chart.color.black.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100", + "name": "pf-t--chart--theme--colorscales--gray--colorscale--100", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "gray", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "gray", "colorscale", - "1100" + "100" ], "references": [ { "type": "color", - "value": "#5e40be", + "value": "#c7c7c7", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.50}" + "value": "{color.gray.30}" }, - "name": "pf-t--chart--color--purple--200", + "name": "pf-t--chart--color--black--300", "attributes": { "category": "chart", "type": "color", - "item": "purple", - "subitem": "200" + "item": "black", + "subitem": "300" }, "path": [ "chart", "color", - "purple", - "200" + "black", + "300" ], "references": [ { "type": "color", - "value": "#5e40be", + "value": "#c7c7c7", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#5e40be" + "value": "#c7c7c7" }, - "name": "pf-t--color--purple--50", + "name": "pf-t--color--gray--30", "attributes": { "category": "color", - "type": "purple", - "item": "50" + "type": "gray", + "item": "30" }, "path": [ "color", - "purple", - "50" + "gray", + "30" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200": { + "pf-t--chart--theme--colorscales--gray--colorscale--200": { "type": "color", - "value": "#f8ae54", + "value": "#707070", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.300}" + "value": "{chart.color.black.100}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200", + "name": "pf-t--chart--theme--colorscales--gray--colorscale--200", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "gray", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "gray", "colorscale", - "1200" + "200" ], "references": [ { "type": "color", - "value": "#f8ae54", + "value": "#707070", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.30}" + "value": "{color.gray.50}" }, - "name": "pf-t--chart--color--orange--300", + "name": "pf-t--chart--color--black--100", "attributes": { "category": "chart", "type": "color", - "item": "orange", - "subitem": "300" + "item": "black", + "subitem": "100" }, "path": [ "chart", "color", - "orange", - "300" + "black", + "100" ], "references": [ { "type": "color", - "value": "#f8ae54", + "value": "#707070", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#f8ae54" + "value": "#707070" }, - "name": "pf-t--color--orange--30", + "name": "pf-t--color--gray--50", "attributes": { "category": "color", - "type": "orange", - "item": "30" + "type": "gray", + "item": "50" }, "path": [ "color", - "orange", - "30" + "gray", + "50" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300": { + "pf-t--chart--theme--colorscales--gray--colorscale--300": { "type": "color", - "value": "#63bdbd", + "value": "#f2f2f2", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.200}" + "value": "{chart.color.black.500}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300", + "name": "pf-t--chart--theme--colorscales--gray--colorscale--300", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "gray", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "gray", "colorscale", - "1300" + "300" ], "references": [ { "type": "color", - "value": "#63bdbd", + "value": "#f2f2f2", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.40}" + "value": "{color.gray.10}" }, - "name": "pf-t--chart--color--teal--200", + "name": "pf-t--chart--color--black--500", "attributes": { "category": "chart", "type": "color", - "item": "teal", - "subitem": "200" + "item": "black", + "subitem": "500" }, "path": [ "chart", "color", - "teal", - "200" + "black", + "500" ], "references": [ { "type": "color", - "value": "#63bdbd", + "value": "#f2f2f2", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#63bdbd" + "value": "#f2f2f2" }, - "name": "pf-t--color--teal--40", + "name": "pf-t--color--gray--10", "attributes": { "category": "color", - "type": "teal", - "item": "40" + "type": "gray", + "item": "10" }, "path": [ "color", - "teal", - "40" + "gray", + "10" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400": { + "pf-t--chart--theme--colorscales--gray--colorscale--400": { "type": "color", - "value": "#c7c7c7", + "value": "#a3a3a3", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.300}" + "value": "{chart.color.black.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400", + "name": "pf-t--chart--theme--colorscales--gray--colorscale--400", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "gray", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "gray", "colorscale", - "1400" + "400" ], "references": [ { "type": "color", - "value": "#c7c7c7", + "value": "#a3a3a3", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.30}" + "value": "{color.gray.40}" }, - "name": "pf-t--chart--color--black--300", + "name": "pf-t--chart--color--black--200", "attributes": { "category": "chart", "type": "color", "item": "black", - "subitem": "300" + "subitem": "200" }, "path": [ "chart", "color", "black", - "300" + "200" ], "references": [ { "type": "color", - "value": "#c7c7c7", + "value": "#a3a3a3", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#c7c7c7" + "value": "#a3a3a3" }, - "name": "pf-t--color--gray--30", + "name": "pf-t--color--gray--40", "attributes": { "category": "color", "type": "gray", - "item": "30" + "item": "40" }, "path": [ "color", "gray", - "30" + "40" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500": { + "pf-t--chart--theme--colorscales--gray--colorscale--500": { "type": "color", - "value": "#0066cc", + "value": "#e0e0e0", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.100}" + "value": "{chart.color.black.400}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500", + "name": "pf-t--chart--theme--colorscales--gray--colorscale--500", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "gray", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "gray", "colorscale", - "1500" + "500" ], "references": [ { "type": "color", - "value": "#0066cc", + "value": "#e0e0e0", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.50}" + "value": "{color.gray.20}" }, - "name": "pf-t--chart--color--blue--100", + "name": "pf-t--chart--color--black--400", "attributes": { "category": "chart", "type": "color", - "item": "blue", - "subitem": "100" + "item": "black", + "subitem": "400" }, "path": [ "chart", "color", - "blue", - "100" + "black", + "400" ], "references": [ { "type": "color", - "value": "#0066cc", + "value": "#e0e0e0", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#0066cc" + "value": "#e0e0e0" }, - "name": "pf-t--color--blue--50", + "name": "pf-t--color--gray--20", "attributes": { "category": "color", - "type": "blue", - "item": "50" + "type": "gray", + "item": "20" }, "path": [ "color", - "blue", - "50" + "gray", + "20" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600": { + "pf-t--chart--theme--colorscales--green--colorscale--100": { "type": "color", - "value": "#fff4cc", + "value": "#afdc8f", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.500}" + "value": "{chart.color.green.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600", + "name": "pf-t--chart--theme--colorscales--green--colorscale--100", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "green", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "green", "colorscale", - "1600" + "100" ], "references": [ { "type": "color", - "value": "#fff4cc", + "value": "#afdc8f", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.10}" + "value": "{color.green.30}" }, - "name": "pf-t--chart--color--yellow--500", + "name": "pf-t--chart--color--green--300", "attributes": { "category": "chart", "type": "color", - "item": "yellow", - "subitem": "500" + "item": "green", + "subitem": "300" }, "path": [ "chart", "color", - "yellow", - "500" + "green", + "300" ], "references": [ { "type": "color", - "value": "#fff4cc", + "value": "#afdc8f", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#fff4cc" + "value": "#afdc8f" }, - "name": "pf-t--color--yellow--10", + "name": "pf-t--color--green--30", "attributes": { "category": "color", - "type": "yellow", - "item": "10" + "type": "green", + "item": "30" }, "path": [ "color", - "yellow", - "10" + "green", + "30" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700": { + "pf-t--chart--theme--colorscales--green--colorscale--200": { "type": "color", "value": "#63993d", "filePath": "tokens/dark/charts.dark.json", @@ -55322,21 +52678,21 @@ "type": "color", "value": "{chart.color.green.100}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700", + "name": "pf-t--chart--theme--colorscales--green--colorscale--200", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "green", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "green", "colorscale", - "1700" + "200" ], "references": [ { @@ -55387,739 +52743,739 @@ } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800": { + "pf-t--chart--theme--colorscales--green--colorscale--300": { "type": "color", - "value": "#d0c5f4", + "value": "#e9f7df", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.500}" + "value": "{chart.color.green.500}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800", + "name": "pf-t--chart--theme--colorscales--green--colorscale--300", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "green", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "green", "colorscale", - "1800" + "300" ], "references": [ { "type": "color", - "value": "#d0c5f4", + "value": "#e9f7df", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.20}" + "value": "{color.green.10}" }, - "name": "pf-t--chart--color--purple--500", + "name": "pf-t--chart--color--green--500", "attributes": { "category": "chart", "type": "color", - "item": "purple", + "item": "green", "subitem": "500" }, "path": [ "chart", "color", - "purple", + "green", "500" ], "references": [ { "type": "color", - "value": "#d0c5f4", + "value": "#e9f7df", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#d0c5f4" + "value": "#e9f7df" }, - "name": "pf-t--color--purple--20", + "name": "pf-t--color--green--10", "attributes": { "category": "color", - "type": "purple", - "item": "20" + "type": "green", + "item": "10" }, "path": [ "color", - "purple", - "20" + "green", + "10" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900": { + "pf-t--chart--theme--colorscales--green--colorscale--400": { "type": "color", - "value": "#ca6c0f", + "value": "#87bb62", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.100}" + "value": "{chart.color.green.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900", + "name": "pf-t--chart--theme--colorscales--green--colorscale--400", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "green", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "green", "colorscale", - "1900" + "400" ], "references": [ { "type": "color", - "value": "#ca6c0f", + "value": "#87bb62", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.50}" + "value": "{color.green.40}" }, - "name": "pf-t--chart--color--orange--100", + "name": "pf-t--chart--color--green--200", "attributes": { "category": "chart", "type": "color", - "item": "orange", - "subitem": "100" + "item": "green", + "subitem": "200" }, "path": [ "chart", "color", - "orange", - "100" + "green", + "200" ], "references": [ { "type": "color", - "value": "#ca6c0f", + "value": "#87bb62", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#ca6c0f" + "value": "#87bb62" }, - "name": "pf-t--color--orange--50", + "name": "pf-t--color--green--40", "attributes": { "category": "color", - "type": "orange", - "item": "50" + "type": "green", + "item": "40" }, "path": [ "color", - "orange", - "50" + "green", + "40" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000": { + "pf-t--chart--theme--colorscales--green--colorscale--500": { "type": "color", - "value": "#daf2f2", + "value": "#d1f1bb", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.500}" + "value": "{chart.color.green.400}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000", + "name": "pf-t--chart--theme--colorscales--green--colorscale--500", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "green", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "green", "colorscale", - "2000" + "500" ], "references": [ { "type": "color", - "value": "#daf2f2", + "value": "#d1f1bb", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.10}" + "value": "{color.green.20}" }, - "name": "pf-t--chart--color--teal--500", + "name": "pf-t--chart--color--green--400", "attributes": { "category": "chart", "type": "color", - "item": "teal", - "subitem": "500" + "item": "green", + "subitem": "400" }, "path": [ "chart", "color", - "teal", - "500" + "green", + "400" ], "references": [ { "type": "color", - "value": "#daf2f2", + "value": "#d1f1bb", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#daf2f2" + "value": "#d1f1bb" }, - "name": "pf-t--color--teal--10", + "name": "pf-t--color--green--20", "attributes": { "category": "color", - "type": "teal", - "item": "10" + "type": "green", + "item": "20" }, "path": [ "color", - "teal", - "10" + "green", + "20" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100": { + "pf-t--chart--theme--colorscales--purple--colorscale--100": { "type": "color", - "value": "#707070", + "value": "#876fd4", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.100}" + "value": "{chart.color.purple.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100", + "name": "pf-t--chart--theme--colorscales--purple--colorscale--100", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "purple", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "purple", "colorscale", - "2100" + "100" ], "references": [ { "type": "color", - "value": "#707070", + "value": "#876fd4", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.50}" + "value": "{color.purple.40}" }, - "name": "pf-t--chart--color--black--100", + "name": "pf-t--chart--color--purple--300", "attributes": { "category": "chart", "type": "color", - "item": "black", - "subitem": "100" + "item": "purple", + "subitem": "300" }, "path": [ "chart", "color", - "black", - "100" + "purple", + "300" ], "references": [ { "type": "color", - "value": "#707070", + "value": "#876fd4", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#707070" + "value": "#876fd4" }, - "name": "pf-t--color--gray--50", + "name": "pf-t--color--purple--40", "attributes": { "category": "color", - "type": "gray", - "item": "50" + "type": "purple", + "item": "40" }, "path": [ "color", - "gray", - "50" + "purple", + "40" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200": { + "pf-t--chart--theme--colorscales--purple--colorscale--200": { "type": "color", - "value": "#e0f0ff", + "value": "#3d2785", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.500}" + "value": "{chart.color.purple.100}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200", + "name": "pf-t--chart--theme--colorscales--purple--colorscale--200", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "purple", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "purple", "colorscale", - "2200" + "200" ], "references": [ { "type": "color", - "value": "#e0f0ff", + "value": "#3d2785", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.10}" + "value": "{color.purple.60}" }, - "name": "pf-t--chart--color--blue--500", + "name": "pf-t--chart--color--purple--100", "attributes": { "category": "chart", "type": "color", - "item": "blue", - "subitem": "500" + "item": "purple", + "subitem": "100" }, "path": [ "chart", "color", - "blue", - "500" + "purple", + "100" ], "references": [ { "type": "color", - "value": "#e0f0ff", + "value": "#3d2785", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#e0f0ff" + "value": "#3d2785" }, - "name": "pf-t--color--blue--10", + "name": "pf-t--color--purple--60", "attributes": { "category": "color", - "type": "blue", - "item": "10" + "type": "purple", + "item": "60" }, "path": [ "color", - "blue", - "10" + "purple", + "60" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300": { + "pf-t--chart--theme--colorscales--purple--colorscale--300": { "type": "color", - "value": "#b98412", + "value": "#d0c5f4", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.100}" + "value": "{chart.color.purple.500}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300", + "name": "pf-t--chart--theme--colorscales--purple--colorscale--300", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "purple", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "purple", "colorscale", - "2300" + "300" ], "references": [ { "type": "color", - "value": "#b98412", + "value": "#d0c5f4", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.50}" + "value": "{color.purple.20}" }, - "name": "pf-t--chart--color--yellow--100", + "name": "pf-t--chart--color--purple--500", "attributes": { "category": "chart", "type": "color", - "item": "yellow", - "subitem": "100" + "item": "purple", + "subitem": "500" }, "path": [ "chart", "color", - "yellow", - "100" + "purple", + "500" ], "references": [ { "type": "color", - "value": "#b98412", + "value": "#d0c5f4", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b98412" + "value": "#d0c5f4" }, - "name": "pf-t--color--yellow--50", + "name": "pf-t--color--purple--20", "attributes": { "category": "color", - "type": "yellow", - "item": "50" + "type": "purple", + "item": "20" }, "path": [ "color", - "yellow", - "50" + "purple", + "20" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400": { + "pf-t--chart--theme--colorscales--purple--colorscale--400": { "type": "color", - "value": "#e9f7df", + "value": "#5e40be", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.500}" + "value": "{chart.color.purple.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400", + "name": "pf-t--chart--theme--colorscales--purple--colorscale--400", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "purple", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "purple", "colorscale", - "2400" + "400" ], "references": [ { "type": "color", - "value": "#e9f7df", + "value": "#5e40be", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.10}" + "value": "{color.purple.50}" }, - "name": "pf-t--chart--color--green--500", + "name": "pf-t--chart--color--purple--200", "attributes": { "category": "chart", "type": "color", - "item": "green", - "subitem": "500" + "item": "purple", + "subitem": "200" }, "path": [ "chart", "color", - "green", - "500" + "purple", + "200" ], "references": [ { "type": "color", - "value": "#e9f7df", + "value": "#5e40be", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#e9f7df" + "value": "#5e40be" }, - "name": "pf-t--color--green--10", + "name": "pf-t--color--purple--50", "attributes": { "category": "color", - "type": "green", - "item": "10" + "type": "purple", + "item": "50" }, "path": [ "color", - "green", - "10" + "purple", + "50" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500": { + "pf-t--chart--theme--colorscales--purple--colorscale--500": { "type": "color", - "value": "#3d2785", + "value": "#b6a6e9", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.100}" + "value": "{chart.color.purple.400}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500", + "name": "pf-t--chart--theme--colorscales--purple--colorscale--500", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "purple", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "purple", "colorscale", - "2500" + "500" ], "references": [ { "type": "color", - "value": "#3d2785", + "value": "#b6a6e9", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.60}" + "value": "{color.purple.30}" }, - "name": "pf-t--chart--color--purple--100", + "name": "pf-t--chart--color--purple--400", "attributes": { "category": "chart", "type": "color", "item": "purple", - "subitem": "100" + "subitem": "400" }, "path": [ "chart", "color", "purple", - "100" + "400" ], "references": [ { "type": "color", - "value": "#3d2785", + "value": "#b6a6e9", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#3d2785" + "value": "#b6a6e9" }, - "name": "pf-t--color--purple--60", + "name": "pf-t--color--purple--30", "attributes": { "category": "color", "type": "purple", - "item": "60" + "item": "30" }, "path": [ "color", "purple", - "60" + "30" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600": { + "pf-t--chart--theme--colorscales--orange--colorscale--100": { "type": "color", - "value": "#ffe8cc", + "value": "#f8ae54", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.500}" + "value": "{chart.color.orange.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600", + "name": "pf-t--chart--theme--colorscales--orange--colorscale--100", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "orange", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "orange", "colorscale", - "2600" + "100" ], "references": [ { "type": "color", - "value": "#ffe8cc", + "value": "#f8ae54", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.10}" + "value": "{color.orange.30}" }, - "name": "pf-t--chart--color--orange--500", + "name": "pf-t--chart--color--orange--300", "attributes": { "category": "chart", "type": "color", "item": "orange", - "subitem": "500" + "subitem": "300" }, "path": [ "chart", "color", "orange", - "500" + "300" ], "references": [ { "type": "color", - "value": "#ffe8cc", + "value": "#f8ae54", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#ffe8cc" + "value": "#f8ae54" }, - "name": "pf-t--color--orange--10", + "name": "pf-t--color--orange--30", "attributes": { "category": "color", "type": "orange", - "item": "10" + "item": "30" }, "path": [ "color", "orange", - "10" + "30" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700": { + "pf-t--chart--theme--colorscales--orange--colorscale--200": { "type": "color", - "value": "#37a3a3", + "value": "#ca6c0f", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.100}" + "value": "{chart.color.orange.100}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700", + "name": "pf-t--chart--theme--colorscales--orange--colorscale--200", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "orange", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "orange", "colorscale", - "2700" + "200" ], "references": [ { "type": "color", - "value": "#37a3a3", + "value": "#ca6c0f", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.50}" + "value": "{color.orange.50}" }, - "name": "pf-t--chart--color--teal--100", + "name": "pf-t--chart--color--orange--100", "attributes": { "category": "chart", "type": "color", - "item": "teal", + "item": "orange", "subitem": "100" }, "path": [ "chart", "color", - "teal", + "orange", "100" ], "references": [ { "type": "color", - "value": "#37a3a3", + "value": "#ca6c0f", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#37a3a3" + "value": "#ca6c0f" }, - "name": "pf-t--color--teal--50", + "name": "pf-t--color--orange--50", "attributes": { "category": "color", - "type": "teal", + "type": "orange", "item": "50" }, "path": [ "color", - "teal", + "orange", "50" ] } @@ -56127,73 +53483,73 @@ } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800": { + "pf-t--chart--theme--colorscales--orange--colorscale--300": { "type": "color", - "value": "#f2f2f2", + "value": "#ffe8cc", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.500}" + "value": "{chart.color.orange.500}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800", + "name": "pf-t--chart--theme--colorscales--orange--colorscale--300", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "orange", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "orange", "colorscale", - "2800" + "300" ], "references": [ { "type": "color", - "value": "#f2f2f2", + "value": "#ffe8cc", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.10}" + "value": "{color.orange.10}" }, - "name": "pf-t--chart--color--black--500", + "name": "pf-t--chart--color--orange--500", "attributes": { "category": "chart", "type": "color", - "item": "black", + "item": "orange", "subitem": "500" }, "path": [ "chart", "color", - "black", + "orange", "500" ], "references": [ { "type": "color", - "value": "#f2f2f2", + "value": "#ffe8cc", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#f2f2f2" + "value": "#ffe8cc" }, - "name": "pf-t--color--gray--10", + "name": "pf-t--color--orange--10", "attributes": { "category": "color", - "type": "gray", + "type": "orange", "item": "10" }, "path": [ "color", - "gray", + "orange", "10" ] } @@ -56201,147 +53557,147 @@ } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900": { + "pf-t--chart--theme--colorscales--orange--colorscale--400": { "type": "color", - "value": "#b9dafc", + "value": "#f5921b", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.400}" + "value": "{chart.color.orange.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900", + "name": "pf-t--chart--theme--colorscales--orange--colorscale--400", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "orange", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "orange", "colorscale", - "2900" + "400" ], "references": [ { "type": "color", - "value": "#b9dafc", + "value": "#f5921b", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.20}" + "value": "{color.orange.40}" }, - "name": "pf-t--chart--color--blue--400", + "name": "pf-t--chart--color--orange--200", "attributes": { "category": "chart", "type": "color", - "item": "blue", - "subitem": "400" + "item": "orange", + "subitem": "200" }, "path": [ "chart", "color", - "blue", - "400" + "orange", + "200" ], "references": [ { "type": "color", - "value": "#b9dafc", + "value": "#f5921b", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b9dafc" + "value": "#f5921b" }, - "name": "pf-t--color--blue--20", + "name": "pf-t--color--orange--40", "attributes": { "category": "color", - "type": "blue", - "item": "20" + "type": "orange", + "item": "40" }, "path": [ "color", - "blue", - "20" + "orange", + "40" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000": { + "pf-t--chart--theme--colorscales--orange--colorscale--500": { "type": "color", - "value": "#ffe072", + "value": "#fccb8f", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.400}" + "value": "{chart.color.orange.400}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000", + "name": "pf-t--chart--theme--colorscales--orange--colorscale--500", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "orange", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "orange", "colorscale", - "3000" + "500" ], "references": [ { "type": "color", - "value": "#ffe072", + "value": "#fccb8f", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.20}" + "value": "{color.orange.20}" }, - "name": "pf-t--chart--color--yellow--400", + "name": "pf-t--chart--color--orange--400", "attributes": { "category": "chart", "type": "color", - "item": "yellow", + "item": "orange", "subitem": "400" }, "path": [ "chart", "color", - "yellow", + "orange", "400" ], "references": [ { "type": "color", - "value": "#ffe072", + "value": "#fccb8f", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#ffe072" + "value": "#fccb8f" }, - "name": "pf-t--color--yellow--20", + "name": "pf-t--color--orange--20", "attributes": { "category": "color", - "type": "yellow", + "type": "orange", "item": "20" }, "path": [ "color", - "yellow", + "orange", "20" ] } @@ -56349,147 +53705,147 @@ } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100": { "type": "color", - "value": "#d1f1bb", + "value": "#4394e5", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.400}" + "value": "{chart.color.blue.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "multi-colored-ordered", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "multi-colored-ordered", "colorscale", - "3100" + "100" ], "references": [ { "type": "color", - "value": "#d1f1bb", + "value": "#4394e5", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.20}" + "value": "{color.blue.40}" }, - "name": "pf-t--chart--color--green--400", + "name": "pf-t--chart--color--blue--200", "attributes": { "category": "chart", "type": "color", - "item": "green", - "subitem": "400" + "item": "blue", + "subitem": "200" }, "path": [ "chart", "color", - "green", - "400" + "blue", + "200" ], "references": [ { "type": "color", - "value": "#d1f1bb", + "value": "#4394e5", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#d1f1bb" + "value": "#4394e5" }, - "name": "pf-t--color--green--20", + "name": "pf-t--color--blue--40", "attributes": { "category": "color", - "type": "green", - "item": "20" + "type": "blue", + "item": "40" }, "path": [ "color", - "green", - "20" + "blue", + "40" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200": { "type": "color", - "value": "#b6a6e9", + "value": "#afdc8f", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.400}" + "value": "{chart.color.green.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "multi-colored-ordered", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "multi-colored-ordered", "colorscale", - "3200" + "200" ], "references": [ { "type": "color", - "value": "#b6a6e9", + "value": "#afdc8f", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.30}" + "value": "{color.green.30}" }, - "name": "pf-t--chart--color--purple--400", + "name": "pf-t--chart--color--green--300", "attributes": { "category": "chart", "type": "color", - "item": "purple", - "subitem": "400" + "item": "green", + "subitem": "300" }, "path": [ "chart", "color", - "purple", - "400" + "green", + "300" ], "references": [ { "type": "color", - "value": "#b6a6e9", + "value": "#afdc8f", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b6a6e9" + "value": "#afdc8f" }, - "name": "pf-t--color--purple--30", + "name": "pf-t--color--green--30", "attributes": { "category": "color", - "type": "purple", + "type": "green", "item": "30" }, "path": [ "color", - "purple", + "green", "30" ] } @@ -56497,1650 +53853,4296 @@ } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300": { "type": "color", - "value": "#fccb8f", + "value": "#63bdbd", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.400}" + "value": "{chart.color.teal.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "multi-colored-ordered", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "multi-colored-ordered", "colorscale", - "3300" + "300" ], "references": [ { "type": "color", - "value": "#fccb8f", + "value": "#63bdbd", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.20}" + "value": "{color.teal.40}" }, - "name": "pf-t--chart--color--orange--400", + "name": "pf-t--chart--color--teal--200", "attributes": { "category": "chart", "type": "color", - "item": "orange", - "subitem": "400" + "item": "teal", + "subitem": "200" }, "path": [ "chart", "color", - "orange", - "400" + "teal", + "200" ], "references": [ { "type": "color", - "value": "#fccb8f", + "value": "#63bdbd", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#fccb8f" + "value": "#63bdbd" }, - "name": "pf-t--color--orange--20", + "name": "pf-t--color--teal--40", "attributes": { "category": "color", - "type": "orange", - "item": "20" + "type": "teal", + "item": "40" }, "path": [ "color", - "orange", - "20" + "teal", + "40" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400": { "type": "color", - "value": "#b9e5e5", + "value": "#ffcc17", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.400}" + "value": "{chart.color.yellow.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "multi-colored-ordered", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "multi-colored-ordered", "colorscale", - "3400" + "400" ], "references": [ { "type": "color", - "value": "#b9e5e5", + "value": "#ffcc17", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.20}" + "value": "{color.yellow.30}" }, - "name": "pf-t--chart--color--teal--400", + "name": "pf-t--chart--color--yellow--300", "attributes": { "category": "chart", "type": "color", - "item": "teal", - "subitem": "400" + "item": "yellow", + "subitem": "300" }, "path": [ "chart", "color", - "teal", - "400" + "yellow", + "300" ], "references": [ { "type": "color", - "value": "#b9e5e5", + "value": "#ffcc17", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b9e5e5" + "value": "#ffcc17" }, - "name": "pf-t--color--teal--20", + "name": "pf-t--color--yellow--30", "attributes": { "category": "color", - "type": "teal", - "item": "20" + "type": "yellow", + "item": "30" }, "path": [ "color", - "teal", - "20" + "yellow", + "30" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500": { "type": "color", - "value": "#e0e0e0", + "value": "#f5921b", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.400}" + "value": "{chart.color.orange.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "multi-colored-ordered", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "multi-colored-ordered", "colorscale", - "3500" + "500" ], "references": [ { "type": "color", - "value": "#e0e0e0", + "value": "#f5921b", "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.20}" + "value": "{color.orange.40}" }, - "name": "pf-t--chart--color--black--400", + "name": "pf-t--chart--color--orange--200", "attributes": { "category": "chart", "type": "color", - "item": "black", - "subitem": "400" + "item": "orange", + "subitem": "200" }, "path": [ "chart", "color", - "black", - "400" + "orange", + "200" ], "references": [ { "type": "color", - "value": "#e0e0e0", + "value": "#f5921b", "filePath": "tokens/dark/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#e0e0e0" + "value": "#f5921b" }, - "name": "pf-t--color--gray--20", + "name": "pf-t--color--orange--40", "attributes": { "category": "color", - "type": "gray", - "item": "20" + "type": "orange", + "item": "40" }, "path": [ "color", - "gray", - "20" + "orange", + "40" ] } ] } ] }, - "pf-t--color--white": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#ffffff" + "value": "{chart.color.blue.300}" }, - "name": "pf-t--color--white", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600", "attributes": { - "category": "color", - "type": "white" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "white" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "600" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } ] }, - "pf-t--color--gray--10": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#f2f2f2" + "value": "{chart.color.green.200}" }, - "name": "pf-t--color--gray--10", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700", "attributes": { - "category": "color", - "type": "gray", - "item": "10" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "gray", - "10" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "700" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } ] }, - "pf-t--color--gray--20": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#e0e0e0" + "value": "{chart.color.teal.300}" }, - "name": "pf-t--color--gray--20", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800", "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - }, - "pf-t--color--gray--30": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "gray", - "30" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "800" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } ] }, - "pf-t--color--gray--40": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#a3a3a3" + "value": "{chart.color.yellow.200}" }, - "name": "pf-t--color--gray--40", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900", "attributes": { - "category": "color", - "type": "gray", - "item": "40" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "gray", - "40" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "900" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } ] }, - "pf-t--color--gray--50": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#707070" + "value": "{chart.color.orange.300}" }, - "name": "pf-t--color--gray--50", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000", "attributes": { - "category": "color", - "type": "gray", - "item": "50" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "gray", - "50" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1000" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } ] }, - "pf-t--color--gray--60": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100": { "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/dark/palette.color.json", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#4d4d4d" + "value": "{chart.color.blue.500}" }, - "name": "pf-t--color--gray--60", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100", "attributes": { - "category": "color", - "type": "gray", - "item": "60" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "gray", - "60" - ] - }, - "pf-t--color--gray--70": { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - }, - "pf-t--color--gray--80": { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - }, - "pf-t--color--gray--90": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - }, - "pf-t--color--gray--95": { - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - }, - "pf-t--color--black": { - "type": "color", - "value": "#000000", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#000000" - }, - "name": "pf-t--color--black", - "attributes": { - "category": "color", - "type": "black" - }, - "path": [ - "color", - "black" - ] - }, - "pf-t--color--blue--10": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - }, - "pf-t--color--blue--20": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - }, - "pf-t--color--blue--30": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - }, - "pf-t--color--blue--40": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - }, - "pf-t--color--blue--50": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - }, - "pf-t--color--blue--60": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1100" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } ] }, - "pf-t--color--blue--70": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200": { "type": "color", - "value": "#003366", - "filePath": "tokens/dark/palette.color.json", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#003366" + "value": "{chart.color.green.100}" }, - "name": "pf-t--color--blue--70", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200", "attributes": { - "category": "color", - "type": "blue", - "item": "70" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "blue", - "70" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1200" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } ] }, - "pf-t--color--teal--10": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300": { "type": "color", "value": "#daf2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - }, - "pf-t--color--teal--20": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#b9e5e5" + "value": "{chart.color.teal.500}" }, - "name": "pf-t--color--teal--20", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300", "attributes": { - "category": "color", - "type": "teal", - "item": "20" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "teal", - "20" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1300" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.10}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + } ] }, - "pf-t--color--teal--30": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#9ad8d8" + "value": "{chart.color.yellow.100}" }, - "name": "pf-t--color--teal--30", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400", "attributes": { - "category": "color", - "type": "teal", - "item": "30" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "teal", - "30" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1400" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } ] }, - "pf-t--color--teal--40": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#63bdbd" + "value": "{chart.color.orange.500}" }, - "name": "pf-t--color--teal--40", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500", "attributes": { - "category": "color", - "type": "teal", - "item": "40" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "teal", - "40" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1500" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.10}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + } ] }, - "pf-t--color--teal--50": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600": { "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/palette.color.json", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#37a3a3" + "value": "{chart.color.blue.100}" }, - "name": "pf-t--color--teal--50", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600", "attributes": { - "category": "color", - "type": "teal", - "item": "50" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "teal", - "50" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1600" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } ] }, - "pf-t--color--teal--60": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700": { "type": "color", - "value": "#147878", - "filePath": "tokens/dark/palette.color.json", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#147878" + "value": "{chart.color.green.500}" }, - "name": "pf-t--color--teal--60", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700", "attributes": { - "category": "color", - "type": "teal", - "item": "60" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "teal", - "60" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1700" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.10}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + } ] }, - "pf-t--color--teal--70": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800": { "type": "color", - "value": "#004d4d", - "filePath": "tokens/dark/palette.color.json", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#004d4d" + "value": "{chart.color.teal.100}" }, - "name": "pf-t--color--teal--70", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800", "attributes": { - "category": "color", - "type": "teal", - "item": "70" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "teal", - "70" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1800" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } ] }, - "pf-t--color--yellow--10": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900": { "type": "color", "value": "#fff4cc", - "filePath": "tokens/dark/palette.color.json", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#fff4cc" + "value": "{chart.color.yellow.500}" }, - "name": "pf-t--color--yellow--10", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900", "attributes": { - "category": "color", - "type": "yellow", - "item": "10" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "yellow", - "10" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1900" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.10}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + } ] }, - "pf-t--color--yellow--20": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#ffe072" + "value": "{chart.color.orange.100}" }, - "name": "pf-t--color--yellow--20", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000", "attributes": { - "category": "color", - "type": "yellow", - "item": "20" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "yellow", - "20" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2000" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } ] }, - "pf-t--color--yellow--30": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#ffcc17" + "value": "{chart.color.blue.400}" }, - "name": "pf-t--color--yellow--30", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100", "attributes": { - "category": "color", - "type": "yellow", - "item": "30" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "yellow", - "30" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2100" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } ] }, - "pf-t--color--yellow--40": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200": { "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#dca614" + "value": "{chart.color.green.400}" }, - "name": "pf-t--color--yellow--40", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200", "attributes": { - "category": "color", - "type": "yellow", - "item": "40" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "yellow", - "40" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } ] }, - "pf-t--color--yellow--50": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300": { "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/palette.color.json", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#b98412" + "value": "{chart.color.teal.400}" }, - "name": "pf-t--color--yellow--50", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300", "attributes": { - "category": "color", - "type": "yellow", - "item": "50" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "yellow", - "50" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2300" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } ] }, - "pf-t--color--yellow--60": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400": { "type": "color", - "value": "#96640f", - "filePath": "tokens/dark/palette.color.json", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#96640f" + "value": "{chart.color.yellow.400}" }, - "name": "pf-t--color--yellow--60", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400", "attributes": { - "category": "color", - "type": "yellow", - "item": "60" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "yellow", - "60" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2400" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } ] }, - "pf-t--color--yellow--70": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500": { "type": "color", - "value": "#73480b", - "filePath": "tokens/dark/palette.color.json", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#73480b" + "value": "{chart.color.orange.400}" }, - "name": "pf-t--color--yellow--70", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500", "attributes": { - "category": "color", - "type": "yellow", - "item": "70" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "yellow", - "70" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2500" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } ] }, - "pf-t--color--green--10": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100": { "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/palette.color.json", + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#e9f7df" + "value": "{chart.color.blue.200}" }, - "name": "pf-t--color--green--10", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100", "attributes": { - "category": "color", - "type": "green", - "item": "10" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "green", - "10" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } ] }, - "pf-t--color--green--20": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#d1f1bb" + "value": "{chart.color.yellow.300}" }, - "name": "pf-t--color--green--20", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200", "attributes": { - "category": "color", - "type": "green", - "item": "20" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "green", - "20" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } ] }, - "pf-t--color--green--30": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#afdc8f" + "value": "{chart.color.green.200}" }, - "name": "pf-t--color--green--30", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300", "attributes": { - "category": "color", - "type": "green", - "item": "30" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "green", - "30" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } ] }, - "pf-t--color--green--40": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#87bb62" + "value": "{chart.color.purple.300}" }, - "name": "pf-t--color--green--40", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400", "attributes": { - "category": "color", - "type": "green", - "item": "40" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "green", - "40" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } ] }, - "pf-t--color--green--50": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500": { "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/palette.color.json", + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#63993d" + "value": "{chart.color.orange.200}" }, - "name": "pf-t--color--green--50", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500", "attributes": { - "category": "color", - "type": "green", - "item": "50" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "green", - "50" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } ] }, - "pf-t--color--green--60": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600": { "type": "color", - "value": "#3d7317", - "filePath": "tokens/dark/palette.color.json", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#3d7317" + "value": "{chart.color.teal.300}" }, - "name": "pf-t--color--green--60", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600", "attributes": { - "category": "color", - "type": "green", - "item": "60" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "green", - "60" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "600" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } ] }, - "pf-t--color--green--70": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700": { "type": "color", - "value": "#204d00", - "filePath": "tokens/dark/palette.color.json", + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#204d00" + "value": "{chart.color.black.200}" }, - "name": "pf-t--color--green--70", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700", "attributes": { - "category": "color", - "type": "green", - "item": "70" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "green", - "70" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "700" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } ] }, - "pf-t--color--orange--10": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800": { "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/palette.color.json", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#ffe8cc" + "value": "{chart.color.blue.300}" }, - "name": "pf-t--color--orange--10", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800", "attributes": { - "category": "color", - "type": "orange", - "item": "10" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "orange", - "10" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "800" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } ] }, - "pf-t--color--orange--20": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#fccb8f" + "value": "{chart.color.yellow.200}" }, - "name": "pf-t--color--orange--20", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900", "attributes": { - "category": "color", - "type": "orange", - "item": "20" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "orange", - "20" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "900" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } ] }, - "pf-t--color--orange--30": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#f8ae54" + "value": "{chart.color.green.300}" }, - "name": "pf-t--color--orange--30", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000", "attributes": { - "category": "color", - "type": "orange", - "item": "30" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "orange", - "30" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1000" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } ] }, - "pf-t--color--orange--40": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#f5921b" + "value": "{chart.color.purple.200}" }, - "name": "pf-t--color--orange--40", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100", "attributes": { - "category": "color", - "type": "orange", - "item": "40" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "orange", - "40" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } ] }, - "pf-t--color--orange--50": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/palette.color.json", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#ca6c0f" + "value": "{chart.color.orange.300}" }, - "name": "pf-t--color--orange--50", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200", "attributes": { - "category": "color", - "type": "orange", - "item": "50" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "orange", - "50" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } ] }, - "pf-t--color--orange--60": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300": { "type": "color", - "value": "#9e4a06", - "filePath": "tokens/dark/palette.color.json", + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#9e4a06" + "value": "{chart.color.teal.200}" }, - "name": "pf-t--color--orange--60", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300", "attributes": { - "category": "color", - "type": "orange", - "item": "60" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "orange", - "60" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1300" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } ] }, - "pf-t--color--orange--70": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400": { "type": "color", - "value": "#732e00", - "filePath": "tokens/dark/palette.color.json", + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#732e00" + "value": "{chart.color.black.300}" }, - "name": "pf-t--color--orange--70", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400", "attributes": { - "category": "color", - "type": "orange", - "item": "70" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "orange", - "70" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1400" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } ] }, - "pf-t--color--red-orange--10": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500": { "type": "color", - "value": "#ffe3d9", - "filePath": "tokens/dark/palette.color.json", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#ffe3d9" + "value": "{chart.color.blue.100}" }, - "name": "pf-t--color--red-orange--10", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500", "attributes": { - "category": "color", - "type": "red-orange", - "item": "10" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red-orange", - "10" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1500" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } ] }, - "pf-t--color--red-orange--20": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600": { "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#fbbea8" + "value": "{chart.color.yellow.500}" }, - "name": "pf-t--color--red-orange--20", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600", "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red-orange", - "20" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1600" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.10}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + } ] }, - "pf-t--color--red-orange--30": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#f89b78" + "value": "{chart.color.green.100}" }, - "name": "pf-t--color--red-orange--30", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700", "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red-orange", - "30" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1700" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } ] }, - "pf-t--color--red-orange--40": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800": { "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#f4784a" + "value": "{chart.color.purple.500}" }, - "name": "pf-t--color--red-orange--40", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800", "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red-orange", - "40" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1800" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } ] }, - "pf-t--color--red-orange--50": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900": { "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#f0561d" + "value": "{chart.color.orange.100}" }, - "name": "pf-t--color--red-orange--50", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900", "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red-orange", - "50" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1900" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } ] }, - "pf-t--color--red-orange--60": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000": { "type": "color", - "value": "#b1380b", - "filePath": "tokens/dark/palette.color.json", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#b1380b" + "value": "{chart.color.teal.500}" }, - "name": "pf-t--color--red-orange--60", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000", "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red-orange", - "60" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2000" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.10}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + } ] }, - "pf-t--color--red-orange--70": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100": { "type": "color", - "value": "#731f00", - "filePath": "tokens/dark/palette.color.json", + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#731f00" + "value": "{chart.color.black.100}" }, - "name": "pf-t--color--red-orange--70", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100", "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red-orange", - "70" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } ] }, - "pf-t--color--purple--10": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200": { "type": "color", - "value": "#ece6ff", - "filePath": "tokens/dark/palette.color.json", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#ece6ff" + "value": "{chart.color.blue.500}" }, - "name": "pf-t--color--purple--10", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200", "attributes": { - "category": "color", - "type": "purple", - "item": "10" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "purple", - "10" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2200" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.10}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } ] }, - "pf-t--color--purple--20": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#d0c5f4" + "value": "{chart.color.yellow.100}" }, - "name": "pf-t--color--purple--20", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300", "attributes": { - "category": "color", - "type": "purple", - "item": "20" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "purple", - "20" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } ] }, - "pf-t--color--purple--30": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#b6a6e9" + "value": "{chart.color.green.500}" }, - "name": "pf-t--color--purple--30", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400", "attributes": { - "category": "color", - "type": "purple", - "item": "30" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "purple", - "30" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2400" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.10}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + } ] }, - "pf-t--color--purple--40": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/palette.color.json", + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#876fd4" + "value": "{chart.color.purple.100}" }, - "name": "pf-t--color--purple--40", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500", "attributes": { - "category": "color", - "type": "purple", - "item": "40" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "purple", - "40" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2500" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } ] }, - "pf-t--color--purple--50": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/palette.color.json", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#5e40be" + "value": "{chart.color.orange.500}" }, - "name": "pf-t--color--purple--50", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600", "attributes": { - "category": "color", - "type": "purple", - "item": "50" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "purple", - "50" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2600" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.10}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + } ] }, - "pf-t--color--purple--60": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/palette.color.json", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#3d2785" + "value": "{chart.color.teal.100}" }, - "name": "pf-t--color--purple--60", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700", "attributes": { - "category": "color", - "type": "purple", - "item": "60" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "purple", - "60" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2700" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } ] }, - "pf-t--color--purple--70": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800": { "type": "color", - "value": "#21134d", - "filePath": "tokens/dark/palette.color.json", + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#21134d" + "value": "{chart.color.black.500}" }, - "name": "pf-t--color--purple--70", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800", "attributes": { - "category": "color", - "type": "purple", - "item": "70" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "purple", - "70" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2800" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } ] }, - "pf-t--color--red--10": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900": { "type": "color", - "value": "#fce3e3", - "filePath": "tokens/dark/palette.color.json", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#fce3e3" + "value": "{chart.color.blue.400}" }, - "name": "pf-t--color--red--10", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900", "attributes": { - "category": "color", - "type": "red", - "item": "10" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red", - "10" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2900" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } ] }, - "pf-t--color--red--20": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000": { "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/palette.color.json", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#fbc5c5" + "value": "{chart.color.yellow.400}" }, - "name": "pf-t--color--red--20", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000", "attributes": { - "category": "color", - "type": "red", - "item": "20" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red", - "20" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3000" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } ] }, - "pf-t--color--red--30": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100": { "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/palette.color.json", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#f9a8a8" + "value": "{chart.color.green.400}" }, - "name": "pf-t--color--red--30", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100", "attributes": { - "category": "color", - "type": "red", - "item": "30" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red", - "30" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3100" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.20}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } ] }, - "pf-t--color--red--40": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200": { "type": "color", - "value": "#f56e6e", - "filePath": "tokens/dark/palette.color.json", + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#f56e6e" + "value": "{chart.color.purple.400}" }, - "name": "pf-t--color--red--40", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200", "attributes": { - "category": "color", - "type": "red", - "item": "40" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red", - "40" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } ] }, - "pf-t--color--red--50": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300": { "type": "color", - "value": "#ee0000", - "filePath": "tokens/dark/palette.color.json", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#ee0000" + "value": "{chart.color.orange.400}" }, - "name": "pf-t--color--red--50", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300", "attributes": { - "category": "color", - "type": "red", - "item": "50" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red", - "50" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3300" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.20}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } ] }, - "pf-t--color--red--60": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400": { "type": "color", - "value": "#a60000", - "filePath": "tokens/dark/palette.color.json", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#a60000" + "value": "{chart.color.teal.400}" }, - "name": "pf-t--color--red--60", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400", "attributes": { - "category": "color", - "type": "red", - "item": "60" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red", - "60" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3400" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.20}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } ] }, - "pf-t--color--red--70": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500": { "type": "color", - "value": "#5f0000", - "filePath": "tokens/dark/palette.color.json", + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", "isSource": true, "original": { "type": "color", - "value": "#5f0000" + "value": "{chart.color.black.400}" }, - "name": "pf-t--color--red--70", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500", "attributes": { - "category": "color", - "type": "red", - "item": "70" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red", - "70" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3500" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } ] } } diff --git a/packages/module/patternfly-docs/content/semantic-tokens-default.json b/packages/module/patternfly-docs/content/semantic-tokens-default.json index 5c15e14..e0deb59 100644 --- a/packages/module/patternfly-docs/content/semantic-tokens-default.json +++ b/packages/module/patternfly-docs/content/semantic-tokens-default.json @@ -26539,7 +26539,7 @@ "pf-t--global--spacer--xs": { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -26561,7 +26561,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -26585,7 +26585,7 @@ "pf-t--global--spacer--sm": { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -26607,7 +26607,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -26631,7 +26631,7 @@ "pf-t--global--spacer--md": { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -26653,7 +26653,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -26677,7 +26677,7 @@ "pf-t--global--spacer--lg": { "description": "Use for large spaces between elements.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -26699,7 +26699,7 @@ "references": [ { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -26723,7 +26723,7 @@ "pf-t--global--spacer--xl": { "description": "Use for extra large spaces between elements.", "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -26745,7 +26745,7 @@ "references": [ { "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -26769,7 +26769,7 @@ "pf-t--global--spacer--2xl": { "description": "Use for double extra large spaces spacing between elements.", "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -26791,7 +26791,7 @@ "references": [ { "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -26815,7 +26815,7 @@ "pf-t--global--spacer--3xl": { "description": "Use for triple extra large spaces between elements.", "type": "number", - "value": "64px", + "value": "4rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -26837,7 +26837,7 @@ "references": [ { "type": "number", - "value": "64px", + "value": "4rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -26861,7 +26861,7 @@ "pf-t--global--spacer--4xl": { "description": "Use for quadruple extra large spaces between elements.", "type": "number", - "value": "80px", + "value": "5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -26883,7 +26883,7 @@ "references": [ { "type": "number", - "value": "80px", + "value": "5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -26907,7 +26907,7 @@ "pf-t--global--spacer--control--vertical--default": { "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -26934,7 +26934,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -26956,7 +26956,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -26982,7 +26982,7 @@ "pf-t--global--spacer--control--vertical--compact": { "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27009,7 +27009,7 @@ { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27031,7 +27031,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -27057,7 +27057,7 @@ "pf-t--global--spacer--control--vertical--plain": { "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27084,7 +27084,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27106,7 +27106,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -27132,7 +27132,7 @@ "pf-t--global--spacer--control--horizontal--default": { "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27159,7 +27159,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27181,7 +27181,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -27207,7 +27207,7 @@ "pf-t--global--spacer--control--horizontal--plain": { "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27234,7 +27234,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27256,7 +27256,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -27282,7 +27282,7 @@ "pf-t--global--spacer--control--horizontal--compact": { "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27309,7 +27309,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27331,7 +27331,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -27357,7 +27357,7 @@ "pf-t--global--spacer--control--horizontal--spacious": { "description": "Use to set the horizontal padding in large/display controls.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27384,7 +27384,7 @@ { "description": "Use for large spaces between elements.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27406,7 +27406,7 @@ "references": [ { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -27432,7 +27432,7 @@ "pf-t--global--spacer--gap--text-to-element--default": { "description": "Use to space an element, like an icon or badge, inline with text", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27459,7 +27459,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27481,7 +27481,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -27507,7 +27507,7 @@ "pf-t--global--spacer--gap--control-to-control--default": { "description": "Use to set the space between controls, like in input groups or filter groups", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27534,7 +27534,7 @@ { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27556,7 +27556,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -27582,7 +27582,7 @@ "pf-t--global--spacer--gap--group--vertical": { "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27609,7 +27609,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27631,7 +27631,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -27657,7 +27657,7 @@ "pf-t--global--spacer--gap--group--horizontal": { "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27684,7 +27684,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27706,7 +27706,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -27732,7 +27732,7 @@ "pf-t--global--spacer--gap--group-to-group--horizontal": { "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27759,7 +27759,7 @@ { "description": "Use for double extra large spaces spacing between elements.", "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27781,7 +27781,7 @@ "references": [ { "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -27807,7 +27807,7 @@ "pf-t--global--spacer--gap--group-to-group--vertical": { "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27834,7 +27834,7 @@ { "description": "Use for large spaces between elements.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27856,7 +27856,7 @@ "references": [ { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -27882,7 +27882,7 @@ "pf-t--global--spacer--gap--action-to-action--default": { "description": "Use to set the space between actions, like in an action list group.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27909,7 +27909,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27931,7 +27931,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -27957,7 +27957,7 @@ "pf-t--global--spacer--gap--action-to-action--plain": { "description": "Use to set the space between plain actions, like in an action list group.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -27984,7 +27984,7 @@ { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28006,7 +28006,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -28032,7 +28032,7 @@ "pf-t--global--spacer--action--horizontal--default": { "description": "Use to set the horizontal padding inside a default action, like buttons.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28059,7 +28059,7 @@ { "description": "Use for large spaces between elements.", "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28081,7 +28081,7 @@ "references": [ { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -28107,11 +28107,11 @@ "pf-t--global--spacer--action--horizontal--plain": { "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", "type": "number", - "value": "8px", + "value": "0.5rem", "compact": { "description": "Use to set the horizontal padding inside a compact, plain action/button.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true }, @@ -28148,7 +28148,7 @@ { "description": "Use for small spaces between elements.", "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28170,7 +28170,7 @@ "references": [ { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -28196,7 +28196,7 @@ "pf-t--global--spacer--action--horizontal--compact": { "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28223,7 +28223,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28245,7 +28245,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -28271,7 +28271,7 @@ "pf-t--global--spacer--action--horizontal--spacious": { "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28298,7 +28298,7 @@ { "description": "Use for extra large spaces between elements.", "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28320,7 +28320,7 @@ "references": [ { "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -28346,7 +28346,7 @@ "pf-t--global--spacer--action--vertical--compact": { "description": "Use to set the vertical padding inside a compact action, like compact buttons.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28373,7 +28373,7 @@ { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28395,7 +28395,7 @@ "references": [ { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -28421,7 +28421,7 @@ "pf-t--global--spacer--action--vertical--spacious": { "description": "Use to set the vertical padding inside a large/display action, like CTAs.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28448,7 +28448,7 @@ { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28470,7 +28470,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -28496,7 +28496,7 @@ "pf-t--global--icon--size--sm": { "description": "Use for small icons.", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28520,7 +28520,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -28546,7 +28546,7 @@ "pf-t--global--icon--size--md": { "description": "Use for medium icons.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28570,7 +28570,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -28596,7 +28596,7 @@ "pf-t--global--icon--size--lg": { "description": "Use for large icons.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28620,7 +28620,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -28646,7 +28646,7 @@ "pf-t--global--icon--size--xl": { "description": "Use for extra large icons.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28670,7 +28670,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -28696,7 +28696,7 @@ "pf-t--global--icon--size--2xl": { "description": "Use for double extra large icons.", "type": "number", - "value": "56px", + "value": "3.5rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28720,7 +28720,7 @@ "references": [ { "type": "number", - "value": "56px", + "value": "3.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -28746,7 +28746,7 @@ "pf-t--global--icon--size--3xl": { "description": "Use for triple extra large icons.", "type": "number", - "value": "96px", + "value": "6rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28770,7 +28770,7 @@ "references": [ { "type": "number", - "value": "96px", + "value": "6rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -28796,7 +28796,7 @@ "pf-t--global--icon--size--font--heading--h1": { "description": "Use for icons that are placed inline with first level headings", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28824,7 +28824,7 @@ { "description": "Use as the font size for first level headings.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28851,7 +28851,7 @@ { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28875,7 +28875,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -28905,7 +28905,7 @@ "pf-t--global--icon--size--font--heading--h2": { "description": "Use for icons that are placed inline with second level headings", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28933,7 +28933,7 @@ { "description": "Use as the font size for second level headings.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28960,7 +28960,7 @@ { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -28984,7 +28984,7 @@ "references": [ { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -29014,7 +29014,7 @@ "pf-t--global--icon--size--font--heading--h3": { "description": "Use for icons that are placed inline with third level headings", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29042,7 +29042,7 @@ { "description": "Use as the font size for third level headings.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29069,7 +29069,7 @@ { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29093,7 +29093,7 @@ "references": [ { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -29123,7 +29123,7 @@ "pf-t--global--icon--size--font--heading--h4": { "description": "Use for icons that are placed inline with fourth level headings", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29151,7 +29151,7 @@ { "description": "Use as the font size for fourth-level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29178,7 +29178,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29202,7 +29202,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -29232,7 +29232,7 @@ "pf-t--global--icon--size--font--heading--h5": { "description": "Use for icons that are placed inline with fifth level headings", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29260,7 +29260,7 @@ { "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29287,7 +29287,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29311,7 +29311,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -29341,7 +29341,7 @@ "pf-t--global--icon--size--font--heading--h6": { "description": "Use for icons that are placed inline with sixth level headings", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29369,7 +29369,7 @@ { "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29396,7 +29396,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29420,7 +29420,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -29450,7 +29450,7 @@ "pf-t--global--icon--size--font--body--sm": { "description": "Use for icons that are placed inline with small body text", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29478,7 +29478,7 @@ { "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29504,7 +29504,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29527,7 +29527,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -29557,7 +29557,7 @@ "pf-t--global--icon--size--font--body--default": { "description": "Use for icons that are placed inline with default body text", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29585,7 +29585,7 @@ { "description": "Use as the default font size in body sections.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29612,7 +29612,7 @@ { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29636,7 +29636,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -29666,7 +29666,7 @@ "pf-t--global--icon--size--font--body--lg": { "description": "Use for icons that are placed inline with large body text", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29694,7 +29694,7 @@ { "description": "Use for a larger font size in body sections.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29721,7 +29721,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29745,7 +29745,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -29775,7 +29775,7 @@ "pf-t--global--icon--size--font--xs": { "description": "Use for icons that are placed inline with font–size–xs text", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29801,7 +29801,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29824,7 +29824,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -29852,7 +29852,7 @@ "pf-t--global--icon--size--font--sm": { "description": "Use for icons that are placed inline with font–size–sm text", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29879,7 +29879,7 @@ { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29903,7 +29903,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -29931,7 +29931,7 @@ "pf-t--global--icon--size--font--md": { "description": "Use for icons that are placed inline with font–size–md text", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29958,7 +29958,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -29982,7 +29982,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -30010,7 +30010,7 @@ "pf-t--global--icon--size--font--lg": { "description": "Use for icons that are placed inline with font–size–lg text", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -30037,7 +30037,7 @@ { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -30061,7 +30061,7 @@ "references": [ { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -30089,7 +30089,7 @@ "pf-t--global--icon--size--font--xl": { "description": "Use for icons that are placed inline with font–size–xl text", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -30116,7 +30116,7 @@ { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -30140,7 +30140,7 @@ "references": [ { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -30168,7 +30168,7 @@ "pf-t--global--icon--size--font--2xl": { "description": "Use for icons that are placed inline with font–size–2xl text", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -30195,7 +30195,7 @@ { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -30219,7 +30219,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -30247,7 +30247,7 @@ "pf-t--global--icon--size--font--3xl": { "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -30274,7 +30274,7 @@ { "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -30298,7 +30298,7 @@ "references": [ { "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -30326,7 +30326,7 @@ "pf-t--global--icon--size--font--4xl": { "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -30353,7 +30353,7 @@ { "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -30377,7 +30377,7 @@ "references": [ { "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -31963,7 +31963,7 @@ "pf-t--global--font--size--body--sm": { "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -31989,7 +31989,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32012,7 +32012,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -32040,7 +32040,7 @@ "pf-t--global--font--size--body--default": { "description": "Use as the default font size in body sections.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32067,7 +32067,7 @@ { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32091,7 +32091,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -32119,7 +32119,7 @@ "pf-t--global--font--size--body--lg": { "description": "Use for a larger font size in body sections.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32146,7 +32146,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32170,7 +32170,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -32198,7 +32198,7 @@ "pf-t--global--font--size--heading--h1": { "description": "Use as the font size for first level headings.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32225,7 +32225,7 @@ { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32249,7 +32249,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -32277,7 +32277,7 @@ "pf-t--global--font--size--heading--h2": { "description": "Use as the font size for second level headings.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32304,7 +32304,7 @@ { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32328,7 +32328,7 @@ "references": [ { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -32356,7 +32356,7 @@ "pf-t--global--font--size--heading--h3": { "description": "Use as the font size for third level headings.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32383,7 +32383,7 @@ { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32407,7 +32407,7 @@ "references": [ { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -32435,7 +32435,7 @@ "pf-t--global--font--size--heading--h4": { "description": "Use as the font size for fourth-level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32462,7 +32462,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32486,7 +32486,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -32514,7 +32514,7 @@ "pf-t--global--font--size--heading--h5": { "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32541,7 +32541,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32565,7 +32565,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -32593,7 +32593,7 @@ "pf-t--global--font--size--heading--h6": { "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32620,7 +32620,7 @@ { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32644,7 +32644,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -32671,7 +32671,7 @@ }, "pf-t--global--font--size--xs": { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32694,7 +32694,7 @@ "references": [ { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -32720,7 +32720,7 @@ "pf-t--global--font--size--sm": { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32744,7 +32744,7 @@ "references": [ { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -32770,7 +32770,7 @@ "pf-t--global--font--size--md": { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32794,7 +32794,7 @@ "references": [ { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -32820,7 +32820,7 @@ "pf-t--global--font--size--lg": { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32844,7 +32844,7 @@ "references": [ { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -32870,7 +32870,7 @@ "pf-t--global--font--size--xl": { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32894,7 +32894,7 @@ "references": [ { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -32920,7 +32920,7 @@ "pf-t--global--font--size--2xl": { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32944,7 +32944,7 @@ "references": [ { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -32970,7 +32970,7 @@ "pf-t--global--font--size--3xl": { "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -32994,7 +32994,7 @@ "references": [ { "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -33020,7 +33020,7 @@ "pf-t--global--font--size--4xl": { "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -33044,7 +33044,7 @@ "references": [ { "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -35194,7 +35194,7 @@ "pf-t--global--breakpoint--xs": { "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -35216,7 +35216,7 @@ "references": [ { "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -35240,7 +35240,7 @@ "pf-t--global--breakpoint--sm": { "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "576px", + "value": "36rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -35262,7 +35262,7 @@ "references": [ { "type": "number", - "value": "576px", + "value": "36rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -35286,7 +35286,7 @@ "pf-t--global--breakpoint--md": { "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -35308,7 +35308,7 @@ "references": [ { "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -35332,7 +35332,7 @@ "pf-t--global--breakpoint--lg": { "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "992px", + "value": "62rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -35354,7 +35354,7 @@ "references": [ { "type": "number", - "value": "992px", + "value": "62rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -35378,7 +35378,7 @@ "pf-t--global--breakpoint--xl": { "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "1200px", + "value": "75rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -35400,7 +35400,7 @@ "references": [ { "type": "number", - "value": "1200px", + "value": "75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -35424,7 +35424,7 @@ "pf-t--global--breakpoint--2xl": { "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "1450px", + "value": "90.625rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -35446,7 +35446,7 @@ "references": [ { "type": "number", - "value": "1450px", + "value": "90.625rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -35470,7 +35470,7 @@ "pf-t--global--breakpoint--height--sm": { "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -35494,7 +35494,7 @@ "references": [ { "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -35518,7 +35518,7 @@ "pf-t--global--breakpoint--height--md": { "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "640px", + "value": "40rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -35542,7 +35542,7 @@ "references": [ { "type": "number", - "value": "640px", + "value": "40rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -35566,7 +35566,7 @@ "pf-t--global--breakpoint--height--lg": { "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -35590,7 +35590,7 @@ "references": [ { "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -35614,7 +35614,7 @@ "pf-t--global--breakpoint--height--xl": { "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "960px", + "value": "60rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -35638,7 +35638,7 @@ "references": [ { "type": "number", - "value": "960px", + "value": "60rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -35662,7 +35662,7 @@ "pf-t--global--breakpoint--height--2xl": { "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "1280px", + "value": "80rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true, "original": { @@ -35686,7 +35686,7 @@ "references": [ { "type": "number", - "value": "1280px", + "value": "80rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -40811,7 +40811,7 @@ "dimension": { "pf-t--global--spacer--100": { "type": "number", - "value": "4px", + "value": "0.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -40832,7 +40832,7 @@ }, "pf-t--global--spacer--200": { "type": "number", - "value": "8px", + "value": "0.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -40853,7 +40853,7 @@ }, "pf-t--global--spacer--300": { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -40874,7 +40874,7 @@ }, "pf-t--global--spacer--400": { "type": "number", - "value": "24px", + "value": "1.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -40895,7 +40895,7 @@ }, "pf-t--global--spacer--500": { "type": "number", - "value": "32px", + "value": "2rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -40916,7 +40916,7 @@ }, "pf-t--global--spacer--600": { "type": "number", - "value": "48px", + "value": "3rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -40937,7 +40937,7 @@ }, "pf-t--global--spacer--700": { "type": "number", - "value": "64px", + "value": "4rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -40958,7 +40958,7 @@ }, "pf-t--global--spacer--800": { "type": "number", - "value": "80px", + "value": "5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -40979,7 +40979,7 @@ }, "pf-t--global--icon--size--100": { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -41002,7 +41002,7 @@ }, "pf-t--global--icon--size--200": { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -41025,7 +41025,7 @@ }, "pf-t--global--icon--size--250": { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -41048,7 +41048,7 @@ }, "pf-t--global--icon--size--300": { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -41071,7 +41071,7 @@ }, "pf-t--global--icon--size--400": { "type": "number", - "value": "56px", + "value": "3.5rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -41094,7 +41094,7 @@ }, "pf-t--global--icon--size--500": { "type": "number", - "value": "96px", + "value": "6rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -41531,7 +41531,7 @@ }, "pf-t--global--font--size--100": { "type": "number", - "value": "12px", + "value": "0.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -41554,7 +41554,7 @@ }, "pf-t--global--font--size--200": { "type": "number", - "value": "14px", + "value": "0.875rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -41577,7 +41577,7 @@ }, "pf-t--global--font--size--300": { "type": "number", - "value": "16px", + "value": "1rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -41600,7 +41600,7 @@ }, "pf-t--global--font--size--400": { "type": "number", - "value": "18px", + "value": "1.125rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -41623,7 +41623,7 @@ }, "pf-t--global--font--size--500": { "type": "number", - "value": "20px", + "value": "1.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -41646,7 +41646,7 @@ }, "pf-t--global--font--size--600": { "type": "number", - "value": "22px", + "value": "1.375rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -41669,7 +41669,7 @@ }, "pf-t--global--font--size--700": { "type": "number", - "value": "28px", + "value": "1.75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -41692,7 +41692,7 @@ }, "pf-t--global--font--size--800": { "type": "number", - "value": "36px", + "value": "2.25rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -42255,7 +42255,7 @@ }, "pf-t--global--breakpoint--100": { "type": "number", - "value": "0px", + "value": "0rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -42276,7 +42276,7 @@ }, "pf-t--global--breakpoint--200": { "type": "number", - "value": "576px", + "value": "36rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -42297,7 +42297,7 @@ }, "pf-t--global--breakpoint--250": { "type": "number", - "value": "640px", + "value": "40rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -42318,7 +42318,7 @@ }, "pf-t--global--breakpoint--300": { "type": "number", - "value": "768px", + "value": "48rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -42339,7 +42339,7 @@ }, "pf-t--global--breakpoint--350": { "type": "number", - "value": "960px", + "value": "60rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -42360,7 +42360,7 @@ }, "pf-t--global--breakpoint--400": { "type": "number", - "value": "992px", + "value": "62rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -42381,7 +42381,7 @@ }, "pf-t--global--breakpoint--500": { "type": "number", - "value": "1200px", + "value": "75rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -42402,7 +42402,7 @@ }, "pf-t--global--breakpoint--550": { "type": "number", - "value": "1280px", + "value": "80rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -42423,7 +42423,7 @@ }, "pf-t--global--breakpoint--600": { "type": "number", - "value": "1450px", + "value": "90.625rem", "filePath": "tokens/default/base.dimension.json", "isSource": true, "original": { @@ -42741,7938 +42741,5368 @@ } }, "palette": { - "pf-t--chart--color--blue--100": { + "pf-t--color--white": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.30}" + "value": "#ffffff" }, - "name": "pf-t--chart--color--blue--100", + "name": "pf-t--color--white", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "100" + "category": "color", + "type": "white" }, "path": [ - "chart", "color", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } + "white" ] }, - "pf-t--chart--color--blue--200": { + "pf-t--color--gray--10": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.40}" + "value": "#f2f2f2" }, - "name": "pf-t--chart--color--blue--200", + "name": "pf-t--color--gray--10", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "200" + "category": "color", + "type": "gray", + "item": "10" }, "path": [ - "chart", "color", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } + "gray", + "10" ] }, - "pf-t--chart--color--blue--300": { + "pf-t--color--gray--20": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.50}" + "value": "#e0e0e0" }, - "name": "pf-t--chart--color--blue--300", + "name": "pf-t--color--gray--20", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "300" + "category": "color", + "type": "gray", + "item": "20" }, "path": [ - "chart", "color", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } + "gray", + "20" ] }, - "pf-t--chart--color--blue--400": { + "pf-t--color--gray--30": { "type": "color", - "value": "#004d99", - "filePath": "tokens/default/charts.json", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.60}" + "value": "#c7c7c7" }, - "name": "pf-t--chart--color--blue--400", + "name": "pf-t--color--gray--30", "attributes": { - "category": "chart", + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + }, + "pf-t--color--gray--40": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { "type": "color", - "item": "blue", - "subitem": "400" + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" }, "path": [ - "chart", "color", - "blue", - "400" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } + "gray", + "40" ] }, - "pf-t--chart--color--blue--500": { + "pf-t--color--gray--50": { "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.70}" + "value": "#707070" }, - "name": "pf-t--chart--color--blue--500", + "name": "pf-t--color--gray--50", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "500" + "category": "color", + "type": "gray", + "item": "50" }, "path": [ - "chart", "color", - "blue", - "500" - ], - "references": [ - { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#003366" - }, - "name": "pf-t--color--blue--70", - "attributes": { - "category": "color", - "type": "blue", - "item": "70" - }, - "path": [ - "color", - "blue", - "70" - ] - } + "gray", + "50" ] }, - "pf-t--chart--color--green--100": { + "pf-t--color--gray--60": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.30}" + "value": "#4d4d4d" }, - "name": "pf-t--chart--color--green--100", + "name": "pf-t--color--gray--60", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "100" + "category": "color", + "type": "gray", + "item": "60" }, "path": [ - "chart", "color", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } + "gray", + "60" ] }, - "pf-t--chart--color--green--200": { + "pf-t--color--gray--70": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/charts.json", + "value": "#383838", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.40}" + "value": "#383838" }, - "name": "pf-t--chart--color--green--200", + "name": "pf-t--color--gray--70", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "200" + "category": "color", + "type": "gray", + "item": "70" }, "path": [ - "chart", "color", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } + "gray", + "70" ] }, - "pf-t--chart--color--green--300": { + "pf-t--color--gray--80": { "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", + "value": "#292929", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.50}" + "value": "#292929" }, - "name": "pf-t--chart--color--green--300", + "name": "pf-t--color--gray--80", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "300" + "category": "color", + "type": "gray", + "item": "80" }, "path": [ - "chart", "color", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } + "gray", + "80" ] }, - "pf-t--chart--color--green--400": { + "pf-t--color--gray--90": { "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.60}" + "value": "#1f1f1f" }, - "name": "pf-t--chart--color--green--400", + "name": "pf-t--color--gray--90", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "400" + "category": "color", + "type": "gray", + "item": "90" }, "path": [ - "chart", "color", - "green", - "400" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } + "gray", + "90" ] }, - "pf-t--chart--color--green--500": { + "pf-t--color--gray--95": { "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.70}" + "value": "#151515" }, - "name": "pf-t--chart--color--green--500", + "name": "pf-t--color--gray--95", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "500" + "category": "color", + "type": "gray", + "item": "95" }, "path": [ - "chart", "color", - "green", - "500" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } + "gray", + "95" ] }, - "pf-t--chart--color--teal--100": { + "pf-t--color--black": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", + "value": "#000000", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.30}" + "value": "#000000" }, - "name": "pf-t--chart--color--teal--100", + "name": "pf-t--color--black", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "100" + "category": "color", + "type": "black" }, "path": [ - "chart", "color", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } + "black" ] }, - "pf-t--chart--color--teal--200": { + "pf-t--color--blue--10": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/charts.json", + "value": "#e0f0ff", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.40}" + "value": "#e0f0ff" }, - "name": "pf-t--chart--color--teal--200", + "name": "pf-t--color--blue--10", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "200" + "category": "color", + "type": "blue", + "item": "10" }, "path": [ - "chart", "color", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } + "blue", + "10" ] }, - "pf-t--chart--color--teal--300": { + "pf-t--color--blue--20": { "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", + "value": "#b9dafc", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.50}" + "value": "#b9dafc" }, - "name": "pf-t--chart--color--teal--300", + "name": "pf-t--color--blue--20", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "300" + "category": "color", + "type": "blue", + "item": "20" }, "path": [ - "chart", "color", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } + "blue", + "20" ] }, - "pf-t--chart--color--teal--400": { + "pf-t--color--blue--30": { "type": "color", - "value": "#147878", - "filePath": "tokens/default/charts.json", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.60}" + "value": "#92c5f9" }, - "name": "pf-t--chart--color--teal--400", + "name": "pf-t--color--blue--30", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "400" + "category": "color", + "type": "blue", + "item": "30" }, "path": [ - "chart", "color", - "teal", - "400" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } + "blue", + "30" ] }, - "pf-t--chart--color--teal--500": { + "pf-t--color--blue--40": { "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.70}" + "value": "#4394e5" }, - "name": "pf-t--chart--color--teal--500", + "name": "pf-t--color--blue--40", "attributes": { - "category": "chart", + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + }, + "pf-t--color--blue--50": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { "type": "color", - "item": "teal", - "subitem": "500" + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" }, "path": [ - "chart", "color", - "teal", - "500" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } + "blue", + "50" ] }, - "pf-t--chart--color--purple--100": { + "pf-t--color--blue--60": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/charts.json", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.30}" + "value": "#004d99" }, - "name": "pf-t--chart--color--purple--100", + "name": "pf-t--color--blue--60", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "100" + "category": "color", + "type": "blue", + "item": "60" }, "path": [ - "chart", "color", - "purple", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } + "blue", + "60" ] }, - "pf-t--chart--color--purple--200": { + "pf-t--color--blue--70": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/charts.json", + "value": "#003366", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.40}" + "value": "#003366" }, - "name": "pf-t--chart--color--purple--200", + "name": "pf-t--color--blue--70", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "200" + "category": "color", + "type": "blue", + "item": "70" }, "path": [ - "chart", "color", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } + "blue", + "70" ] }, - "pf-t--chart--color--purple--300": { + "pf-t--color--teal--10": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/charts.json", + "value": "#daf2f2", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.50}" + "value": "#daf2f2" }, - "name": "pf-t--chart--color--purple--300", + "name": "pf-t--color--teal--10", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "300" + "category": "color", + "type": "teal", + "item": "10" }, "path": [ - "chart", "color", - "purple", - "300" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } + "teal", + "10" ] }, - "pf-t--chart--color--purple--400": { + "pf-t--color--teal--20": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/charts.json", + "value": "#b9e5e5", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.60}" + "value": "#b9e5e5" }, - "name": "pf-t--chart--color--purple--400", + "name": "pf-t--color--teal--20", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "400" + "category": "color", + "type": "teal", + "item": "20" }, "path": [ - "chart", "color", - "purple", - "400" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } + "teal", + "20" ] }, - "pf-t--chart--color--purple--500": { + "pf-t--color--teal--30": { "type": "color", - "value": "#21134d", - "filePath": "tokens/default/charts.json", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.70}" + "value": "#9ad8d8" }, - "name": "pf-t--chart--color--purple--500", + "name": "pf-t--color--teal--30", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "500" + "category": "color", + "type": "teal", + "item": "30" }, "path": [ - "chart", "color", - "purple", - "500" - ], - "references": [ - { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#21134d" - }, - "name": "pf-t--color--purple--70", - "attributes": { - "category": "color", - "type": "purple", - "item": "70" - }, - "path": [ - "color", - "purple", - "70" - ] - } + "teal", + "30" ] }, - "pf-t--chart--color--yellow--100": { + "pf-t--color--teal--40": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.20}" + "value": "#63bdbd" }, - "name": "pf-t--chart--color--yellow--100", + "name": "pf-t--color--teal--40", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "100" + "category": "color", + "type": "teal", + "item": "40" }, "path": [ - "chart", "color", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } + "teal", + "40" ] }, - "pf-t--chart--color--yellow--200": { + "pf-t--color--teal--50": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/charts.json", + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.30}" + "value": "#37a3a3" }, - "name": "pf-t--chart--color--yellow--200", + "name": "pf-t--color--teal--50", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "200" + "category": "color", + "type": "teal", + "item": "50" }, "path": [ - "chart", "color", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } + "teal", + "50" ] }, - "pf-t--chart--color--yellow--300": { + "pf-t--color--teal--60": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.40}" + "value": "#147878" }, - "name": "pf-t--chart--color--yellow--300", + "name": "pf-t--color--teal--60", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "300" + "category": "color", + "type": "teal", + "item": "60" }, "path": [ - "chart", "color", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } + "teal", + "60" ] }, - "pf-t--chart--color--yellow--400": { + "pf-t--color--teal--70": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.50}" + "value": "#004d4d" }, - "name": "pf-t--chart--color--yellow--400", + "name": "pf-t--color--teal--70", "attributes": { - "category": "chart", + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + }, + "pf-t--color--yellow--10": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { "type": "color", - "item": "yellow", - "subitem": "400" + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" }, "path": [ - "chart", "color", "yellow", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } + "10" ] }, - "pf-t--chart--color--yellow--500": { + "pf-t--color--yellow--20": { "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.60}" + "value": "#ffe072" }, - "name": "pf-t--chart--color--yellow--500", + "name": "pf-t--color--yellow--20", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "500" + "category": "color", + "type": "yellow", + "item": "20" }, "path": [ - "chart", "color", "yellow", - "500" - ], - "references": [ - { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#96640f" - }, - "name": "pf-t--color--yellow--60", - "attributes": { - "category": "color", - "type": "yellow", - "item": "60" - }, - "path": [ - "color", - "yellow", - "60" - ] - } + "20" ] }, - "pf-t--chart--color--orange--100": { + "pf-t--color--yellow--30": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.30}" + "value": "#ffcc17" }, - "name": "pf-t--chart--color--orange--100", + "name": "pf-t--color--yellow--30", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "100" + "category": "color", + "type": "yellow", + "item": "30" }, "path": [ - "chart", "color", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } + "yellow", + "30" ] }, - "pf-t--chart--color--orange--200": { + "pf-t--color--yellow--40": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.40}" + "value": "#dca614" }, - "name": "pf-t--chart--color--orange--200", + "name": "pf-t--color--yellow--40", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "200" + "category": "color", + "type": "yellow", + "item": "40" }, "path": [ - "chart", "color", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } + "yellow", + "40" ] }, - "pf-t--chart--color--orange--300": { + "pf-t--color--yellow--50": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.50}" + "value": "#b98412" }, - "name": "pf-t--chart--color--orange--300", + "name": "pf-t--color--yellow--50", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "300" + "category": "color", + "type": "yellow", + "item": "50" }, "path": [ - "chart", "color", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } + "yellow", + "50" ] }, - "pf-t--chart--color--orange--400": { + "pf-t--color--yellow--60": { "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/charts.json", + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.60}" + "value": "#96640f" }, - "name": "pf-t--chart--color--orange--400", + "name": "pf-t--color--yellow--60", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "400" + "category": "color", + "type": "yellow", + "item": "60" }, "path": [ - "chart", "color", - "orange", - "400" - ], - "references": [ - { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9e4a06" - }, - "name": "pf-t--color--orange--60", - "attributes": { - "category": "color", - "type": "orange", - "item": "60" - }, - "path": [ - "color", - "orange", - "60" - ] - } + "yellow", + "60" ] }, - "pf-t--chart--color--orange--500": { + "pf-t--color--yellow--70": { "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", + "value": "#73480b", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.70}" + "value": "#73480b" }, - "name": "pf-t--chart--color--orange--500", + "name": "pf-t--color--yellow--70", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "500" + "category": "color", + "type": "yellow", + "item": "70" }, "path": [ - "chart", "color", - "orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#732e00" - }, - "name": "pf-t--color--orange--70", - "attributes": { - "category": "color", - "type": "orange", - "item": "70" - }, - "path": [ - "color", - "orange", - "70" - ] - } + "yellow", + "70" ] }, - "pf-t--chart--color--red-orange--100": { + "pf-t--color--green--10": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/charts.json", + "value": "#e9f7df", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.red-orange.30}" + "value": "#e9f7df" }, - "name": "pf-t--chart--color--red-orange--100", + "name": "pf-t--color--green--10", "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "100" + "category": "color", + "type": "green", + "item": "10" }, "path": [ - "chart", "color", - "red-orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } + "green", + "10" ] }, - "pf-t--chart--color--red-orange--200": { + "pf-t--color--green--20": { "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/charts.json", + "value": "#d1f1bb", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.red-orange.40}" + "value": "#d1f1bb" }, - "name": "pf-t--chart--color--red-orange--200", + "name": "pf-t--color--green--20", "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "200" + "category": "color", + "type": "green", + "item": "20" }, "path": [ - "chart", "color", - "red-orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } + "green", + "20" ] }, - "pf-t--chart--color--red-orange--300": { + "pf-t--color--green--30": { "type": "color", - "value": "#f0561d", - "filePath": "tokens/default/charts.json", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.red-orange.50}" + "value": "#afdc8f" }, - "name": "pf-t--chart--color--red-orange--300", + "name": "pf-t--color--green--30", "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "300" + "category": "color", + "type": "green", + "item": "30" }, "path": [ - "chart", "color", - "red-orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } + "green", + "30" ] }, - "pf-t--chart--color--red-orange--400": { + "pf-t--color--green--40": { "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/charts.json", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.red-orange.60}" + "value": "#87bb62" }, - "name": "pf-t--chart--color--red-orange--400", + "name": "pf-t--color--green--40", "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "400" + "category": "color", + "type": "green", + "item": "40" }, "path": [ - "chart", "color", - "red-orange", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } + "green", + "40" ] }, - "pf-t--chart--color--red-orange--500": { + "pf-t--color--green--50": { "type": "color", - "value": "#731f00", - "filePath": "tokens/default/charts.json", + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.red-orange.70}" + "value": "#63993d" }, - "name": "pf-t--chart--color--red-orange--500", + "name": "pf-t--color--green--50", "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "500" + "category": "color", + "type": "green", + "item": "50" }, "path": [ - "chart", "color", - "red-orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } + "green", + "50" ] }, - "pf-t--chart--color--black--100": { + "pf-t--color--green--60": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/charts.json", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.10}" + "value": "#3d7317" }, - "name": "pf-t--chart--color--black--100", + "name": "pf-t--color--green--60", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "100" + "category": "color", + "type": "green", + "item": "60" }, "path": [ - "chart", "color", - "black", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } + "green", + "60" ] }, - "pf-t--chart--color--black--200": { + "pf-t--color--green--70": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/charts.json", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.20}" + "value": "#204d00" }, - "name": "pf-t--chart--color--black--200", + "name": "pf-t--color--green--70", "attributes": { - "category": "chart", + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + }, + "pf-t--color--orange--10": { + "type": "color", + "value": "#ffe8cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { "type": "color", - "item": "black", - "subitem": "200" + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" }, "path": [ - "chart", "color", - "black", - "200" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } + "orange", + "10" ] }, - "pf-t--chart--color--black--300": { + "pf-t--color--orange--20": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/charts.json", + "value": "#fccb8f", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.30}" + "value": "#fccb8f" }, - "name": "pf-t--chart--color--black--300", + "name": "pf-t--color--orange--20", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "300" + "category": "color", + "type": "orange", + "item": "20" }, "path": [ - "chart", "color", - "black", - "300" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } + "orange", + "20" ] }, - "pf-t--chart--color--black--400": { + "pf-t--color--orange--30": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/charts.json", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.40}" + "value": "#f8ae54" }, - "name": "pf-t--chart--color--black--400", + "name": "pf-t--color--orange--30", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "400" + "category": "color", + "type": "orange", + "item": "30" }, "path": [ - "chart", "color", - "black", - "400" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } + "orange", + "30" ] }, - "pf-t--chart--color--black--500": { + "pf-t--color--orange--40": { "type": "color", - "value": "#707070", - "filePath": "tokens/default/charts.json", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.50}" + "value": "#f5921b" }, - "name": "pf-t--chart--color--black--500", + "name": "pf-t--color--orange--40", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "500" + "category": "color", + "type": "orange", + "item": "40" }, "path": [ - "chart", "color", - "black", - "500" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } + "orange", + "40" ] }, - "pf-t--chart--global--BorderWidth--xs": { - "type": "number", - "value": 1, - "filePath": "tokens/default/charts.json", + "pf-t--color--orange--50": { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 1 + "type": "color", + "value": "#ca6c0f" }, - "name": "pf-t--chart--global--BorderWidth--xs", + "name": "pf-t--color--orange--50", "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "xs" + "category": "color", + "type": "orange", + "item": "50" }, "path": [ - "chart", - "global", - "BorderWidth", - "xs" + "color", + "orange", + "50" ] }, - "pf-t--chart--global--BorderWidth--sm": { - "type": "number", - "value": 2, - "filePath": "tokens/default/charts.json", + "pf-t--color--orange--60": { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 2 + "type": "color", + "value": "#9e4a06" }, - "name": "pf-t--chart--global--BorderWidth--sm", + "name": "pf-t--color--orange--60", "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "sm" + "category": "color", + "type": "orange", + "item": "60" }, "path": [ - "chart", - "global", - "BorderWidth", - "sm" + "color", + "orange", + "60" ] }, - "pf-t--chart--global--BorderWidth--lg": { - "type": "number", - "value": 8, - "filePath": "tokens/default/charts.json", + "pf-t--color--orange--70": { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 8 + "type": "color", + "value": "#732e00" }, - "name": "pf-t--chart--global--BorderWidth--lg", + "name": "pf-t--color--orange--70", "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "lg" + "category": "color", + "type": "orange", + "item": "70" }, "path": [ - "chart", - "global", - "BorderWidth", - "lg" + "color", + "orange", + "70" ] }, - "pf-t--chart--global--stroke--width--xs": { - "type": "number", - "value": 1, - "filePath": "tokens/default/charts.json", + "pf-t--color--red-orange--10": { + "type": "color", + "value": "#ffe3d9", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 1 + "type": "color", + "value": "#ffe3d9" }, - "name": "pf-t--chart--global--stroke--width--xs", + "name": "pf-t--color--red-orange--10", "attributes": { - "category": "chart", - "type": "global", - "item": "stroke", - "subitem": "width", - "state": "xs" + "category": "color", + "type": "red-orange", + "item": "10" }, "path": [ - "chart", - "global", - "stroke", - "width", - "xs" + "color", + "red-orange", + "10" ] }, - "pf-t--chart--global--stroke--width--sm": { - "type": "number", - "value": 2, - "filePath": "tokens/default/charts.json", + "pf-t--color--red-orange--20": { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 2 + "type": "color", + "value": "#fbbea8" }, - "name": "pf-t--chart--global--stroke--width--sm", + "name": "pf-t--color--red-orange--20", "attributes": { - "category": "chart", - "type": "global", - "item": "stroke", - "subitem": "width", - "state": "sm" + "category": "color", + "type": "red-orange", + "item": "20" }, "path": [ - "chart", - "global", - "stroke", - "width", - "sm" + "color", + "red-orange", + "20" ] }, - "pf-t--chart--global--fill--color--100": { + "pf-t--color--red-orange--30": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/charts.json", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.10}" + "value": "#f89b78" }, - "name": "pf-t--chart--global--fill--color--100", + "name": "pf-t--color--red-orange--30", "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "100" + "category": "color", + "type": "red-orange", + "item": "30" }, "path": [ - "chart", - "global", - "fill", "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } + "red-orange", + "30" ] }, - "pf-t--chart--global--fill--color--200": { + "pf-t--color--red-orange--40": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/charts.json", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.20}" + "value": "#f4784a" }, - "name": "pf-t--chart--global--fill--color--200", + "name": "pf-t--color--red-orange--40", "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "200" + "category": "color", + "type": "red-orange", + "item": "40" }, "path": [ - "chart", - "global", - "fill", "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } + "red-orange", + "40" ] }, - "pf-t--chart--global--fill--color--300": { + "pf-t--color--red-orange--50": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/charts.json", + "value": "#f0561d", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.30}" + "value": "#f0561d" }, - "name": "pf-t--chart--global--fill--color--300", + "name": "pf-t--color--red-orange--50", "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "300" + "category": "color", + "type": "red-orange", + "item": "50" }, "path": [ - "chart", - "global", - "fill", "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } + "red-orange", + "50" ] }, - "pf-t--chart--global--fill--color--400": { + "pf-t--color--red-orange--60": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/charts.json", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.40}" + "value": "#b1380b" }, - "name": "pf-t--chart--global--fill--color--400", + "name": "pf-t--color--red-orange--60", "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "400" + "category": "color", + "type": "red-orange", + "item": "60" }, "path": [ - "chart", - "global", - "fill", "color", - "400" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } + "red-orange", + "60" ] }, - "pf-t--chart--global--fill--color--500": { + "pf-t--color--red-orange--70": { "type": "color", - "value": "#707070", - "filePath": "tokens/default/charts.json", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.50}" + "value": "#731f00" }, - "name": "pf-t--chart--global--fill--color--500", + "name": "pf-t--color--red-orange--70", "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "500" + "category": "color", + "type": "red-orange", + "item": "70" }, "path": [ - "chart", - "global", - "fill", "color", - "500" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } + "red-orange", + "70" ] }, - "pf-t--chart--global--fill--color--700": { + "pf-t--color--purple--10": { "type": "color", - "value": "#383838", - "filePath": "tokens/default/charts.json", + "value": "#ece6ff", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.70}" + "value": "#ece6ff" }, - "name": "pf-t--chart--global--fill--color--700", + "name": "pf-t--color--purple--10", "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "700" + "category": "color", + "type": "purple", + "item": "10" }, "path": [ - "chart", - "global", - "fill", "color", - "700" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } + "purple", + "10" ] }, - "pf-t--chart--global--fill--color--900": { + "pf-t--color--purple--20": { "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/charts.json", + "value": "#d0c5f4", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "#d0c5f4" }, - "name": "pf-t--chart--global--fill--color--900", + "name": "pf-t--color--purple--20", "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "900" + "category": "color", + "type": "purple", + "item": "20" }, "path": [ - "chart", - "global", - "fill", "color", - "900" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } + "purple", + "20" ] }, - "pf-t--chart--global--fill--color--white": { + "pf-t--color--purple--30": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/charts.json", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.white}" + "value": "#b6a6e9" }, - "name": "pf-t--chart--global--fill--color--white", + "name": "pf-t--color--purple--30", "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "white" + "category": "color", + "type": "purple", + "item": "30" }, "path": [ - "chart", - "global", - "fill", "color", - "white" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } + "purple", + "30" ] }, - "pf-t--chart--global--warning--color--100": { + "pf-t--color--purple--40": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.40}" + "value": "#876fd4" }, - "name": "pf-t--chart--global--warning--color--100", + "name": "pf-t--color--purple--40", "attributes": { - "category": "chart", - "type": "global", - "item": "warning", - "subitem": "color", - "state": "100" + "category": "color", + "type": "purple", + "item": "40" }, "path": [ - "chart", - "global", - "warning", "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } + "purple", + "40" ] }, - "pf-t--chart--global--warning--color--200": { + "pf-t--color--purple--50": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.40}" + "value": "#5e40be" }, - "name": "pf-t--chart--global--warning--color--200", + "name": "pf-t--color--purple--50", "attributes": { - "category": "chart", - "type": "global", - "item": "warning", - "subitem": "color", - "state": "200" + "category": "color", + "type": "purple", + "item": "50" }, "path": [ - "chart", - "global", - "warning", "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } + "purple", + "50" ] }, - "pf-t--chart--global--success--color--100": { + "pf-t--color--purple--60": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.50}" + "value": "#3d2785" }, - "name": "pf-t--chart--global--success--color--100", + "name": "pf-t--color--purple--60", "attributes": { - "category": "chart", - "type": "global", - "item": "success", - "subitem": "color", - "state": "100" + "category": "color", + "type": "purple", + "item": "60" }, "path": [ - "chart", - "global", - "success", "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } + "purple", + "60" ] }, - "pf-t--chart--global--danger--color--100": { + "pf-t--color--purple--70": { "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/charts.json", + "value": "#21134d", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.red-orange.60}" + "value": "#21134d" }, - "name": "pf-t--chart--global--danger--color--100", + "name": "pf-t--color--purple--70", "attributes": { - "category": "chart", - "type": "global", - "item": "danger", - "subitem": "color", - "state": "100" + "category": "color", + "type": "purple", + "item": "70" }, "path": [ - "chart", - "global", - "danger", "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } + "purple", + "70" ] }, - "pf-t--chart--global--FontSize--xs": { - "type": "number", - "value": 12, - "filePath": "tokens/default/charts.json", + "pf-t--color--red--10": { + "type": "color", + "value": "#fce3e3", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 12 + "type": "color", + "value": "#fce3e3" }, - "name": "pf-t--chart--global--FontSize--xs", + "name": "pf-t--color--red--10", "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "xs" + "category": "color", + "type": "red", + "item": "10" }, "path": [ - "chart", - "global", - "FontSize", - "xs" + "color", + "red", + "10" ] }, - "pf-t--chart--global--FontSize--sm": { - "type": "number", - "value": 14, - "filePath": "tokens/default/charts.json", + "pf-t--color--red--20": { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 14 + "type": "color", + "value": "#fbc5c5" }, - "name": "pf-t--chart--global--FontSize--sm", + "name": "pf-t--color--red--20", "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "sm" + "category": "color", + "type": "red", + "item": "20" }, "path": [ - "chart", - "global", - "FontSize", - "sm" + "color", + "red", + "20" ] }, - "pf-t--chart--global--FontSize--lg": { - "type": "number", - "value": 18, - "filePath": "tokens/default/charts.json", + "pf-t--color--red--30": { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 18 + "type": "color", + "value": "#f9a8a8" }, - "name": "pf-t--chart--global--FontSize--lg", + "name": "pf-t--color--red--30", "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "lg" + "category": "color", + "type": "red", + "item": "30" }, "path": [ - "chart", - "global", - "FontSize", - "lg" + "color", + "red", + "30" ] }, - "pf-t--chart--global--FontSize--2xl": { - "type": "number", - "value": 22, - "filePath": "tokens/default/charts.json", + "pf-t--color--red--40": { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 22 + "type": "color", + "value": "#f56e6e" }, - "name": "pf-t--chart--global--FontSize--2xl", + "name": "pf-t--color--red--40", "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "2xl" + "category": "color", + "type": "red", + "item": "40" }, "path": [ - "chart", - "global", - "FontSize", - "2xl" + "color", + "red", + "40" ] }, - "pf-t--chart--global--letter-spacing": { - "type": "string", - "value": "normal", - "filePath": "tokens/default/charts.json", + "pf-t--color--red--50": { + "type": "color", + "value": "#ee0000", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "string", - "value": "normal" + "type": "color", + "value": "#ee0000" }, - "name": "pf-t--chart--global--letter-spacing", + "name": "pf-t--color--red--50", "attributes": { - "category": "chart", - "type": "global", - "item": "letter-spacing" + "category": "color", + "type": "red", + "item": "50" }, "path": [ - "chart", - "global", - "letter-spacing" + "color", + "red", + "50" ] }, - "pf-t--chart--global--stroke-line-cap": { - "type": "string", - "value": "round", - "filePath": "tokens/default/charts.json", + "pf-t--color--red--60": { + "type": "color", + "value": "#a60000", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "string", - "value": "round" + "type": "color", + "value": "#a60000" }, - "name": "pf-t--chart--global--stroke-line-cap", + "name": "pf-t--color--red--60", "attributes": { - "category": "chart", - "type": "global", - "item": "stroke-line-cap" + "category": "color", + "type": "red", + "item": "60" }, "path": [ - "chart", - "global", - "stroke-line-cap" - ] - }, - "pf-t--chart--global--label--padding": { - "type": "number", - "value": 10, - "filePath": "tokens/default/charts.json", + "color", + "red", + "60" + ] + }, + "pf-t--color--red--70": { + "type": "color", + "value": "#5f0000", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 10 + "type": "color", + "value": "#5f0000" }, - "name": "pf-t--chart--global--label--padding", + "name": "pf-t--color--red--70", "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "padding" + "category": "color", + "type": "red", + "item": "70" }, "path": [ - "chart", - "global", - "label", - "padding" + "color", + "red", + "70" ] - }, - "pf-t--chart--global--label--margin": { - "type": "number", - "value": 8, + } + }, + "chart": { + "pf-t--chart--color--blue--100": { + "type": "color", + "value": "#92c5f9", "filePath": "tokens/default/charts.json", "isSource": true, "original": { - "type": "number", - "value": 8 + "type": "color", + "value": "{color.blue.30}" }, - "name": "pf-t--chart--global--label--margin", + "name": "pf-t--chart--color--blue--100", "attributes": { "category": "chart", - "type": "global", - "item": "label", - "subitem": "margin" + "type": "color", + "item": "blue", + "subitem": "100" }, "path": [ "chart", - "global", - "label", - "margin" + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } ] }, - "pf-t--chart--global--label--stroke": { - "width": { - "type": "number", - "value": 0, - "filePath": "tokens/default/charts.json", - "isSource": true - }, - "type": "string", - "value": "transparent", + "pf-t--chart--color--blue--200": { + "type": "color", + "value": "#4394e5", "filePath": "tokens/default/charts.json", "isSource": true, "original": { - "width": { - "type": "number", - "value": 0, - "filePath": "tokens/default/charts.json", - "isSource": true - }, - "type": "string", - "value": "transparent" + "type": "color", + "value": "{color.blue.40}" }, - "name": "pf-t--chart--global--label--stroke", + "name": "pf-t--chart--color--blue--200", "attributes": { "category": "chart", - "type": "global", - "item": "label", - "subitem": "stroke" + "type": "color", + "item": "blue", + "subitem": "200" }, "path": [ "chart", - "global", - "label", - "stroke" + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } ] }, - "pf-t--chart--global--label--text-anchor": { - "type": "string", - "value": "middle", + "pf-t--chart--color--blue--300": { + "type": "color", + "value": "#0066cc", "filePath": "tokens/default/charts.json", "isSource": true, "original": { - "type": "string", - "value": "middle" + "type": "color", + "value": "{color.blue.50}" }, - "name": "pf-t--chart--global--label--text-anchor", + "name": "pf-t--chart--color--blue--300", "attributes": { "category": "chart", - "type": "global", - "item": "label", - "subitem": "text-anchor" + "type": "color", + "item": "blue", + "subitem": "300" }, "path": [ "chart", - "global", - "label", - "text-anchor" + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } ] }, - "pf-t--chart--global--label--fill": { + "pf-t--chart--color--blue--400": { "type": "color", - "value": "#1f1f1f", + "value": "#004d99", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.90}" + "value": "{color.blue.60}" }, - "name": "pf-t--chart--global--label--fill", + "name": "pf-t--chart--color--blue--400", "attributes": { "category": "chart", - "type": "global", - "item": "label", - "subitem": "fill" + "type": "color", + "item": "blue", + "subitem": "400" }, "path": [ "chart", - "global", - "label", - "fill" + "color", + "blue", + "400" ], "references": [ { "type": "color", - "value": "#1f1f1f", + "value": "#004d99", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#1f1f1f" + "value": "#004d99" }, - "name": "pf-t--color--gray--90", + "name": "pf-t--color--blue--60", "attributes": { "category": "color", - "type": "gray", - "item": "90" + "type": "blue", + "item": "60" }, "path": [ "color", - "gray", - "90" + "blue", + "60" ] } ] }, - "pf-t--chart--global--layout--padding": { - "type": "number", - "value": 50, + "pf-t--chart--color--blue--500": { + "type": "color", + "value": "#003366", "filePath": "tokens/default/charts.json", "isSource": true, "original": { - "type": "number", - "value": 50 + "type": "color", + "value": "{color.blue.70}" }, - "name": "pf-t--chart--global--layout--padding", + "name": "pf-t--chart--color--blue--500", "attributes": { "category": "chart", - "type": "global", - "item": "layout", - "subitem": "padding" + "type": "color", + "item": "blue", + "subitem": "500" }, "path": [ "chart", - "global", - "layout", - "padding" - ] - }, - "pf-t--chart--global--layout--height": { - "type": "number", - "value": 300, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--chart--global--layout--height", - "attributes": { - "category": "chart", - "type": "global", - "item": "layout", - "subitem": "height" - }, - "path": [ - "chart", - "global", - "layout", - "height" - ] - }, - "pf-t--chart--global--layout--width": { - "type": "number", - "value": 450, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "number", - "value": 450 - }, - "name": "pf-t--chart--global--layout--width", - "attributes": { - "category": "chart", - "type": "global", - "item": "layout", - "subitem": "width" - }, - "path": [ - "chart", - "global", - "layout", - "width" - ] - }, - "pf-t--chart--global--stroke-line-join": { - "type": "string", - "value": "round", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "string", - "value": "round" - }, - "name": "pf-t--chart--global--stroke-line-join", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke-line-join" - }, - "path": [ - "chart", - "global", - "stroke-line-join" + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + } ] }, - "pf-t--chart--theme--colorscales--blue--colorscale--100": { + "pf-t--chart--color--green--100": { "type": "color", - "value": "#0066cc", + "value": "#afdc8f", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.300}" + "value": "{color.green.30}" }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--100", + "name": "pf-t--chart--color--green--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" + "type": "color", + "item": "green", + "subitem": "100" }, "path": [ "chart", - "theme", - "colorscales", - "blue", - "colorscale", + "color", + "green", "100" ], "references": [ { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.50}" + "value": "#afdc8f" }, - "name": "pf-t--chart--color--blue--300", + "name": "pf-t--color--green--30", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "300" + "category": "color", + "type": "green", + "item": "30" }, "path": [ - "chart", "color", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } + "green", + "30" ] } ] }, - "pf-t--chart--theme--colorscales--blue--colorscale--200": { + "pf-t--chart--color--green--200": { "type": "color", - "value": "#92c5f9", + "value": "#87bb62", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.100}" + "value": "{color.green.40}" }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--200", + "name": "pf-t--chart--color--green--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" + "type": "color", + "item": "green", + "subitem": "200" }, "path": [ "chart", - "theme", - "colorscales", - "blue", - "colorscale", + "color", + "green", "200" ], "references": [ { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.30}" + "value": "#87bb62" }, - "name": "pf-t--chart--color--blue--100", + "name": "pf-t--color--green--40", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "100" + "category": "color", + "type": "green", + "item": "40" }, "path": [ - "chart", "color", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } + "green", + "40" ] } ] }, - "pf-t--chart--theme--colorscales--blue--colorscale--300": { + "pf-t--chart--color--green--300": { "type": "color", - "value": "#003366", + "value": "#63993d", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.500}" + "value": "{color.green.50}" }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--300", + "name": "pf-t--chart--color--green--300", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" + "type": "color", + "item": "green", + "subitem": "300" }, "path": [ "chart", - "theme", - "colorscales", - "blue", - "colorscale", + "color", + "green", "300" ], "references": [ { "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.70}" + "value": "#63993d" }, - "name": "pf-t--chart--color--blue--500", + "name": "pf-t--color--green--50", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "500" + "category": "color", + "type": "green", + "item": "50" }, "path": [ - "chart", "color", - "blue", - "500" - ], - "references": [ - { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#003366" - }, - "name": "pf-t--color--blue--70", - "attributes": { - "category": "color", - "type": "blue", - "item": "70" - }, - "path": [ - "color", - "blue", - "70" - ] - } + "green", + "50" ] } ] }, - "pf-t--chart--theme--colorscales--blue--colorscale--400": { + "pf-t--chart--color--green--400": { "type": "color", - "value": "#4394e5", + "value": "#3d7317", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.200}" + "value": "{color.green.60}" }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--400", + "name": "pf-t--chart--color--green--400", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" + "type": "color", + "item": "green", + "subitem": "400" }, "path": [ "chart", - "theme", - "colorscales", - "blue", - "colorscale", + "color", + "green", "400" ], "references": [ { "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.40}" + "value": "#3d7317" }, - "name": "pf-t--chart--color--blue--200", + "name": "pf-t--color--green--60", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "200" + "category": "color", + "type": "green", + "item": "60" }, "path": [ - "chart", "color", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } + "green", + "60" ] } ] }, - "pf-t--chart--theme--colorscales--blue--colorscale--500": { + "pf-t--chart--color--green--500": { "type": "color", - "value": "#004d99", + "value": "#204d00", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.400}" + "value": "{color.green.70}" }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--500", + "name": "pf-t--chart--color--green--500", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" + "type": "color", + "item": "green", + "subitem": "500" }, "path": [ "chart", - "theme", - "colorscales", - "blue", - "colorscale", + "color", + "green", "500" ], "references": [ { "type": "color", - "value": "#004d99", - "filePath": "tokens/default/charts.json", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.60}" + "value": "#204d00" }, - "name": "pf-t--chart--color--blue--400", + "name": "pf-t--color--green--70", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "400" + "category": "color", + "type": "green", + "item": "70" }, "path": [ - "chart", "color", - "blue", - "400" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } + "green", + "70" ] } ] }, - "pf-t--chart--theme--colorscales--teal--colorscale--100": { + "pf-t--chart--color--teal--100": { "type": "color", - "value": "#37a3a3", + "value": "#9ad8d8", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.300}" + "value": "{color.teal.30}" }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--100", + "name": "pf-t--chart--color--teal--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" + "type": "color", + "item": "teal", + "subitem": "100" }, "path": [ "chart", - "theme", - "colorscales", + "color", "teal", - "colorscale", "100" ], "references": [ { "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.50}" + "value": "#9ad8d8" }, - "name": "pf-t--chart--color--teal--300", + "name": "pf-t--color--teal--30", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "300" + "category": "color", + "type": "teal", + "item": "30" }, "path": [ - "chart", "color", "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } + "30" ] } ] }, - "pf-t--chart--theme--colorscales--teal--colorscale--200": { + "pf-t--chart--color--teal--200": { "type": "color", - "value": "#9ad8d8", + "value": "#63bdbd", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.100}" + "value": "{color.teal.40}" }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--200", + "name": "pf-t--chart--color--teal--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" + "type": "color", + "item": "teal", + "subitem": "200" }, "path": [ "chart", - "theme", - "colorscales", + "color", "teal", - "colorscale", "200" ], "references": [ { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.30}" + "value": "#63bdbd" }, - "name": "pf-t--chart--color--teal--100", + "name": "pf-t--color--teal--40", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "100" + "category": "color", + "type": "teal", + "item": "40" }, "path": [ - "chart", "color", "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } + "40" ] } ] }, - "pf-t--chart--theme--colorscales--teal--colorscale--300": { + "pf-t--chart--color--teal--300": { "type": "color", - "value": "#004d4d", + "value": "#37a3a3", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.500}" + "value": "{color.teal.50}" }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--300", + "name": "pf-t--chart--color--teal--300", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" + "type": "color", + "item": "teal", + "subitem": "300" }, "path": [ "chart", - "theme", - "colorscales", + "color", "teal", - "colorscale", "300" ], "references": [ { "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.70}" + "value": "#37a3a3" }, - "name": "pf-t--chart--color--teal--500", + "name": "pf-t--color--teal--50", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "500" + "category": "color", + "type": "teal", + "item": "50" }, "path": [ - "chart", "color", "teal", - "500" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } + "50" ] } ] }, - "pf-t--chart--theme--colorscales--teal--colorscale--400": { + "pf-t--chart--color--teal--400": { "type": "color", - "value": "#63bdbd", + "value": "#147878", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.200}" + "value": "{color.teal.60}" }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--400", + "name": "pf-t--chart--color--teal--400", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" + "type": "color", + "item": "teal", + "subitem": "400" }, "path": [ "chart", - "theme", - "colorscales", + "color", "teal", - "colorscale", "400" ], "references": [ { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/charts.json", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.40}" + "value": "#147878" }, - "name": "pf-t--chart--color--teal--200", + "name": "pf-t--color--teal--60", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "200" + "category": "color", + "type": "teal", + "item": "60" }, "path": [ - "chart", "color", "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } + "60" ] } ] }, - "pf-t--chart--theme--colorscales--teal--colorscale--500": { + "pf-t--chart--color--teal--500": { "type": "color", - "value": "#147878", + "value": "#004d4d", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.400}" + "value": "{color.teal.70}" }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--500", + "name": "pf-t--chart--color--teal--500", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" + "type": "color", + "item": "teal", + "subitem": "500" }, "path": [ "chart", - "theme", - "colorscales", + "color", "teal", - "colorscale", "500" ], "references": [ { "type": "color", - "value": "#147878", - "filePath": "tokens/default/charts.json", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.60}" + "value": "#004d4d" }, - "name": "pf-t--chart--color--teal--400", + "name": "pf-t--color--teal--70", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "400" + "category": "color", + "type": "teal", + "item": "70" }, "path": [ - "chart", "color", "teal", - "400" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } + "70" ] } ] }, - "pf-t--chart--theme--colorscales--yellow--colorscale--100": { + "pf-t--chart--color--purple--100": { "type": "color", - "value": "#dca614", + "value": "#b6a6e9", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.300}" + "value": "{color.purple.30}" }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--100", + "name": "pf-t--chart--color--purple--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" + "type": "color", + "item": "purple", + "subitem": "100" }, "path": [ "chart", - "theme", - "colorscales", - "yellow", - "colorscale", + "color", + "purple", "100" ], "references": [ { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.40}" + "value": "#b6a6e9" }, - "name": "pf-t--chart--color--yellow--300", + "name": "pf-t--color--purple--30", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "300" + "category": "color", + "type": "purple", + "item": "30" }, "path": [ - "chart", "color", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } + "purple", + "30" ] } ] }, - "pf-t--chart--theme--colorscales--yellow--colorscale--200": { + "pf-t--chart--color--purple--200": { "type": "color", - "value": "#ffe072", + "value": "#876fd4", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.100}" + "value": "{color.purple.40}" }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--200", + "name": "pf-t--chart--color--purple--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" + "type": "color", + "item": "purple", + "subitem": "200" }, "path": [ "chart", - "theme", - "colorscales", - "yellow", - "colorscale", + "color", + "purple", "200" ], "references": [ { "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.20}" + "value": "#876fd4" }, - "name": "pf-t--chart--color--yellow--100", + "name": "pf-t--color--purple--40", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "100" + "category": "color", + "type": "purple", + "item": "40" }, "path": [ - "chart", "color", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } + "purple", + "40" ] } ] }, - "pf-t--chart--theme--colorscales--yellow--colorscale--300": { + "pf-t--chart--color--purple--300": { "type": "color", - "value": "#96640f", + "value": "#5e40be", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.500}" + "value": "{color.purple.50}" }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--300", + "name": "pf-t--chart--color--purple--300", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" + "type": "color", + "item": "purple", + "subitem": "300" }, "path": [ "chart", - "theme", - "colorscales", - "yellow", - "colorscale", + "color", + "purple", "300" ], "references": [ { "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.60}" + "value": "#5e40be" }, - "name": "pf-t--chart--color--yellow--500", + "name": "pf-t--color--purple--50", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "500" + "category": "color", + "type": "purple", + "item": "50" }, "path": [ - "chart", "color", - "yellow", - "500" - ], - "references": [ - { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#96640f" - }, - "name": "pf-t--color--yellow--60", - "attributes": { - "category": "color", - "type": "yellow", - "item": "60" - }, - "path": [ - "color", - "yellow", - "60" - ] - } + "purple", + "50" ] } ] }, - "pf-t--chart--theme--colorscales--yellow--colorscale--400": { + "pf-t--chart--color--purple--400": { "type": "color", - "value": "#ffcc17", + "value": "#3d2785", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.200}" + "value": "{color.purple.60}" }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--400", + "name": "pf-t--chart--color--purple--400", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" + "type": "color", + "item": "purple", + "subitem": "400" }, "path": [ "chart", - "theme", - "colorscales", - "yellow", - "colorscale", + "color", + "purple", "400" ], "references": [ { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/charts.json", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.30}" + "value": "#3d2785" }, - "name": "pf-t--chart--color--yellow--200", + "name": "pf-t--color--purple--60", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "200" + "category": "color", + "type": "purple", + "item": "60" }, "path": [ - "chart", "color", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } + "purple", + "60" ] } ] }, - "pf-t--chart--theme--colorscales--yellow--colorscale--500": { + "pf-t--chart--color--purple--500": { "type": "color", - "value": "#b98412", + "value": "#21134d", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.400}" + "value": "{color.purple.70}" }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--500", + "name": "pf-t--chart--color--purple--500", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" + "type": "color", + "item": "purple", + "subitem": "500" }, "path": [ "chart", - "theme", - "colorscales", - "yellow", - "colorscale", + "color", + "purple", "500" ], "references": [ { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", + "value": "#21134d", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.50}" + "value": "#21134d" }, - "name": "pf-t--chart--color--yellow--400", + "name": "pf-t--color--purple--70", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "400" + "category": "color", + "type": "purple", + "item": "70" }, "path": [ - "chart", "color", - "yellow", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } + "purple", + "70" ] } ] }, - "pf-t--chart--theme--colorscales--gray--colorscale--100": { + "pf-t--chart--color--yellow--100": { "type": "color", - "value": "#c7c7c7", + "value": "#ffe072", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.300}" + "value": "{color.yellow.20}" }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--100", + "name": "pf-t--chart--color--yellow--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" + "type": "color", + "item": "yellow", + "subitem": "100" }, "path": [ "chart", - "theme", - "colorscales", - "gray", - "colorscale", + "color", + "yellow", "100" ], "references": [ { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/charts.json", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.30}" + "value": "#ffe072" }, - "name": "pf-t--chart--color--black--300", + "name": "pf-t--color--yellow--20", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "300" + "category": "color", + "type": "yellow", + "item": "20" }, "path": [ - "chart", "color", - "black", - "300" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } + "yellow", + "20" ] } ] }, - "pf-t--chart--theme--colorscales--gray--colorscale--200": { + "pf-t--chart--color--yellow--200": { "type": "color", - "value": "#f2f2f2", + "value": "#ffcc17", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.100}" + "value": "{color.yellow.30}" }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--200", + "name": "pf-t--chart--color--yellow--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" + "type": "color", + "item": "yellow", + "subitem": "200" }, "path": [ "chart", - "theme", - "colorscales", - "gray", - "colorscale", + "color", + "yellow", "200" ], "references": [ { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/charts.json", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.10}" + "value": "#ffcc17" }, - "name": "pf-t--chart--color--black--100", + "name": "pf-t--color--yellow--30", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "100" + "category": "color", + "type": "yellow", + "item": "30" }, "path": [ - "chart", "color", - "black", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } + "yellow", + "30" ] } ] }, - "pf-t--chart--theme--colorscales--gray--colorscale--300": { + "pf-t--chart--color--yellow--300": { "type": "color", - "value": "#707070", + "value": "#dca614", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.500}" + "value": "{color.yellow.40}" }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--300", + "name": "pf-t--chart--color--yellow--300", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" + "type": "color", + "item": "yellow", + "subitem": "300" }, "path": [ "chart", - "theme", - "colorscales", - "gray", - "colorscale", + "color", + "yellow", "300" ], "references": [ { "type": "color", - "value": "#707070", - "filePath": "tokens/default/charts.json", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.50}" + "value": "#dca614" }, - "name": "pf-t--chart--color--black--500", + "name": "pf-t--color--yellow--40", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "500" + "category": "color", + "type": "yellow", + "item": "40" }, "path": [ - "chart", "color", - "black", - "500" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } + "yellow", + "40" ] } ] }, - "pf-t--chart--theme--colorscales--gray--colorscale--400": { + "pf-t--chart--color--yellow--400": { "type": "color", - "value": "#e0e0e0", + "value": "#b98412", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.200}" + "value": "{color.yellow.50}" }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--400", + "name": "pf-t--chart--color--yellow--400", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" + "type": "color", + "item": "yellow", + "subitem": "400" }, "path": [ "chart", - "theme", - "colorscales", - "gray", - "colorscale", + "color", + "yellow", "400" ], "references": [ { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/charts.json", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.20}" + "value": "#b98412" }, - "name": "pf-t--chart--color--black--200", + "name": "pf-t--color--yellow--50", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "200" + "category": "color", + "type": "yellow", + "item": "50" }, "path": [ - "chart", "color", - "black", - "200" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } + "yellow", + "50" ] } ] }, - "pf-t--chart--theme--colorscales--gray--colorscale--500": { + "pf-t--chart--color--yellow--500": { "type": "color", - "value": "#a3a3a3", + "value": "#96640f", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.400}" + "value": "{color.yellow.60}" }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--500", + "name": "pf-t--chart--color--yellow--500", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" + "type": "color", + "item": "yellow", + "subitem": "500" }, "path": [ "chart", - "theme", - "colorscales", - "gray", - "colorscale", + "color", + "yellow", "500" ], "references": [ { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/charts.json", + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.40}" + "value": "#96640f" }, - "name": "pf-t--chart--color--black--400", + "name": "pf-t--color--yellow--60", "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "400" + "category": "color", + "type": "yellow", + "item": "60" }, "path": [ - "chart", "color", - "black", - "400" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } + "yellow", + "60" ] } ] }, - "pf-t--chart--theme--colorscales--green--colorscale--100": { + "pf-t--chart--color--orange--100": { "type": "color", - "value": "#63993d", + "value": "#f8ae54", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.300}" + "value": "{color.orange.30}" }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--100", + "name": "pf-t--chart--color--orange--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" + "type": "color", + "item": "orange", + "subitem": "100" }, "path": [ "chart", - "theme", - "colorscales", - "green", - "colorscale", + "color", + "orange", "100" ], "references": [ { "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.50}" + "value": "#f8ae54" }, - "name": "pf-t--chart--color--green--300", + "name": "pf-t--color--orange--30", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "300" + "category": "color", + "type": "orange", + "item": "30" }, "path": [ - "chart", "color", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } + "orange", + "30" ] } ] }, - "pf-t--chart--theme--colorscales--green--colorscale--200": { + "pf-t--chart--color--orange--200": { "type": "color", - "value": "#afdc8f", + "value": "#f5921b", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.100}" + "value": "{color.orange.40}" }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--200", + "name": "pf-t--chart--color--orange--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" + "type": "color", + "item": "orange", + "subitem": "200" }, "path": [ "chart", - "theme", - "colorscales", - "green", - "colorscale", + "color", + "orange", "200" ], "references": [ { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.30}" + "value": "#f5921b" }, - "name": "pf-t--chart--color--green--100", + "name": "pf-t--color--orange--40", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "100" + "category": "color", + "type": "orange", + "item": "40" }, "path": [ - "chart", "color", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } + "orange", + "40" ] } ] }, - "pf-t--chart--theme--colorscales--green--colorscale--300": { + "pf-t--chart--color--orange--300": { "type": "color", - "value": "#204d00", + "value": "#ca6c0f", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.500}" + "value": "{color.orange.50}" }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--300", + "name": "pf-t--chart--color--orange--300", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" + "type": "color", + "item": "orange", + "subitem": "300" }, "path": [ "chart", - "theme", - "colorscales", - "green", - "colorscale", + "color", + "orange", "300" ], "references": [ { "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.70}" + "value": "#ca6c0f" }, - "name": "pf-t--chart--color--green--500", + "name": "pf-t--color--orange--50", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "500" + "category": "color", + "type": "orange", + "item": "50" }, "path": [ - "chart", "color", - "green", - "500" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } + "orange", + "50" ] } ] }, - "pf-t--chart--theme--colorscales--green--colorscale--400": { + "pf-t--chart--color--orange--400": { "type": "color", - "value": "#87bb62", + "value": "#9e4a06", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.200}" + "value": "{color.orange.60}" }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--400", + "name": "pf-t--chart--color--orange--400", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" + "type": "color", + "item": "orange", + "subitem": "400" }, "path": [ "chart", - "theme", - "colorscales", - "green", - "colorscale", + "color", + "orange", "400" ], "references": [ { "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/charts.json", + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.40}" + "value": "#9e4a06" }, - "name": "pf-t--chart--color--green--200", + "name": "pf-t--color--orange--60", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "200" + "category": "color", + "type": "orange", + "item": "60" }, "path": [ - "chart", "color", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } + "orange", + "60" ] } ] }, - "pf-t--chart--theme--colorscales--green--colorscale--500": { + "pf-t--chart--color--orange--500": { "type": "color", - "value": "#3d7317", + "value": "#732e00", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.400}" + "value": "{color.orange.70}" }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--500", + "name": "pf-t--chart--color--orange--500", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" + "type": "color", + "item": "orange", + "subitem": "500" }, "path": [ "chart", - "theme", - "colorscales", - "green", - "colorscale", + "color", + "orange", "500" ], "references": [ { "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.60}" + "value": "#732e00" }, - "name": "pf-t--chart--color--green--400", + "name": "pf-t--color--orange--70", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "400" + "category": "color", + "type": "orange", + "item": "70" }, "path": [ - "chart", "color", - "green", - "400" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } + "orange", + "70" ] } ] }, - "pf-t--chart--theme--colorscales--purple--colorscale--100": { + "pf-t--chart--color--red-orange--100": { "type": "color", - "value": "#5e40be", + "value": "#f89b78", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.300}" + "value": "{color.red-orange.30}" }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--100", + "name": "pf-t--chart--color--red-orange--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" + "type": "color", + "item": "red-orange", + "subitem": "100" }, "path": [ "chart", - "theme", - "colorscales", - "purple", - "colorscale", + "color", + "red-orange", "100" ], "references": [ { "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/charts.json", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.50}" + "value": "#f89b78" }, - "name": "pf-t--chart--color--purple--300", + "name": "pf-t--color--red-orange--30", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "300" + "category": "color", + "type": "red-orange", + "item": "30" }, "path": [ - "chart", "color", - "purple", - "300" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } + "red-orange", + "30" ] } ] }, - "pf-t--chart--theme--colorscales--purple--colorscale--200": { + "pf-t--chart--color--red-orange--200": { "type": "color", - "value": "#b6a6e9", + "value": "#f4784a", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.100}" + "value": "{color.red-orange.40}" }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--200", + "name": "pf-t--chart--color--red-orange--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" + "type": "color", + "item": "red-orange", + "subitem": "200" }, "path": [ "chart", - "theme", - "colorscales", - "purple", - "colorscale", + "color", + "red-orange", "200" ], "references": [ { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/charts.json", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.30}" + "value": "#f4784a" }, - "name": "pf-t--chart--color--purple--100", + "name": "pf-t--color--red-orange--40", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "100" + "category": "color", + "type": "red-orange", + "item": "40" }, "path": [ - "chart", "color", - "purple", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } + "red-orange", + "40" ] } ] }, - "pf-t--chart--theme--colorscales--purple--colorscale--300": { + "pf-t--chart--color--red-orange--300": { "type": "color", - "value": "#21134d", + "value": "#f0561d", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.500}" + "value": "{color.red-orange.50}" }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--300", + "name": "pf-t--chart--color--red-orange--300", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" + "type": "color", + "item": "red-orange", + "subitem": "300" }, "path": [ "chart", - "theme", - "colorscales", - "purple", - "colorscale", + "color", + "red-orange", "300" ], "references": [ { "type": "color", - "value": "#21134d", - "filePath": "tokens/default/charts.json", + "value": "#f0561d", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.70}" + "value": "#f0561d" }, - "name": "pf-t--chart--color--purple--500", + "name": "pf-t--color--red-orange--50", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "500" + "category": "color", + "type": "red-orange", + "item": "50" }, "path": [ - "chart", "color", - "purple", - "500" - ], - "references": [ - { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#21134d" - }, - "name": "pf-t--color--purple--70", - "attributes": { - "category": "color", - "type": "purple", - "item": "70" - }, - "path": [ - "color", - "purple", - "70" - ] - } + "red-orange", + "50" ] } ] }, - "pf-t--chart--theme--colorscales--purple--colorscale--400": { + "pf-t--chart--color--red-orange--400": { "type": "color", - "value": "#876fd4", + "value": "#b1380b", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.200}" + "value": "{color.red-orange.60}" }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--400", + "name": "pf-t--chart--color--red-orange--400", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" + "type": "color", + "item": "red-orange", + "subitem": "400" }, "path": [ "chart", - "theme", - "colorscales", - "purple", - "colorscale", + "color", + "red-orange", "400" ], "references": [ { "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/charts.json", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.40}" + "value": "#b1380b" }, - "name": "pf-t--chart--color--purple--200", + "name": "pf-t--color--red-orange--60", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "200" + "category": "color", + "type": "red-orange", + "item": "60" }, "path": [ - "chart", "color", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } + "red-orange", + "60" ] } ] }, - "pf-t--chart--theme--colorscales--purple--colorscale--500": { + "pf-t--chart--color--red-orange--500": { "type": "color", - "value": "#3d2785", + "value": "#731f00", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.400}" + "value": "{color.red-orange.70}" }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--500", + "name": "pf-t--chart--color--red-orange--500", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" + "type": "color", + "item": "red-orange", + "subitem": "500" }, "path": [ "chart", - "theme", - "colorscales", - "purple", - "colorscale", + "color", + "red-orange", "500" ], "references": [ { "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/charts.json", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.60}" + "value": "#731f00" }, - "name": "pf-t--chart--color--purple--400", + "name": "pf-t--color--red-orange--70", "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "400" + "category": "color", + "type": "red-orange", + "item": "70" }, "path": [ - "chart", "color", - "purple", - "400" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } + "red-orange", + "70" ] } ] }, - "pf-t--chart--theme--colorscales--orange--colorscale--100": { + "pf-t--chart--color--black--100": { "type": "color", - "value": "#ca6c0f", + "value": "#f2f2f2", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.300}" + "value": "{color.gray.10}" }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--100", + "name": "pf-t--chart--color--black--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" + "type": "color", + "item": "black", + "subitem": "100" }, "path": [ "chart", - "theme", - "colorscales", - "orange", - "colorscale", + "color", + "black", "100" ], "references": [ { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.50}" + "value": "#f2f2f2" }, - "name": "pf-t--chart--color--orange--300", + "name": "pf-t--color--gray--10", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "300" + "category": "color", + "type": "gray", + "item": "10" }, "path": [ - "chart", "color", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } + "gray", + "10" ] } ] }, - "pf-t--chart--theme--colorscales--orange--colorscale--200": { + "pf-t--chart--color--black--200": { "type": "color", - "value": "#f8ae54", + "value": "#e0e0e0", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.100}" + "value": "{color.gray.20}" }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--200", + "name": "pf-t--chart--color--black--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" + "type": "color", + "item": "black", + "subitem": "200" }, "path": [ "chart", - "theme", - "colorscales", - "orange", - "colorscale", + "color", + "black", "200" ], "references": [ { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.30}" + "value": "#e0e0e0" }, - "name": "pf-t--chart--color--orange--100", + "name": "pf-t--color--gray--20", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "100" + "category": "color", + "type": "gray", + "item": "20" }, "path": [ - "chart", "color", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } + "gray", + "20" ] } ] }, - "pf-t--chart--theme--colorscales--orange--colorscale--300": { + "pf-t--chart--color--black--300": { "type": "color", - "value": "#732e00", + "value": "#c7c7c7", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.500}" + "value": "{color.gray.30}" }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--300", + "name": "pf-t--chart--color--black--300", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" + "type": "color", + "item": "black", + "subitem": "300" }, "path": [ "chart", - "theme", - "colorscales", - "orange", - "colorscale", + "color", + "black", "300" ], "references": [ { "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.70}" + "value": "#c7c7c7" }, - "name": "pf-t--chart--color--orange--500", + "name": "pf-t--color--gray--30", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "500" + "category": "color", + "type": "gray", + "item": "30" }, "path": [ - "chart", "color", - "orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#732e00" - }, - "name": "pf-t--color--orange--70", - "attributes": { - "category": "color", - "type": "orange", - "item": "70" - }, - "path": [ - "color", - "orange", - "70" - ] - } + "gray", + "30" ] } ] }, - "pf-t--chart--theme--colorscales--orange--colorscale--400": { + "pf-t--chart--color--black--400": { "type": "color", - "value": "#f5921b", + "value": "#a3a3a3", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.200}" + "value": "{color.gray.40}" }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--400", + "name": "pf-t--chart--color--black--400", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" + "type": "color", + "item": "black", + "subitem": "400" }, "path": [ "chart", - "theme", - "colorscales", - "orange", - "colorscale", + "color", + "black", "400" ], "references": [ { "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.40}" + "value": "#a3a3a3" }, - "name": "pf-t--chart--color--orange--200", + "name": "pf-t--color--gray--40", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "200" + "category": "color", + "type": "gray", + "item": "40" }, "path": [ - "chart", "color", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } + "gray", + "40" ] } ] }, - "pf-t--chart--theme--colorscales--orange--colorscale--500": { + "pf-t--chart--color--black--500": { "type": "color", - "value": "#9e4a06", + "value": "#707070", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.400}" + "value": "{color.gray.50}" }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--500", + "name": "pf-t--chart--color--black--500", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" + "type": "color", + "item": "black", + "subitem": "500" }, "path": [ "chart", - "theme", - "colorscales", - "orange", - "colorscale", + "color", + "black", "500" ], "references": [ { "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/charts.json", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.60}" + "value": "#707070" }, - "name": "pf-t--chart--color--orange--400", + "name": "pf-t--color--gray--50", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "400" + "category": "color", + "type": "gray", + "item": "50" }, "path": [ - "chart", "color", - "orange", - "400" - ], - "references": [ - { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9e4a06" - }, - "name": "pf-t--color--orange--60", - "attributes": { - "category": "color", - "type": "orange", - "item": "60" - }, - "path": [ - "color", - "orange", - "60" - ] - } + "gray", + "50" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100": { - "type": "color", - "value": "#0066cc", + "pf-t--chart--global--BorderWidth--xs": { + "type": "number", + "value": 1, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--chart--global--BorderWidth--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "xs" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "xs" + ] + }, + "pf-t--chart--global--BorderWidth--sm": { + "type": "number", + "value": 2, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--chart--global--BorderWidth--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "sm" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "sm" + ] + }, + "pf-t--chart--global--BorderWidth--lg": { + "type": "number", + "value": 8, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--chart--global--BorderWidth--lg", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "lg" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "lg" + ] + }, + "pf-t--chart--global--stroke--width--xs": { + "type": "number", + "value": 1, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--chart--global--stroke--width--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke", + "subitem": "width", + "state": "xs" + }, + "path": [ + "chart", + "global", + "stroke", + "width", + "xs" + ] + }, + "pf-t--chart--global--stroke--width--sm": { + "type": "number", + "value": 2, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--chart--global--stroke--width--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke", + "subitem": "width", + "state": "sm" + }, + "path": [ + "chart", + "global", + "stroke", + "width", + "sm" + ] + }, + "pf-t--chart--global--fill--color--100": { + "type": "color", + "value": "#f2f2f2", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.300}" + "value": "{color.gray.10}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100", + "name": "pf-t--chart--global--fill--color--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "fill", + "subitem": "color", + "state": "100" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", + "global", + "fill", + "color", "100" ], "references": [ { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.50}" + "value": "#f2f2f2" }, - "name": "pf-t--chart--color--blue--300", + "name": "pf-t--color--gray--10", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "300" + "category": "color", + "type": "gray", + "item": "10" }, "path": [ - "chart", "color", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } + "gray", + "10" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200": { + "pf-t--chart--global--fill--color--200": { "type": "color", - "value": "#63993d", + "value": "#e0e0e0", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.300}" + "value": "{color.gray.20}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200", + "name": "pf-t--chart--global--fill--color--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "fill", + "subitem": "color", + "state": "200" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", + "global", + "fill", + "color", "200" ], "references": [ { "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.50}" + "value": "#e0e0e0" }, - "name": "pf-t--chart--color--green--300", + "name": "pf-t--color--gray--20", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "300" + "category": "color", + "type": "gray", + "item": "20" }, "path": [ - "chart", "color", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } + "gray", + "20" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300": { + "pf-t--chart--global--fill--color--300": { "type": "color", - "value": "#37a3a3", + "value": "#c7c7c7", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.300}" + "value": "{color.gray.30}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300", + "name": "pf-t--chart--global--fill--color--300", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "fill", + "subitem": "color", + "state": "300" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", + "global", + "fill", + "color", "300" ], "references": [ { "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.50}" + "value": "#c7c7c7" }, - "name": "pf-t--chart--color--teal--300", + "name": "pf-t--color--gray--30", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "300" + "category": "color", + "type": "gray", + "item": "30" }, "path": [ - "chart", "color", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } + "gray", + "30" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400": { + "pf-t--chart--global--fill--color--400": { "type": "color", - "value": "#dca614", + "value": "#a3a3a3", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.300}" + "value": "{color.gray.40}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400", + "name": "pf-t--chart--global--fill--color--400", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "fill", + "subitem": "color", + "state": "400" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", + "global", + "fill", + "color", "400" ], "references": [ { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.40}" + "value": "#a3a3a3" }, - "name": "pf-t--chart--color--yellow--300", + "name": "pf-t--color--gray--40", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "300" + "category": "color", + "type": "gray", + "item": "40" }, "path": [ - "chart", "color", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } + "gray", + "40" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500": { + "pf-t--chart--global--fill--color--500": { "type": "color", - "value": "#ca6c0f", + "value": "#707070", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.300}" + "value": "{color.gray.50}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500", + "name": "pf-t--chart--global--fill--color--500", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "fill", + "subitem": "color", + "state": "500" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", + "global", + "fill", + "color", "500" ], "references": [ { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.50}" + "value": "#707070" }, - "name": "pf-t--chart--color--orange--300", + "name": "pf-t--color--gray--50", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "300" + "category": "color", + "type": "gray", + "item": "50" }, "path": [ - "chart", "color", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } + "gray", + "50" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600": { + "pf-t--chart--global--fill--color--700": { "type": "color", - "value": "#92c5f9", + "value": "#383838", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.100}" + "value": "{color.gray.70}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600", + "name": "pf-t--chart--global--fill--color--700", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "fill", + "subitem": "color", + "state": "700" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "600" + "global", + "fill", + "color", + "700" ], "references": [ { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", + "value": "#383838", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.30}" + "value": "#383838" }, - "name": "pf-t--chart--color--blue--100", + "name": "pf-t--color--gray--70", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "100" + "category": "color", + "type": "gray", + "item": "70" }, "path": [ - "chart", "color", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } + "gray", + "70" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700": { + "pf-t--chart--global--fill--color--900": { "type": "color", - "value": "#204d00", + "value": "#1f1f1f", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.500}" + "value": "{color.gray.90}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700", + "name": "pf-t--chart--global--fill--color--900", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "fill", + "subitem": "color", + "state": "900" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "700" + "global", + "fill", + "color", + "900" ], "references": [ { "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.70}" + "value": "#1f1f1f" }, - "name": "pf-t--chart--color--green--500", + "name": "pf-t--color--gray--90", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "500" + "category": "color", + "type": "gray", + "item": "90" }, "path": [ - "chart", "color", - "green", - "500" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } + "gray", + "90" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800": { + "pf-t--chart--global--fill--color--white": { "type": "color", - "value": "#9ad8d8", + "value": "#ffffff", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.100}" + "value": "{color.white}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800", + "name": "pf-t--chart--global--fill--color--white", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "fill", + "subitem": "color", + "state": "white" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "800" + "global", + "fill", + "color", + "white" ], "references": [ { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.30}" + "value": "#ffffff" }, - "name": "pf-t--chart--color--teal--100", + "name": "pf-t--color--white", "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "100" + "category": "color", + "type": "white" }, "path": [ - "chart", "color", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } + "white" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900": { + "pf-t--chart--global--warning--color--100": { "type": "color", - "value": "#96640f", + "value": "#f5921b", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.500}" + "value": "{color.orange.40}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900", + "name": "pf-t--chart--global--warning--color--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "warning", + "subitem": "color", + "state": "100" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "900" + "global", + "warning", + "color", + "100" ], "references": [ { "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.60}" + "value": "#f5921b" }, - "name": "pf-t--chart--color--yellow--500", + "name": "pf-t--color--orange--40", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "500" + "category": "color", + "type": "orange", + "item": "40" }, "path": [ - "chart", "color", - "yellow", - "500" - ], - "references": [ - { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#96640f" - }, - "name": "pf-t--color--yellow--60", - "attributes": { - "category": "color", - "type": "yellow", - "item": "60" - }, - "path": [ - "color", - "yellow", - "60" - ] - } + "orange", + "40" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000": { + "pf-t--chart--global--warning--color--200": { "type": "color", - "value": "#f8ae54", + "value": "#dca614", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.100}" + "value": "{color.yellow.40}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000", + "name": "pf-t--chart--global--warning--color--200", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "warning", + "subitem": "color", + "state": "200" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1000" + "global", + "warning", + "color", + "200" ], "references": [ { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.30}" + "value": "#dca614" }, - "name": "pf-t--chart--color--orange--100", + "name": "pf-t--color--yellow--40", "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "100" + "category": "color", + "type": "yellow", + "item": "40" }, "path": [ - "chart", "color", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } + "yellow", + "40" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100": { + "pf-t--chart--global--success--color--100": { "type": "color", - "value": "#003366", + "value": "#0066cc", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.500}" + "value": "{color.blue.50}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100", + "name": "pf-t--chart--global--success--color--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "success", + "subitem": "color", + "state": "100" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1100" + "global", + "success", + "color", + "100" ], "references": [ { "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.70}" + "value": "#0066cc" }, - "name": "pf-t--chart--color--blue--500", + "name": "pf-t--color--blue--50", "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "500" + "category": "color", + "type": "blue", + "item": "50" }, "path": [ - "chart", "color", "blue", - "500" - ], - "references": [ - { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#003366" - }, - "name": "pf-t--color--blue--70", - "attributes": { - "category": "color", - "type": "blue", - "item": "70" - }, - "path": [ - "color", - "blue", - "70" - ] - } + "50" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200": { + "pf-t--chart--global--danger--color--100": { "type": "color", - "value": "#afdc8f", + "value": "#b1380b", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.100}" + "value": "{color.red-orange.60}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200", + "name": "pf-t--chart--global--danger--color--100", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "danger", + "subitem": "color", + "state": "100" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1200" + "global", + "danger", + "color", + "100" ], "references": [ { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.30}" + "value": "#b1380b" }, - "name": "pf-t--chart--color--green--100", + "name": "pf-t--color--red-orange--60", "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "100" + "category": "color", + "type": "red-orange", + "item": "60" }, "path": [ - "chart", "color", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } + "red-orange", + "60" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300": { - "type": "color", - "value": "#004d4d", + "pf-t--chart--global--FontSize--xs": { + "type": "number", + "value": 12, "filePath": "tokens/default/charts.json", "isSource": true, "original": { - "type": "color", - "value": "{chart.color.teal.500}" + "type": "number", + "value": 12 }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300", + "name": "pf-t--chart--global--FontSize--xs", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "FontSize", + "subitem": "xs" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1300" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } + "global", + "FontSize", + "xs" ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400": { - "type": "color", - "value": "#ffe072", + "pf-t--chart--global--FontSize--sm": { + "type": "number", + "value": 14, "filePath": "tokens/default/charts.json", "isSource": true, "original": { - "type": "color", - "value": "{chart.color.yellow.100}" + "type": "number", + "value": 14 }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400", + "name": "pf-t--chart--global--FontSize--sm", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "FontSize", + "subitem": "sm" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1400" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } + "global", + "FontSize", + "sm" ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500": { - "type": "color", - "value": "#732e00", + "pf-t--chart--global--FontSize--lg": { + "type": "number", + "value": 18, "filePath": "tokens/default/charts.json", "isSource": true, "original": { - "type": "color", - "value": "{chart.color.orange.500}" + "type": "number", + "value": 18 }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500", + "name": "pf-t--chart--global--FontSize--lg", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "FontSize", + "subitem": "lg" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1500" - ], - "references": [ - { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.70}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#732e00" - }, - "name": "pf-t--color--orange--70", - "attributes": { - "category": "color", - "type": "orange", - "item": "70" - }, - "path": [ - "color", - "orange", - "70" - ] - } - ] - } + "global", + "FontSize", + "lg" ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600": { - "type": "color", - "value": "#4394e5", + "pf-t--chart--global--FontSize--2xl": { + "type": "number", + "value": 22, "filePath": "tokens/default/charts.json", "isSource": true, "original": { - "type": "color", - "value": "{chart.color.blue.200}" + "type": "number", + "value": 22 }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600", + "name": "pf-t--chart--global--FontSize--2xl", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "FontSize", + "subitem": "2xl" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1600" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } + "global", + "FontSize", + "2xl" ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700": { - "type": "color", - "value": "#3d7317", + "pf-t--chart--global--letter-spacing": { + "type": "string", + "value": "normal", "filePath": "tokens/default/charts.json", "isSource": true, "original": { - "type": "color", - "value": "{chart.color.green.400}" + "type": "string", + "value": "normal" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700", + "name": "pf-t--chart--global--letter-spacing", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "letter-spacing" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1700" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - } + "global", + "letter-spacing" ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800": { - "type": "color", - "value": "#63bdbd", + "pf-t--chart--global--stroke-line-cap": { + "type": "string", + "value": "round", "filePath": "tokens/default/charts.json", "isSource": true, "original": { - "type": "color", - "value": "{chart.color.teal.200}" + "type": "string", + "value": "round" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800", + "name": "pf-t--chart--global--stroke-line-cap", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "stroke-line-cap" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1800" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", + "global", + "stroke-line-cap" + ] + }, + "pf-t--chart--global--label--padding": { + "type": "number", + "value": 10, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 10 + }, + "name": "pf-t--chart--global--label--padding", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "padding" + }, + "path": [ + "chart", + "global", + "label", + "padding" + ] + }, + "pf-t--chart--global--label--margin": { + "type": "number", + "value": 8, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--chart--global--label--margin", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "margin" + }, + "path": [ + "chart", + "global", + "label", + "margin" + ] + }, + "pf-t--chart--global--label--stroke": { + "width": { + "type": "number", + "value": 0, + "filePath": "tokens/default/charts.json", + "isSource": true + }, + "type": "string", + "value": "transparent", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "width": { + "type": "number", + "value": 0, "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } + "isSource": true + }, + "type": "string", + "value": "transparent" + }, + "name": "pf-t--chart--global--label--stroke", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "stroke" + }, + "path": [ + "chart", + "global", + "label", + "stroke" ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900": { + "pf-t--chart--global--label--text-anchor": { + "type": "string", + "value": "middle", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "string", + "value": "middle" + }, + "name": "pf-t--chart--global--label--text-anchor", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "text-anchor" + }, + "path": [ + "chart", + "global", + "label", + "text-anchor" + ] + }, + "pf-t--chart--global--label--fill": { "type": "color", - "value": "#b98412", + "value": "#1f1f1f", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.400}" + "value": "{color.gray.90}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900", + "name": "pf-t--chart--global--label--fill", "attributes": { "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" + "type": "global", + "item": "label", + "subitem": "fill" }, "path": [ "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1900" + "global", + "label", + "fill" ], "references": [ { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.50}" + "value": "#1f1f1f" }, - "name": "pf-t--chart--color--yellow--400", + "name": "pf-t--color--gray--90", "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "400" + "category": "color", + "type": "gray", + "item": "90" }, "path": [ - "chart", "color", - "yellow", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } + "gray", + "90" ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000": { - "type": "color", - "value": "#f5921b", + "pf-t--chart--global--layout--padding": { + "type": "number", + "value": 50, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--chart--global--layout--padding", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "padding" + }, + "path": [ + "chart", + "global", + "layout", + "padding" + ] + }, + "pf-t--chart--global--layout--height": { + "type": "number", + "value": 300, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--chart--global--layout--height", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "height" + }, + "path": [ + "chart", + "global", + "layout", + "height" + ] + }, + "pf-t--chart--global--layout--width": { + "type": "number", + "value": 450, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 450 + }, + "name": "pf-t--chart--global--layout--width", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "width" + }, + "path": [ + "chart", + "global", + "layout", + "width" + ] + }, + "pf-t--chart--global--stroke-line-join": { + "type": "string", + "value": "round", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "string", + "value": "round" + }, + "name": "pf-t--chart--global--stroke-line-join", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke-line-join" + }, + "path": [ + "chart", + "global", + "stroke-line-join" + ] + }, + "pf-t--chart--theme--colorscales--blue--colorscale--100": { + "type": "color", + "value": "#0066cc", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.200}" + "value": "{chart.color.blue.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000", + "name": "pf-t--chart--theme--colorscales--blue--colorscale--100", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-ordered", + "subitem": "blue", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-ordered", + "blue", "colorscale", - "2000" + "100" ], "references": [ { "type": "color", - "value": "#f5921b", + "value": "#0066cc", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.40}" + "value": "{color.blue.50}" }, - "name": "pf-t--chart--color--orange--200", + "name": "pf-t--chart--color--blue--300", "attributes": { "category": "chart", "type": "color", - "item": "orange", - "subitem": "200" + "item": "blue", + "subitem": "300" }, "path": [ "chart", "color", - "orange", - "200" + "blue", + "300" ], "references": [ { "type": "color", - "value": "#f5921b", + "value": "#0066cc", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#f5921b" + "value": "#0066cc" }, - "name": "pf-t--color--orange--40", + "name": "pf-t--color--blue--50", "attributes": { "category": "color", - "type": "orange", - "item": "40" + "type": "blue", + "item": "50" }, "path": [ "color", - "orange", - "40" + "blue", + "50" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100": { + "pf-t--chart--theme--colorscales--blue--colorscale--200": { "type": "color", - "value": "#004d99", + "value": "#92c5f9", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.400}" + "value": "{chart.color.blue.100}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100", + "name": "pf-t--chart--theme--colorscales--blue--colorscale--200", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-ordered", + "subitem": "blue", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-ordered", + "blue", "colorscale", - "2100" + "200" ], "references": [ { "type": "color", - "value": "#004d99", + "value": "#92c5f9", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.60}" + "value": "{color.blue.30}" }, - "name": "pf-t--chart--color--blue--400", + "name": "pf-t--chart--color--blue--100", "attributes": { "category": "chart", "type": "color", "item": "blue", - "subitem": "400" + "subitem": "100" }, "path": [ "chart", "color", "blue", - "400" + "100" ], "references": [ { "type": "color", - "value": "#004d99", + "value": "#92c5f9", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#004d99" + "value": "#92c5f9" }, - "name": "pf-t--color--blue--60", + "name": "pf-t--color--blue--30", "attributes": { "category": "color", "type": "blue", - "item": "60" + "item": "30" }, "path": [ "color", "blue", - "60" + "30" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200": { + "pf-t--chart--theme--colorscales--blue--colorscale--300": { "type": "color", - "value": "#87bb62", + "value": "#003366", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.200}" + "value": "{chart.color.blue.500}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200", + "name": "pf-t--chart--theme--colorscales--blue--colorscale--300", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-ordered", + "subitem": "blue", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-ordered", + "blue", "colorscale", - "2200" + "300" ], "references": [ { "type": "color", - "value": "#87bb62", + "value": "#003366", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.40}" + "value": "{color.blue.70}" }, - "name": "pf-t--chart--color--green--200", + "name": "pf-t--chart--color--blue--500", "attributes": { "category": "chart", "type": "color", - "item": "green", - "subitem": "200" + "item": "blue", + "subitem": "500" }, "path": [ "chart", "color", - "green", - "200" + "blue", + "500" ], "references": [ { "type": "color", - "value": "#87bb62", + "value": "#003366", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#87bb62" + "value": "#003366" }, - "name": "pf-t--color--green--40", + "name": "pf-t--color--blue--70", "attributes": { "category": "color", - "type": "green", - "item": "40" + "type": "blue", + "item": "70" }, "path": [ "color", - "green", - "40" + "blue", + "70" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300": { + "pf-t--chart--theme--colorscales--blue--colorscale--400": { "type": "color", - "value": "#147878", + "value": "#4394e5", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.400}" + "value": "{chart.color.blue.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300", + "name": "pf-t--chart--theme--colorscales--blue--colorscale--400", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-ordered", + "subitem": "blue", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-ordered", + "blue", "colorscale", - "2300" + "400" ], "references": [ { "type": "color", - "value": "#147878", + "value": "#4394e5", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.60}" + "value": "{color.blue.40}" }, - "name": "pf-t--chart--color--teal--400", + "name": "pf-t--chart--color--blue--200", "attributes": { "category": "chart", "type": "color", - "item": "teal", - "subitem": "400" + "item": "blue", + "subitem": "200" }, "path": [ "chart", "color", - "teal", - "400" + "blue", + "200" ], "references": [ { "type": "color", - "value": "#147878", + "value": "#4394e5", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#147878" + "value": "#4394e5" }, - "name": "pf-t--color--teal--60", + "name": "pf-t--color--blue--40", "attributes": { "category": "color", - "type": "teal", - "item": "60" + "type": "blue", + "item": "40" }, "path": [ "color", - "teal", - "60" + "blue", + "40" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400": { + "pf-t--chart--theme--colorscales--blue--colorscale--500": { "type": "color", - "value": "#ffcc17", + "value": "#004d99", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.200}" + "value": "{chart.color.blue.400}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400", + "name": "pf-t--chart--theme--colorscales--blue--colorscale--500", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-ordered", + "subitem": "blue", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-ordered", + "blue", "colorscale", - "2400" + "500" ], "references": [ { "type": "color", - "value": "#ffcc17", + "value": "#004d99", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.30}" + "value": "{color.blue.60}" }, - "name": "pf-t--chart--color--yellow--200", + "name": "pf-t--chart--color--blue--400", "attributes": { "category": "chart", "type": "color", - "item": "yellow", - "subitem": "200" + "item": "blue", + "subitem": "400" }, "path": [ "chart", "color", - "yellow", - "200" + "blue", + "400" ], "references": [ { "type": "color", - "value": "#ffcc17", + "value": "#004d99", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#ffcc17" + "value": "#004d99" }, - "name": "pf-t--color--yellow--30", + "name": "pf-t--color--blue--60", "attributes": { "category": "color", - "type": "yellow", - "item": "30" + "type": "blue", + "item": "60" }, "path": [ "color", - "yellow", - "30" + "blue", + "60" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500": { + "pf-t--chart--theme--colorscales--teal--colorscale--100": { "type": "color", - "value": "#9e4a06", + "value": "#37a3a3", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.400}" + "value": "{chart.color.teal.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500", + "name": "pf-t--chart--theme--colorscales--teal--colorscale--100", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-ordered", + "subitem": "teal", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-ordered", + "teal", "colorscale", - "2500" + "100" ], "references": [ { "type": "color", - "value": "#9e4a06", + "value": "#37a3a3", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.60}" + "value": "{color.teal.50}" }, - "name": "pf-t--chart--color--orange--400", + "name": "pf-t--chart--color--teal--300", "attributes": { "category": "chart", "type": "color", - "item": "orange", - "subitem": "400" + "item": "teal", + "subitem": "300" }, "path": [ "chart", "color", - "orange", - "400" + "teal", + "300" ], "references": [ { "type": "color", - "value": "#9e4a06", + "value": "#37a3a3", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#9e4a06" + "value": "#37a3a3" }, - "name": "pf-t--color--orange--60", + "name": "pf-t--color--teal--50", "attributes": { "category": "color", - "type": "orange", - "item": "60" + "type": "teal", + "item": "50" }, "path": [ "color", - "orange", - "60" + "teal", + "50" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100": { + "pf-t--chart--theme--colorscales--teal--colorscale--200": { "type": "color", - "value": "#0066cc", + "value": "#9ad8d8", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.300}" + "value": "{chart.color.teal.100}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100", + "name": "pf-t--chart--theme--colorscales--teal--colorscale--200", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "teal", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "teal", "colorscale", - "100" + "200" ], "references": [ { "type": "color", - "value": "#0066cc", + "value": "#9ad8d8", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.50}" + "value": "{color.teal.30}" }, - "name": "pf-t--chart--color--blue--300", + "name": "pf-t--chart--color--teal--100", "attributes": { "category": "chart", "type": "color", - "item": "blue", - "subitem": "300" + "item": "teal", + "subitem": "100" }, "path": [ "chart", "color", - "blue", - "300" + "teal", + "100" ], "references": [ { "type": "color", - "value": "#0066cc", + "value": "#9ad8d8", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#0066cc" + "value": "#9ad8d8" }, - "name": "pf-t--color--blue--50", + "name": "pf-t--color--teal--30", "attributes": { "category": "color", - "type": "blue", - "item": "50" + "type": "teal", + "item": "30" }, "path": [ "color", - "blue", - "50" + "teal", + "30" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200": { + "pf-t--chart--theme--colorscales--teal--colorscale--300": { "type": "color", - "value": "#dca614", + "value": "#004d4d", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.300}" + "value": "{chart.color.teal.500}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200", + "name": "pf-t--chart--theme--colorscales--teal--colorscale--300", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "teal", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "teal", "colorscale", - "200" + "300" ], "references": [ { "type": "color", - "value": "#dca614", + "value": "#004d4d", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.40}" + "value": "{color.teal.70}" }, - "name": "pf-t--chart--color--yellow--300", + "name": "pf-t--chart--color--teal--500", "attributes": { "category": "chart", "type": "color", - "item": "yellow", - "subitem": "300" + "item": "teal", + "subitem": "500" }, "path": [ "chart", "color", - "yellow", - "300" + "teal", + "500" ], "references": [ { "type": "color", - "value": "#dca614", + "value": "#004d4d", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#dca614" + "value": "#004d4d" }, - "name": "pf-t--color--yellow--40", + "name": "pf-t--color--teal--70", "attributes": { "category": "color", - "type": "yellow", - "item": "40" + "type": "teal", + "item": "70" }, "path": [ "color", - "yellow", - "40" + "teal", + "70" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300": { + "pf-t--chart--theme--colorscales--teal--colorscale--400": { "type": "color", - "value": "#63993d", + "value": "#63bdbd", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.300}" + "value": "{chart.color.teal.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300", + "name": "pf-t--chart--theme--colorscales--teal--colorscale--400", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "teal", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "teal", "colorscale", - "300" + "400" ], "references": [ { "type": "color", - "value": "#63993d", + "value": "#63bdbd", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.50}" + "value": "{color.teal.40}" }, - "name": "pf-t--chart--color--green--300", + "name": "pf-t--chart--color--teal--200", "attributes": { "category": "chart", "type": "color", - "item": "green", - "subitem": "300" + "item": "teal", + "subitem": "200" }, "path": [ "chart", "color", - "green", - "300" + "teal", + "200" ], "references": [ { "type": "color", - "value": "#63993d", + "value": "#63bdbd", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#63993d" + "value": "#63bdbd" }, - "name": "pf-t--color--green--50", + "name": "pf-t--color--teal--40", "attributes": { "category": "color", - "type": "green", - "item": "50" + "type": "teal", + "item": "40" }, "path": [ "color", - "green", - "50" + "teal", + "40" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400": { + "pf-t--chart--theme--colorscales--teal--colorscale--500": { "type": "color", - "value": "#5e40be", + "value": "#147878", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.300}" + "value": "{chart.color.teal.400}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400", + "name": "pf-t--chart--theme--colorscales--teal--colorscale--500", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "teal", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "teal", "colorscale", - "400" + "500" ], "references": [ { "type": "color", - "value": "#5e40be", + "value": "#147878", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.50}" + "value": "{color.teal.60}" }, - "name": "pf-t--chart--color--purple--300", + "name": "pf-t--chart--color--teal--400", "attributes": { "category": "chart", "type": "color", - "item": "purple", - "subitem": "300" + "item": "teal", + "subitem": "400" }, "path": [ "chart", "color", - "purple", - "300" + "teal", + "400" ], "references": [ { "type": "color", - "value": "#5e40be", + "value": "#147878", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#5e40be" + "value": "#147878" }, - "name": "pf-t--color--purple--50", + "name": "pf-t--color--teal--60", "attributes": { "category": "color", - "type": "purple", - "item": "50" + "type": "teal", + "item": "60" }, "path": [ "color", - "purple", - "50" + "teal", + "60" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500": { + "pf-t--chart--theme--colorscales--yellow--colorscale--100": { "type": "color", - "value": "#ca6c0f", + "value": "#dca614", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.300}" + "value": "{chart.color.yellow.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500", + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--100", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "yellow", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "yellow", "colorscale", - "500" + "100" ], "references": [ { "type": "color", - "value": "#ca6c0f", + "value": "#dca614", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.50}" + "value": "{color.yellow.40}" }, - "name": "pf-t--chart--color--orange--300", + "name": "pf-t--chart--color--yellow--300", "attributes": { "category": "chart", "type": "color", - "item": "orange", + "item": "yellow", "subitem": "300" }, "path": [ "chart", "color", - "orange", + "yellow", "300" ], "references": [ { "type": "color", - "value": "#ca6c0f", + "value": "#dca614", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#ca6c0f" + "value": "#dca614" }, - "name": "pf-t--color--orange--50", + "name": "pf-t--color--yellow--40", "attributes": { "category": "color", - "type": "orange", - "item": "50" + "type": "yellow", + "item": "40" }, "path": [ "color", - "orange", - "50" + "yellow", + "40" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600": { + "pf-t--chart--theme--colorscales--yellow--colorscale--200": { "type": "color", - "value": "#37a3a3", + "value": "#ffe072", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.300}" + "value": "{chart.color.yellow.100}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600", + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--200", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "yellow", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "yellow", "colorscale", - "600" + "200" ], "references": [ { "type": "color", - "value": "#37a3a3", + "value": "#ffe072", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.50}" + "value": "{color.yellow.20}" }, - "name": "pf-t--chart--color--teal--300", + "name": "pf-t--chart--color--yellow--100", "attributes": { "category": "chart", "type": "color", - "item": "teal", - "subitem": "300" + "item": "yellow", + "subitem": "100" }, "path": [ "chart", "color", - "teal", - "300" + "yellow", + "100" ], "references": [ { "type": "color", - "value": "#37a3a3", + "value": "#ffe072", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#37a3a3" + "value": "#ffe072" }, - "name": "pf-t--color--teal--50", + "name": "pf-t--color--yellow--20", "attributes": { "category": "color", - "type": "teal", - "item": "50" + "type": "yellow", + "item": "20" }, "path": [ "color", - "teal", - "50" + "yellow", + "20" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700": { + "pf-t--chart--theme--colorscales--yellow--colorscale--300": { "type": "color", - "value": "#c7c7c7", + "value": "#96640f", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.300}" + "value": "{chart.color.yellow.500}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700", + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--300", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "yellow", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "yellow", "colorscale", - "700" + "300" ], "references": [ { "type": "color", - "value": "#c7c7c7", + "value": "#96640f", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.30}" + "value": "{color.yellow.60}" }, - "name": "pf-t--chart--color--black--300", + "name": "pf-t--chart--color--yellow--500", "attributes": { "category": "chart", "type": "color", - "item": "black", - "subitem": "300" + "item": "yellow", + "subitem": "500" }, "path": [ "chart", "color", - "black", - "300" + "yellow", + "500" ], "references": [ { "type": "color", - "value": "#c7c7c7", + "value": "#96640f", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#c7c7c7" + "value": "#96640f" }, - "name": "pf-t--color--gray--30", + "name": "pf-t--color--yellow--60", "attributes": { "category": "color", - "type": "gray", - "item": "30" + "type": "yellow", + "item": "60" }, "path": [ "color", - "gray", - "30" + "yellow", + "60" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800": { + "pf-t--chart--theme--colorscales--yellow--colorscale--400": { "type": "color", - "value": "#92c5f9", + "value": "#ffcc17", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.100}" + "value": "{chart.color.yellow.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800", + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--400", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "yellow", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "yellow", "colorscale", - "800" + "400" ], "references": [ { "type": "color", - "value": "#92c5f9", + "value": "#ffcc17", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.30}" + "value": "{color.yellow.30}" }, - "name": "pf-t--chart--color--blue--100", + "name": "pf-t--chart--color--yellow--200", "attributes": { "category": "chart", "type": "color", - "item": "blue", - "subitem": "100" + "item": "yellow", + "subitem": "200" }, "path": [ "chart", "color", - "blue", - "100" + "yellow", + "200" ], "references": [ { "type": "color", - "value": "#92c5f9", + "value": "#ffcc17", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#92c5f9" + "value": "#ffcc17" }, - "name": "pf-t--color--blue--30", + "name": "pf-t--color--yellow--30", "attributes": { "category": "color", - "type": "blue", + "type": "yellow", "item": "30" }, "path": [ "color", - "blue", + "yellow", "30" ] } @@ -50680,147 +48110,147 @@ } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900": { + "pf-t--chart--theme--colorscales--yellow--colorscale--500": { "type": "color", - "value": "#96640f", + "value": "#b98412", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.500}" + "value": "{chart.color.yellow.400}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900", + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--500", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "yellow", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "yellow", "colorscale", - "900" + "500" ], "references": [ { "type": "color", - "value": "#96640f", + "value": "#b98412", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.60}" + "value": "{color.yellow.50}" }, - "name": "pf-t--chart--color--yellow--500", + "name": "pf-t--chart--color--yellow--400", "attributes": { "category": "chart", "type": "color", "item": "yellow", - "subitem": "500" + "subitem": "400" }, "path": [ "chart", "color", "yellow", - "500" + "400" ], "references": [ { "type": "color", - "value": "#96640f", + "value": "#b98412", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#96640f" + "value": "#b98412" }, - "name": "pf-t--color--yellow--60", + "name": "pf-t--color--yellow--50", "attributes": { "category": "color", "type": "yellow", - "item": "60" + "item": "50" }, "path": [ "color", "yellow", - "60" + "50" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000": { + "pf-t--chart--theme--colorscales--gray--colorscale--100": { "type": "color", - "value": "#afdc8f", + "value": "#c7c7c7", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.100}" + "value": "{chart.color.black.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000", + "name": "pf-t--chart--theme--colorscales--gray--colorscale--100", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "gray", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "gray", "colorscale", - "1000" + "100" ], "references": [ { "type": "color", - "value": "#afdc8f", + "value": "#c7c7c7", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.30}" + "value": "{color.gray.30}" }, - "name": "pf-t--chart--color--green--100", + "name": "pf-t--chart--color--black--300", "attributes": { "category": "chart", "type": "color", - "item": "green", - "subitem": "100" + "item": "black", + "subitem": "300" }, "path": [ "chart", "color", - "green", - "100" + "black", + "300" ], "references": [ { "type": "color", - "value": "#afdc8f", + "value": "#c7c7c7", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#afdc8f" + "value": "#c7c7c7" }, - "name": "pf-t--color--green--30", + "name": "pf-t--color--gray--30", "attributes": { "category": "color", - "type": "green", + "type": "gray", "item": "30" }, "path": [ "color", - "green", + "gray", "30" ] } @@ -50828,451 +48258,451 @@ } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100": { + "pf-t--chart--theme--colorscales--gray--colorscale--200": { "type": "color", - "value": "#21134d", + "value": "#f2f2f2", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.500}" + "value": "{chart.color.black.100}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100", + "name": "pf-t--chart--theme--colorscales--gray--colorscale--200", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "gray", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "gray", "colorscale", - "1100" + "200" ], "references": [ { "type": "color", - "value": "#21134d", + "value": "#f2f2f2", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.70}" + "value": "{color.gray.10}" }, - "name": "pf-t--chart--color--purple--500", + "name": "pf-t--chart--color--black--100", "attributes": { "category": "chart", "type": "color", - "item": "purple", - "subitem": "500" + "item": "black", + "subitem": "100" }, "path": [ "chart", "color", - "purple", - "500" + "black", + "100" ], "references": [ { "type": "color", - "value": "#21134d", + "value": "#f2f2f2", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#21134d" + "value": "#f2f2f2" }, - "name": "pf-t--color--purple--70", + "name": "pf-t--color--gray--10", "attributes": { "category": "color", - "type": "purple", - "item": "70" + "type": "gray", + "item": "10" }, "path": [ "color", - "purple", - "70" + "gray", + "10" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200": { + "pf-t--chart--theme--colorscales--gray--colorscale--300": { "type": "color", - "value": "#f8ae54", + "value": "#707070", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.100}" + "value": "{chart.color.black.500}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200", + "name": "pf-t--chart--theme--colorscales--gray--colorscale--300", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "gray", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "gray", "colorscale", - "1200" + "300" ], "references": [ { "type": "color", - "value": "#f8ae54", + "value": "#707070", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.30}" + "value": "{color.gray.50}" }, - "name": "pf-t--chart--color--orange--100", + "name": "pf-t--chart--color--black--500", "attributes": { "category": "chart", "type": "color", - "item": "orange", - "subitem": "100" + "item": "black", + "subitem": "500" }, "path": [ "chart", "color", - "orange", - "100" + "black", + "500" ], "references": [ { "type": "color", - "value": "#f8ae54", + "value": "#707070", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#f8ae54" + "value": "#707070" }, - "name": "pf-t--color--orange--30", + "name": "pf-t--color--gray--50", "attributes": { "category": "color", - "type": "orange", - "item": "30" + "type": "gray", + "item": "50" }, "path": [ "color", - "orange", - "30" + "gray", + "50" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300": { + "pf-t--chart--theme--colorscales--gray--colorscale--400": { "type": "color", - "value": "#004d4d", + "value": "#e0e0e0", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.500}" + "value": "{chart.color.black.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300", + "name": "pf-t--chart--theme--colorscales--gray--colorscale--400", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "gray", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "gray", "colorscale", - "1300" + "400" ], "references": [ { "type": "color", - "value": "#004d4d", + "value": "#e0e0e0", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.70}" + "value": "{color.gray.20}" }, - "name": "pf-t--chart--color--teal--500", + "name": "pf-t--chart--color--black--200", "attributes": { "category": "chart", "type": "color", - "item": "teal", - "subitem": "500" + "item": "black", + "subitem": "200" }, "path": [ "chart", "color", - "teal", - "500" + "black", + "200" ], "references": [ { "type": "color", - "value": "#004d4d", + "value": "#e0e0e0", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#004d4d" + "value": "#e0e0e0" }, - "name": "pf-t--color--teal--70", + "name": "pf-t--color--gray--20", "attributes": { "category": "color", - "type": "teal", - "item": "70" + "type": "gray", + "item": "20" }, "path": [ "color", - "teal", - "70" + "gray", + "20" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400": { + "pf-t--chart--theme--colorscales--gray--colorscale--500": { "type": "color", - "value": "#f2f2f2", + "value": "#a3a3a3", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.100}" + "value": "{chart.color.black.400}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400", + "name": "pf-t--chart--theme--colorscales--gray--colorscale--500", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "gray", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "gray", "colorscale", - "1400" + "500" ], "references": [ { "type": "color", - "value": "#f2f2f2", + "value": "#a3a3a3", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.10}" + "value": "{color.gray.40}" }, - "name": "pf-t--chart--color--black--100", + "name": "pf-t--chart--color--black--400", "attributes": { "category": "chart", "type": "color", "item": "black", - "subitem": "100" + "subitem": "400" }, "path": [ "chart", "color", "black", - "100" + "400" ], "references": [ { "type": "color", - "value": "#f2f2f2", + "value": "#a3a3a3", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#f2f2f2" + "value": "#a3a3a3" }, - "name": "pf-t--color--gray--10", + "name": "pf-t--color--gray--40", "attributes": { "category": "color", "type": "gray", - "item": "10" + "item": "40" }, "path": [ "color", "gray", - "10" + "40" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500": { + "pf-t--chart--theme--colorscales--green--colorscale--100": { "type": "color", - "value": "#003366", + "value": "#63993d", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.500}" + "value": "{chart.color.green.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500", + "name": "pf-t--chart--theme--colorscales--green--colorscale--100", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "green", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "green", "colorscale", - "1500" + "100" ], "references": [ { "type": "color", - "value": "#003366", + "value": "#63993d", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.70}" + "value": "{color.green.50}" }, - "name": "pf-t--chart--color--blue--500", + "name": "pf-t--chart--color--green--300", "attributes": { "category": "chart", "type": "color", - "item": "blue", - "subitem": "500" + "item": "green", + "subitem": "300" }, "path": [ "chart", "color", - "blue", - "500" + "green", + "300" ], "references": [ { "type": "color", - "value": "#003366", + "value": "#63993d", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#003366" + "value": "#63993d" }, - "name": "pf-t--color--blue--70", + "name": "pf-t--color--green--50", "attributes": { "category": "color", - "type": "blue", - "item": "70" + "type": "green", + "item": "50" }, "path": [ "color", - "blue", - "70" + "green", + "50" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600": { + "pf-t--chart--theme--colorscales--green--colorscale--200": { "type": "color", - "value": "#ffe072", + "value": "#afdc8f", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.100}" + "value": "{chart.color.green.100}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600", + "name": "pf-t--chart--theme--colorscales--green--colorscale--200", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "green", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "green", "colorscale", - "1600" + "200" ], "references": [ { "type": "color", - "value": "#ffe072", + "value": "#afdc8f", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.20}" + "value": "{color.green.30}" }, - "name": "pf-t--chart--color--yellow--100", + "name": "pf-t--chart--color--green--100", "attributes": { "category": "chart", "type": "color", - "item": "yellow", + "item": "green", "subitem": "100" }, "path": [ "chart", "color", - "yellow", + "green", "100" ], "references": [ { "type": "color", - "value": "#ffe072", + "value": "#afdc8f", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#ffe072" + "value": "#afdc8f" }, - "name": "pf-t--color--yellow--20", + "name": "pf-t--color--green--30", "attributes": { "category": "color", - "type": "yellow", - "item": "20" + "type": "green", + "item": "30" }, "path": [ "color", - "yellow", - "20" + "green", + "30" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700": { + "pf-t--chart--theme--colorscales--green--colorscale--300": { "type": "color", "value": "#204d00", "filePath": "tokens/default/charts.json", @@ -51281,21 +48711,21 @@ "type": "color", "value": "{chart.color.green.500}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700", + "name": "pf-t--chart--theme--colorscales--green--colorscale--300", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "green", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "green", "colorscale", - "1700" + "300" ], "references": [ { @@ -51346,887 +48776,887 @@ } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800": { + "pf-t--chart--theme--colorscales--green--colorscale--400": { "type": "color", - "value": "#b6a6e9", + "value": "#87bb62", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.100}" + "value": "{chart.color.green.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800", + "name": "pf-t--chart--theme--colorscales--green--colorscale--400", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "green", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "green", "colorscale", - "1800" + "400" ], "references": [ { "type": "color", - "value": "#b6a6e9", + "value": "#87bb62", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.30}" + "value": "{color.green.40}" }, - "name": "pf-t--chart--color--purple--100", + "name": "pf-t--chart--color--green--200", "attributes": { "category": "chart", "type": "color", - "item": "purple", - "subitem": "100" + "item": "green", + "subitem": "200" }, "path": [ "chart", "color", - "purple", - "100" + "green", + "200" ], "references": [ { "type": "color", - "value": "#b6a6e9", + "value": "#87bb62", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b6a6e9" + "value": "#87bb62" }, - "name": "pf-t--color--purple--30", + "name": "pf-t--color--green--40", "attributes": { "category": "color", - "type": "purple", - "item": "30" + "type": "green", + "item": "40" }, "path": [ "color", - "purple", - "30" + "green", + "40" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900": { + "pf-t--chart--theme--colorscales--green--colorscale--500": { "type": "color", - "value": "#732e00", + "value": "#3d7317", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.500}" + "value": "{chart.color.green.400}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900", + "name": "pf-t--chart--theme--colorscales--green--colorscale--500", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "green", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "green", "colorscale", - "1900" + "500" ], "references": [ { "type": "color", - "value": "#732e00", + "value": "#3d7317", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.70}" + "value": "{color.green.60}" }, - "name": "pf-t--chart--color--orange--500", + "name": "pf-t--chart--color--green--400", "attributes": { "category": "chart", "type": "color", - "item": "orange", - "subitem": "500" + "item": "green", + "subitem": "400" }, "path": [ "chart", "color", - "orange", - "500" + "green", + "400" ], "references": [ { "type": "color", - "value": "#732e00", + "value": "#3d7317", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#732e00" + "value": "#3d7317" }, - "name": "pf-t--color--orange--70", + "name": "pf-t--color--green--60", "attributes": { "category": "color", - "type": "orange", - "item": "70" + "type": "green", + "item": "60" }, "path": [ "color", - "orange", - "70" + "green", + "60" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000": { + "pf-t--chart--theme--colorscales--purple--colorscale--100": { "type": "color", - "value": "#9ad8d8", + "value": "#5e40be", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.100}" + "value": "{chart.color.purple.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000", + "name": "pf-t--chart--theme--colorscales--purple--colorscale--100", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "purple", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "purple", "colorscale", - "2000" + "100" ], "references": [ { "type": "color", - "value": "#9ad8d8", + "value": "#5e40be", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.30}" + "value": "{color.purple.50}" }, - "name": "pf-t--chart--color--teal--100", + "name": "pf-t--chart--color--purple--300", "attributes": { "category": "chart", "type": "color", - "item": "teal", - "subitem": "100" + "item": "purple", + "subitem": "300" }, "path": [ "chart", "color", - "teal", - "100" + "purple", + "300" ], "references": [ { "type": "color", - "value": "#9ad8d8", + "value": "#5e40be", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#9ad8d8" + "value": "#5e40be" }, - "name": "pf-t--color--teal--30", + "name": "pf-t--color--purple--50", "attributes": { "category": "color", - "type": "teal", - "item": "30" + "type": "purple", + "item": "50" }, "path": [ "color", - "teal", - "30" + "purple", + "50" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100": { + "pf-t--chart--theme--colorscales--purple--colorscale--200": { "type": "color", - "value": "#707070", + "value": "#b6a6e9", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.500}" + "value": "{chart.color.purple.100}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100", + "name": "pf-t--chart--theme--colorscales--purple--colorscale--200", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "purple", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "purple", "colorscale", - "2100" + "200" ], "references": [ { "type": "color", - "value": "#707070", + "value": "#b6a6e9", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.50}" + "value": "{color.purple.30}" }, - "name": "pf-t--chart--color--black--500", + "name": "pf-t--chart--color--purple--100", "attributes": { "category": "chart", "type": "color", - "item": "black", - "subitem": "500" + "item": "purple", + "subitem": "100" }, "path": [ "chart", "color", - "black", - "500" + "purple", + "100" ], "references": [ { "type": "color", - "value": "#707070", + "value": "#b6a6e9", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#707070" + "value": "#b6a6e9" }, - "name": "pf-t--color--gray--50", + "name": "pf-t--color--purple--30", "attributes": { "category": "color", - "type": "gray", - "item": "50" + "type": "purple", + "item": "30" }, "path": [ "color", - "gray", - "50" + "purple", + "30" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200": { + "pf-t--chart--theme--colorscales--purple--colorscale--300": { "type": "color", - "value": "#4394e5", + "value": "#21134d", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.200}" + "value": "{chart.color.purple.500}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200", + "name": "pf-t--chart--theme--colorscales--purple--colorscale--300", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "purple", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "purple", "colorscale", - "2200" + "300" ], "references": [ { "type": "color", - "value": "#4394e5", + "value": "#21134d", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.40}" + "value": "{color.purple.70}" }, - "name": "pf-t--chart--color--blue--200", + "name": "pf-t--chart--color--purple--500", "attributes": { "category": "chart", "type": "color", - "item": "blue", - "subitem": "200" + "item": "purple", + "subitem": "500" }, "path": [ "chart", "color", - "blue", - "200" + "purple", + "500" ], "references": [ { "type": "color", - "value": "#4394e5", + "value": "#21134d", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#4394e5" + "value": "#21134d" }, - "name": "pf-t--color--blue--40", + "name": "pf-t--color--purple--70", "attributes": { "category": "color", - "type": "blue", - "item": "40" + "type": "purple", + "item": "70" }, "path": [ "color", - "blue", - "40" + "purple", + "70" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300": { + "pf-t--chart--theme--colorscales--purple--colorscale--400": { "type": "color", - "value": "#b98412", + "value": "#876fd4", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.400}" + "value": "{chart.color.purple.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300", + "name": "pf-t--chart--theme--colorscales--purple--colorscale--400", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "purple", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "purple", "colorscale", - "2300" + "400" ], "references": [ { "type": "color", - "value": "#b98412", + "value": "#876fd4", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.50}" + "value": "{color.purple.40}" }, - "name": "pf-t--chart--color--yellow--400", + "name": "pf-t--chart--color--purple--200", "attributes": { "category": "chart", "type": "color", - "item": "yellow", - "subitem": "400" + "item": "purple", + "subitem": "200" }, "path": [ "chart", "color", - "yellow", - "400" + "purple", + "200" ], "references": [ { "type": "color", - "value": "#b98412", + "value": "#876fd4", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#b98412" + "value": "#876fd4" }, - "name": "pf-t--color--yellow--50", + "name": "pf-t--color--purple--40", "attributes": { "category": "color", - "type": "yellow", - "item": "50" + "type": "purple", + "item": "40" }, "path": [ "color", - "yellow", - "50" + "purple", + "40" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400": { + "pf-t--chart--theme--colorscales--purple--colorscale--500": { "type": "color", - "value": "#87bb62", + "value": "#3d2785", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.200}" + "value": "{chart.color.purple.400}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400", + "name": "pf-t--chart--theme--colorscales--purple--colorscale--500", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "purple", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "purple", "colorscale", - "2400" + "500" ], "references": [ { "type": "color", - "value": "#87bb62", + "value": "#3d2785", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.40}" + "value": "{color.purple.60}" }, - "name": "pf-t--chart--color--green--200", + "name": "pf-t--chart--color--purple--400", "attributes": { "category": "chart", "type": "color", - "item": "green", - "subitem": "200" + "item": "purple", + "subitem": "400" }, "path": [ "chart", "color", - "green", - "200" + "purple", + "400" ], "references": [ { "type": "color", - "value": "#87bb62", + "value": "#3d2785", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#87bb62" + "value": "#3d2785" }, - "name": "pf-t--color--green--40", + "name": "pf-t--color--purple--60", "attributes": { "category": "color", - "type": "green", - "item": "40" + "type": "purple", + "item": "60" }, "path": [ "color", - "green", - "40" + "purple", + "60" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500": { + "pf-t--chart--theme--colorscales--orange--colorscale--100": { "type": "color", - "value": "#3d2785", + "value": "#ca6c0f", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.400}" + "value": "{chart.color.orange.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500", + "name": "pf-t--chart--theme--colorscales--orange--colorscale--100", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "orange", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "orange", "colorscale", - "2500" + "100" ], "references": [ { "type": "color", - "value": "#3d2785", + "value": "#ca6c0f", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.60}" + "value": "{color.orange.50}" }, - "name": "pf-t--chart--color--purple--400", + "name": "pf-t--chart--color--orange--300", "attributes": { "category": "chart", "type": "color", - "item": "purple", - "subitem": "400" + "item": "orange", + "subitem": "300" }, "path": [ "chart", "color", - "purple", - "400" + "orange", + "300" ], "references": [ { "type": "color", - "value": "#3d2785", + "value": "#ca6c0f", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#3d2785" + "value": "#ca6c0f" }, - "name": "pf-t--color--purple--60", + "name": "pf-t--color--orange--50", "attributes": { "category": "color", - "type": "purple", - "item": "60" + "type": "orange", + "item": "50" }, "path": [ "color", - "purple", - "60" + "orange", + "50" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600": { + "pf-t--chart--theme--colorscales--orange--colorscale--200": { "type": "color", - "value": "#f5921b", + "value": "#f8ae54", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.200}" + "value": "{chart.color.orange.100}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600", + "name": "pf-t--chart--theme--colorscales--orange--colorscale--200", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "orange", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "orange", "colorscale", - "2600" + "200" ], "references": [ { "type": "color", - "value": "#f5921b", + "value": "#f8ae54", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.40}" + "value": "{color.orange.30}" }, - "name": "pf-t--chart--color--orange--200", + "name": "pf-t--chart--color--orange--100", "attributes": { "category": "chart", "type": "color", "item": "orange", - "subitem": "200" + "subitem": "100" }, "path": [ "chart", "color", "orange", - "200" + "100" ], "references": [ { "type": "color", - "value": "#f5921b", + "value": "#f8ae54", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#f5921b" + "value": "#f8ae54" }, - "name": "pf-t--color--orange--40", + "name": "pf-t--color--orange--30", "attributes": { "category": "color", "type": "orange", - "item": "40" + "item": "30" }, "path": [ "color", "orange", - "40" + "30" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700": { + "pf-t--chart--theme--colorscales--orange--colorscale--300": { "type": "color", - "value": "#147878", + "value": "#732e00", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.400}" + "value": "{chart.color.orange.500}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700", + "name": "pf-t--chart--theme--colorscales--orange--colorscale--300", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "orange", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "orange", "colorscale", - "2700" + "300" ], "references": [ { "type": "color", - "value": "#147878", + "value": "#732e00", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.60}" + "value": "{color.orange.70}" }, - "name": "pf-t--chart--color--teal--400", + "name": "pf-t--chart--color--orange--500", "attributes": { "category": "chart", "type": "color", - "item": "teal", - "subitem": "400" + "item": "orange", + "subitem": "500" }, "path": [ "chart", "color", - "teal", - "400" + "orange", + "500" ], "references": [ { "type": "color", - "value": "#147878", + "value": "#732e00", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#147878" + "value": "#732e00" }, - "name": "pf-t--color--teal--60", + "name": "pf-t--color--orange--70", "attributes": { "category": "color", - "type": "teal", - "item": "60" + "type": "orange", + "item": "70" }, "path": [ "color", - "teal", - "60" + "orange", + "70" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800": { + "pf-t--chart--theme--colorscales--orange--colorscale--400": { "type": "color", - "value": "#e0e0e0", + "value": "#f5921b", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.200}" + "value": "{chart.color.orange.200}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800", + "name": "pf-t--chart--theme--colorscales--orange--colorscale--400", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "orange", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "orange", "colorscale", - "2800" + "400" ], "references": [ { "type": "color", - "value": "#e0e0e0", + "value": "#f5921b", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.20}" + "value": "{color.orange.40}" }, - "name": "pf-t--chart--color--black--200", + "name": "pf-t--chart--color--orange--200", "attributes": { "category": "chart", "type": "color", - "item": "black", + "item": "orange", "subitem": "200" }, "path": [ "chart", "color", - "black", + "orange", "200" ], "references": [ { "type": "color", - "value": "#e0e0e0", + "value": "#f5921b", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#e0e0e0" + "value": "#f5921b" }, - "name": "pf-t--color--gray--20", + "name": "pf-t--color--orange--40", "attributes": { "category": "color", - "type": "gray", - "item": "20" + "type": "orange", + "item": "40" }, "path": [ "color", - "gray", - "20" + "orange", + "40" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900": { + "pf-t--chart--theme--colorscales--orange--colorscale--500": { "type": "color", - "value": "#004d99", + "value": "#9e4a06", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.blue.400}" + "value": "{chart.color.orange.400}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900", + "name": "pf-t--chart--theme--colorscales--orange--colorscale--500", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "orange", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "orange", "colorscale", - "2900" + "500" ], "references": [ { "type": "color", - "value": "#004d99", + "value": "#9e4a06", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.blue.60}" + "value": "{color.orange.60}" }, - "name": "pf-t--chart--color--blue--400", + "name": "pf-t--chart--color--orange--400", "attributes": { "category": "chart", "type": "color", - "item": "blue", + "item": "orange", "subitem": "400" }, "path": [ "chart", "color", - "blue", + "orange", "400" ], "references": [ { "type": "color", - "value": "#004d99", + "value": "#9e4a06", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#004d99" + "value": "#9e4a06" }, - "name": "pf-t--color--blue--60", + "name": "pf-t--color--orange--60", "attributes": { "category": "color", - "type": "blue", + "type": "orange", "item": "60" }, "path": [ "color", - "blue", + "orange", "60" ] } @@ -52234,1872 +49664,4444 @@ } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100": { "type": "color", - "value": "#ffcc17", + "value": "#0066cc", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.yellow.200}" + "value": "{chart.color.blue.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "multi-colored-ordered", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "multi-colored-ordered", "colorscale", - "3000" + "100" ], "references": [ { "type": "color", - "value": "#ffcc17", + "value": "#0066cc", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.yellow.30}" + "value": "{color.blue.50}" }, - "name": "pf-t--chart--color--yellow--200", + "name": "pf-t--chart--color--blue--300", "attributes": { "category": "chart", "type": "color", - "item": "yellow", - "subitem": "200" + "item": "blue", + "subitem": "300" }, "path": [ "chart", "color", - "yellow", - "200" + "blue", + "300" ], "references": [ { "type": "color", - "value": "#ffcc17", + "value": "#0066cc", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#ffcc17" + "value": "#0066cc" }, - "name": "pf-t--color--yellow--30", + "name": "pf-t--color--blue--50", "attributes": { "category": "color", - "type": "yellow", - "item": "30" + "type": "blue", + "item": "50" }, "path": [ "color", - "yellow", - "30" + "blue", + "50" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200": { "type": "color", - "value": "#3d7317", + "value": "#63993d", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.green.400}" + "value": "{chart.color.green.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "multi-colored-ordered", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "multi-colored-ordered", "colorscale", - "3100" + "200" ], "references": [ { "type": "color", - "value": "#3d7317", + "value": "#63993d", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.green.60}" + "value": "{color.green.50}" }, - "name": "pf-t--chart--color--green--400", + "name": "pf-t--chart--color--green--300", "attributes": { "category": "chart", "type": "color", "item": "green", - "subitem": "400" + "subitem": "300" }, "path": [ "chart", "color", "green", - "400" + "300" ], "references": [ { "type": "color", - "value": "#3d7317", + "value": "#63993d", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#3d7317" + "value": "#63993d" }, - "name": "pf-t--color--green--60", + "name": "pf-t--color--green--50", "attributes": { "category": "color", "type": "green", - "item": "60" + "item": "50" }, "path": [ "color", "green", - "60" + "50" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300": { "type": "color", - "value": "#876fd4", + "value": "#37a3a3", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.purple.200}" + "value": "{chart.color.teal.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "multi-colored-ordered", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "multi-colored-ordered", "colorscale", - "3200" + "300" ], "references": [ { "type": "color", - "value": "#876fd4", + "value": "#37a3a3", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.purple.40}" + "value": "{color.teal.50}" }, - "name": "pf-t--chart--color--purple--200", + "name": "pf-t--chart--color--teal--300", "attributes": { "category": "chart", "type": "color", - "item": "purple", - "subitem": "200" + "item": "teal", + "subitem": "300" }, "path": [ "chart", "color", - "purple", - "200" + "teal", + "300" ], "references": [ { "type": "color", - "value": "#876fd4", + "value": "#37a3a3", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#876fd4" + "value": "#37a3a3" }, - "name": "pf-t--color--purple--40", + "name": "pf-t--color--teal--50", "attributes": { "category": "color", - "type": "purple", - "item": "40" + "type": "teal", + "item": "50" }, "path": [ "color", - "purple", - "40" + "teal", + "50" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400": { "type": "color", - "value": "#9e4a06", + "value": "#dca614", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.orange.400}" + "value": "{chart.color.yellow.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "multi-colored-ordered", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "multi-colored-ordered", "colorscale", - "3300" + "400" ], "references": [ { "type": "color", - "value": "#9e4a06", + "value": "#dca614", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.orange.60}" + "value": "{color.yellow.40}" }, - "name": "pf-t--chart--color--orange--400", + "name": "pf-t--chart--color--yellow--300", "attributes": { "category": "chart", "type": "color", - "item": "orange", - "subitem": "400" + "item": "yellow", + "subitem": "300" }, "path": [ "chart", "color", - "orange", - "400" + "yellow", + "300" ], "references": [ { "type": "color", - "value": "#9e4a06", + "value": "#dca614", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#9e4a06" + "value": "#dca614" }, - "name": "pf-t--color--orange--60", + "name": "pf-t--color--yellow--40", "attributes": { "category": "color", - "type": "orange", - "item": "60" + "type": "yellow", + "item": "40" }, "path": [ "color", - "orange", - "60" + "yellow", + "40" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500": { "type": "color", - "value": "#63bdbd", + "value": "#ca6c0f", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.teal.200}" + "value": "{chart.color.orange.300}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "multi-colored-ordered", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "multi-colored-ordered", "colorscale", - "3400" + "500" ], "references": [ { "type": "color", - "value": "#63bdbd", + "value": "#ca6c0f", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.teal.40}" + "value": "{color.orange.50}" }, - "name": "pf-t--chart--color--teal--200", + "name": "pf-t--chart--color--orange--300", "attributes": { "category": "chart", "type": "color", - "item": "teal", - "subitem": "200" + "item": "orange", + "subitem": "300" }, "path": [ "chart", "color", - "teal", - "200" + "orange", + "300" ], "references": [ { "type": "color", - "value": "#63bdbd", + "value": "#ca6c0f", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#63bdbd" + "value": "#ca6c0f" }, - "name": "pf-t--color--teal--40", + "name": "pf-t--color--orange--50", "attributes": { "category": "color", - "type": "teal", - "item": "40" + "type": "orange", + "item": "50" }, "path": [ "color", - "teal", - "40" + "orange", + "50" ] } ] } ] }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600": { "type": "color", - "value": "#a3a3a3", + "value": "#92c5f9", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{chart.color.black.400}" + "value": "{chart.color.blue.100}" }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600", "attributes": { "category": "chart", "type": "theme", "item": "colorscales", - "subitem": "multi-colored-unordered", + "subitem": "multi-colored-ordered", "state": "colorscale" }, "path": [ "chart", "theme", "colorscales", - "multi-colored-unordered", + "multi-colored-ordered", "colorscale", - "3500" + "600" ], "references": [ { "type": "color", - "value": "#a3a3a3", + "value": "#92c5f9", "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "{color.gray.40}" + "value": "{color.blue.30}" }, - "name": "pf-t--chart--color--black--400", + "name": "pf-t--chart--color--blue--100", "attributes": { "category": "chart", "type": "color", - "item": "black", - "subitem": "400" + "item": "blue", + "subitem": "100" }, "path": [ "chart", "color", - "black", - "400" + "blue", + "100" ], "references": [ { "type": "color", - "value": "#a3a3a3", + "value": "#92c5f9", "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { "type": "color", - "value": "#a3a3a3" + "value": "#92c5f9" }, - "name": "pf-t--color--gray--40", + "name": "pf-t--color--blue--30", "attributes": { "category": "color", - "type": "gray", - "item": "40" + "type": "blue", + "item": "30" }, "path": [ "color", - "gray", - "40" + "blue", + "30" ] } ] } ] }, - "pf-t--color--white": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", + "value": "#204d00", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#ffffff" + "value": "{chart.color.green.500}" }, - "name": "pf-t--color--white", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700", "attributes": { - "category": "color", - "type": "white" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "white" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "700" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } ] }, - "pf-t--color--gray--10": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#f2f2f2" + "value": "{chart.color.teal.100}" }, - "name": "pf-t--color--gray--10", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800", "attributes": { - "category": "color", - "type": "gray", - "item": "10" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "gray", - "10" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "800" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } ] }, - "pf-t--color--gray--20": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", + "value": "#96640f", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#e0e0e0" + "value": "{chart.color.yellow.500}" }, - "name": "pf-t--color--gray--20", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900", "attributes": { - "category": "color", - "type": "gray", - "item": "20" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "gray", - "20" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "900" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.60}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + } + ] + } ] }, - "pf-t--color--gray--30": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#c7c7c7" + "value": "{chart.color.orange.100}" }, - "name": "pf-t--color--gray--30", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000", "attributes": { - "category": "color", - "type": "gray", - "item": "30" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "gray", - "30" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1000" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } ] }, - "pf-t--color--gray--40": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", + "value": "#003366", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#a3a3a3" + "value": "{chart.color.blue.500}" }, - "name": "pf-t--color--gray--40", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100", "attributes": { - "category": "color", - "type": "gray", - "item": "40" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "gray", - "40" - ] - }, - "pf-t--color--gray--50": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - }, - "pf-t--color--gray--60": { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - }, - "pf-t--color--gray--70": { - "type": "color", - "value": "#383838", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - }, - "pf-t--color--gray--80": { - "type": "color", - "value": "#292929", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - }, - "pf-t--color--gray--90": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - }, - "pf-t--color--gray--95": { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - }, - "pf-t--color--black": { - "type": "color", - "value": "#000000", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#000000" - }, - "name": "pf-t--color--black", - "attributes": { - "category": "color", - "type": "black" - }, - "path": [ - "color", - "black" - ] - }, - "pf-t--color--blue--10": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - }, - "pf-t--color--blue--20": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - }, - "pf-t--color--blue--30": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - }, - "pf-t--color--blue--40": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - }, - "pf-t--color--blue--50": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - }, - "pf-t--color--blue--60": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - }, - "pf-t--color--blue--70": { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#003366" - }, - "name": "pf-t--color--blue--70", - "attributes": { - "category": "color", - "type": "blue", - "item": "70" - }, - "path": [ - "color", - "blue", - "70" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1100" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.70}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + } + ] + } ] }, - "pf-t--color--teal--10": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200": { "type": "color", - "value": "#daf2f2", - "filePath": "tokens/default/palette.color.json", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#daf2f2" + "value": "{chart.color.green.100}" }, - "name": "pf-t--color--teal--10", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200", "attributes": { - "category": "color", - "type": "teal", - "item": "10" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "teal", - "10" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } ] }, - "pf-t--color--teal--20": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/default/palette.color.json", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#b9e5e5" + "value": "{chart.color.teal.500}" }, - "name": "pf-t--color--teal--20", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300", "attributes": { - "category": "color", - "type": "teal", - "item": "20" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "teal", - "20" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1300" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } ] }, - "pf-t--color--teal--30": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#9ad8d8" + "value": "{chart.color.yellow.100}" }, - "name": "pf-t--color--teal--30", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400", "attributes": { - "category": "color", - "type": "teal", - "item": "30" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "teal", - "30" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1400" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } ] }, - "pf-t--color--teal--40": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", + "value": "#732e00", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#63bdbd" + "value": "{chart.color.orange.500}" }, - "name": "pf-t--color--teal--40", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500", "attributes": { - "category": "color", - "type": "teal", - "item": "40" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "teal", - "40" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1500" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.70}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + } + ] + } ] }, - "pf-t--color--teal--50": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600": { "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/palette.color.json", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#37a3a3" + "value": "{chart.color.blue.200}" }, - "name": "pf-t--color--teal--50", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600", "attributes": { - "category": "color", - "type": "teal", - "item": "50" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "teal", - "50" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1600" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } ] }, - "pf-t--color--teal--60": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700": { "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#147878" + "value": "{chart.color.green.400}" }, - "name": "pf-t--color--teal--60", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700", "attributes": { - "category": "color", - "type": "teal", - "item": "60" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "teal", - "60" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1700" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } ] }, - "pf-t--color--teal--70": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800": { "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#004d4d" + "value": "{chart.color.teal.200}" }, - "name": "pf-t--color--teal--70", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800", "attributes": { - "category": "color", - "type": "teal", - "item": "70" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "teal", - "70" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1800" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } ] }, - "pf-t--color--yellow--10": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900": { "type": "color", - "value": "#fff4cc", - "filePath": "tokens/default/palette.color.json", + "value": "#b98412", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#fff4cc" + "value": "{chart.color.yellow.400}" }, - "name": "pf-t--color--yellow--10", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900", "attributes": { - "category": "color", - "type": "yellow", - "item": "10" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "yellow", - "10" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1900" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } ] }, - "pf-t--color--yellow--20": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#ffe072" + "value": "{chart.color.orange.200}" }, - "name": "pf-t--color--yellow--20", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000", "attributes": { - "category": "color", - "type": "yellow", - "item": "20" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "yellow", - "20" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2000" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } ] }, - "pf-t--color--yellow--30": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", + "value": "#004d99", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#ffcc17" + "value": "{chart.color.blue.400}" }, - "name": "pf-t--color--yellow--30", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100", "attributes": { - "category": "color", - "type": "yellow", - "item": "30" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "yellow", - "30" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2100" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } ] }, - "pf-t--color--yellow--40": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#dca614" + "value": "{chart.color.green.200}" }, - "name": "pf-t--color--yellow--40", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200", "attributes": { - "category": "color", - "type": "yellow", - "item": "40" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "yellow", - "40" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } ] }, - "pf-t--color--yellow--50": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", + "value": "#147878", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#b98412" + "value": "{chart.color.teal.400}" }, - "name": "pf-t--color--yellow--50", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300", "attributes": { - "category": "color", - "type": "yellow", - "item": "50" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "yellow", - "50" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2300" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } ] }, - "pf-t--color--yellow--60": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400": { "type": "color", - "value": "#96640f", - "filePath": "tokens/default/palette.color.json", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#96640f" + "value": "{chart.color.yellow.200}" }, - "name": "pf-t--color--yellow--60", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400", "attributes": { - "category": "color", - "type": "yellow", - "item": "60" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "yellow", - "60" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2400" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } ] }, - "pf-t--color--yellow--70": { + "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500": { "type": "color", - "value": "#73480b", - "filePath": "tokens/default/palette.color.json", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#73480b" + "value": "{chart.color.orange.400}" }, - "name": "pf-t--color--yellow--70", + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500", "attributes": { - "category": "color", - "type": "yellow", - "item": "70" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" }, "path": [ - "color", - "yellow", - "70" + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2500" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.60}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + } + ] + } ] }, - "pf-t--color--green--10": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100": { "type": "color", - "value": "#e9f7df", - "filePath": "tokens/default/palette.color.json", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#e9f7df" + "value": "{chart.color.blue.300}" }, - "name": "pf-t--color--green--10", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100", "attributes": { - "category": "color", - "type": "green", - "item": "10" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "green", - "10" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } ] }, - "pf-t--color--green--20": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/default/palette.color.json", + "value": "#dca614", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#d1f1bb" + "value": "{chart.color.yellow.300}" }, - "name": "pf-t--color--green--20", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200", "attributes": { - "category": "color", - "type": "green", - "item": "20" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "green", - "20" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } ] }, - "pf-t--color--green--30": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", + "value": "#63993d", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#afdc8f" + "value": "{chart.color.green.300}" }, - "name": "pf-t--color--green--30", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300", "attributes": { - "category": "color", - "type": "green", - "item": "30" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "green", - "30" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } ] }, - "pf-t--color--green--40": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", + "value": "#5e40be", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#87bb62" + "value": "{chart.color.purple.300}" }, - "name": "pf-t--color--green--40", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400", "attributes": { - "category": "color", - "type": "green", - "item": "40" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "green", - "40" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } ] }, - "pf-t--color--green--50": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500": { "type": "color", - "value": "#63993d", - "filePath": "tokens/default/palette.color.json", + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#63993d" + "value": "{chart.color.orange.300}" }, - "name": "pf-t--color--green--50", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500", "attributes": { - "category": "color", - "type": "green", - "item": "50" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "green", - "50" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "500" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } ] }, - "pf-t--color--green--60": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600": { "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#3d7317" + "value": "{chart.color.teal.300}" }, - "name": "pf-t--color--green--60", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600", "attributes": { - "category": "color", - "type": "green", - "item": "60" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "green", - "60" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "600" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } ] }, - "pf-t--color--green--70": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700": { "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#204d00" + "value": "{chart.color.black.300}" }, - "name": "pf-t--color--green--70", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700", "attributes": { - "category": "color", - "type": "green", - "item": "70" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "green", - "70" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "700" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } ] }, - "pf-t--color--orange--10": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800": { "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/default/palette.color.json", + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#ffe8cc" + "value": "{chart.color.blue.100}" }, - "name": "pf-t--color--orange--10", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800", "attributes": { - "category": "color", - "type": "orange", - "item": "10" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "orange", - "10" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "800" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } ] }, - "pf-t--color--orange--20": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/default/palette.color.json", + "value": "#96640f", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#fccb8f" + "value": "{chart.color.yellow.500}" }, - "name": "pf-t--color--orange--20", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900", "attributes": { - "category": "color", - "type": "orange", - "item": "20" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "orange", - "20" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "900" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.60}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { + "type": "color", + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + } + ] + } ] }, - "pf-t--color--orange--30": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#f8ae54" + "value": "{chart.color.green.100}" }, - "name": "pf-t--color--orange--30", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000", "attributes": { - "category": "color", - "type": "orange", - "item": "30" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "orange", - "30" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1000" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } ] }, - "pf-t--color--orange--40": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", + "value": "#21134d", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#f5921b" + "value": "{chart.color.purple.500}" }, - "name": "pf-t--color--orange--40", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100", "attributes": { - "category": "color", - "type": "orange", - "item": "40" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "orange", - "40" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1100" + ], + "references": [ + { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.70}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { + "type": "color", + "value": "#21134d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#21134d" + }, + "name": "pf-t--color--purple--70", + "attributes": { + "category": "color", + "type": "purple", + "item": "70" + }, + "path": [ + "color", + "purple", + "70" + ] + } + ] + } ] }, - "pf-t--color--orange--50": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#ca6c0f" + "value": "{chart.color.orange.100}" }, - "name": "pf-t--color--orange--50", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200", "attributes": { - "category": "color", - "type": "orange", - "item": "50" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "orange", - "50" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } ] }, - "pf-t--color--orange--60": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300": { "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/palette.color.json", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#9e4a06" + "value": "{chart.color.teal.500}" }, - "name": "pf-t--color--orange--60", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300", "attributes": { - "category": "color", - "type": "orange", - "item": "60" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "orange", - "60" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1300" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } ] }, - "pf-t--color--orange--70": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400": { "type": "color", - "value": "#732e00", - "filePath": "tokens/default/palette.color.json", + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#732e00" + "value": "{chart.color.black.100}" }, - "name": "pf-t--color--orange--70", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400", "attributes": { - "category": "color", - "type": "orange", - "item": "70" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "orange", - "70" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1400" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } ] }, - "pf-t--color--red-orange--10": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500": { "type": "color", - "value": "#ffe3d9", - "filePath": "tokens/default/palette.color.json", + "value": "#003366", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#ffe3d9" + "value": "{chart.color.blue.500}" }, - "name": "pf-t--color--red-orange--10", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500", "attributes": { - "category": "color", - "type": "red-orange", - "item": "10" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red-orange", - "10" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1500" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.70}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + } + ] + } ] }, - "pf-t--color--red-orange--20": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600": { "type": "color", - "value": "#fbbea8", - "filePath": "tokens/default/palette.color.json", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#fbbea8" + "value": "{chart.color.yellow.100}" }, - "name": "pf-t--color--red-orange--20", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600", "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red-orange", - "20" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1600" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } ] }, - "pf-t--color--red-orange--30": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/palette.color.json", + "value": "#204d00", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#f89b78" + "value": "{chart.color.green.500}" }, - "name": "pf-t--color--red-orange--30", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700", "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red-orange", - "30" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1700" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } ] }, - "pf-t--color--red-orange--40": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800": { "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/palette.color.json", + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#f4784a" + "value": "{chart.color.purple.100}" }, - "name": "pf-t--color--red-orange--40", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800", "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red-orange", - "40" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1800" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } ] }, - "pf-t--color--red-orange--50": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900": { "type": "color", - "value": "#f0561d", - "filePath": "tokens/default/palette.color.json", + "value": "#732e00", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#f0561d" + "value": "{chart.color.orange.500}" }, - "name": "pf-t--color--red-orange--50", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900", "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red-orange", - "50" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1900" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.70}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { + "type": "color", + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + } + ] + } ] }, - "pf-t--color--red-orange--60": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000": { "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#b1380b" + "value": "{chart.color.teal.100}" }, - "name": "pf-t--color--red-orange--60", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000", "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red-orange", - "60" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2000" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } ] }, - "pf-t--color--red-orange--70": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100": { "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", + "value": "#707070", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#731f00" + "value": "{chart.color.black.500}" }, - "name": "pf-t--color--red-orange--70", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100", "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red-orange", - "70" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } ] }, - "pf-t--color--purple--10": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200": { "type": "color", - "value": "#ece6ff", - "filePath": "tokens/default/palette.color.json", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#ece6ff" + "value": "{chart.color.blue.200}" }, - "name": "pf-t--color--purple--10", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200", "attributes": { - "category": "color", - "type": "purple", - "item": "10" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "purple", - "10" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } ] }, - "pf-t--color--purple--20": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/default/palette.color.json", + "value": "#b98412", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#d0c5f4" + "value": "{chart.color.yellow.400}" }, - "name": "pf-t--color--purple--20", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300", "attributes": { - "category": "color", - "type": "purple", - "item": "20" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "purple", - "20" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } ] }, - "pf-t--color--purple--30": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#b6a6e9" + "value": "{chart.color.green.200}" }, - "name": "pf-t--color--purple--30", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400", "attributes": { - "category": "color", - "type": "purple", - "item": "30" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "purple", - "30" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2400" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } ] }, - "pf-t--color--purple--40": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", + "value": "#3d2785", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#876fd4" + "value": "{chart.color.purple.400}" }, - "name": "pf-t--color--purple--40", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500", "attributes": { - "category": "color", - "type": "purple", - "item": "40" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "purple", - "40" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2500" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } ] }, - "pf-t--color--purple--50": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#5e40be" + "value": "{chart.color.orange.200}" }, - "name": "pf-t--color--purple--50", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600", "attributes": { - "category": "color", - "type": "purple", - "item": "50" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "purple", - "50" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2600" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } ] }, - "pf-t--color--purple--60": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", + "value": "#147878", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#3d2785" + "value": "{chart.color.teal.400}" }, - "name": "pf-t--color--purple--60", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700", "attributes": { - "category": "color", - "type": "purple", - "item": "60" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "purple", - "60" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2700" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } ] }, - "pf-t--color--purple--70": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800": { "type": "color", - "value": "#21134d", - "filePath": "tokens/default/palette.color.json", + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#21134d" + "value": "{chart.color.black.200}" }, - "name": "pf-t--color--purple--70", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800", "attributes": { - "category": "color", - "type": "purple", - "item": "70" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "purple", - "70" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2800" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } ] }, - "pf-t--color--red--10": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900": { "type": "color", - "value": "#fce3e3", - "filePath": "tokens/default/palette.color.json", + "value": "#004d99", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#fce3e3" + "value": "{chart.color.blue.400}" }, - "name": "pf-t--color--red--10", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900", "attributes": { - "category": "color", - "type": "red", - "item": "10" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red", - "10" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2900" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } ] }, - "pf-t--color--red--20": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000": { "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/default/palette.color.json", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#fbc5c5" + "value": "{chart.color.yellow.200}" }, - "name": "pf-t--color--red--20", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000", "attributes": { - "category": "color", - "type": "red", - "item": "20" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red", - "20" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3000" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } ] }, - "pf-t--color--red--30": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100": { "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/palette.color.json", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#f9a8a8" + "value": "{chart.color.green.400}" }, - "name": "pf-t--color--red--30", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100", "attributes": { - "category": "color", - "type": "red", - "item": "30" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red", - "30" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3100" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } ] }, - "pf-t--color--red--40": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200": { "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/palette.color.json", + "value": "#876fd4", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#f56e6e" + "value": "{chart.color.purple.200}" }, - "name": "pf-t--color--red--40", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200", "attributes": { - "category": "color", - "type": "red", - "item": "40" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red", - "40" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3200" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } ] }, - "pf-t--color--red--50": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300": { "type": "color", - "value": "#ee0000", - "filePath": "tokens/default/palette.color.json", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#ee0000" + "value": "{chart.color.orange.400}" }, - "name": "pf-t--color--red--50", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300", "attributes": { - "category": "color", - "type": "red", - "item": "50" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red", - "50" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3300" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.60}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { + "type": "color", + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + } + ] + } ] }, - "pf-t--color--red--60": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400": { "type": "color", - "value": "#a60000", - "filePath": "tokens/default/palette.color.json", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#a60000" + "value": "{chart.color.teal.200}" }, - "name": "pf-t--color--red--60", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400", "attributes": { - "category": "color", - "type": "red", - "item": "60" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red", - "60" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3400" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } ] }, - "pf-t--color--red--70": { + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500": { "type": "color", - "value": "#5f0000", - "filePath": "tokens/default/palette.color.json", + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", "isSource": true, "original": { "type": "color", - "value": "#5f0000" + "value": "{chart.color.black.400}" }, - "name": "pf-t--color--red--70", + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500", "attributes": { - "category": "color", - "type": "red", - "item": "70" + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" }, "path": [ - "color", - "red", - "70" + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3500" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } ] } } diff --git a/packages/module/patternfly-docs/content/tokensTable.css b/packages/module/patternfly-docs/content/tokensTable.css new file mode 100644 index 0000000..d23bde9 --- /dev/null +++ b/packages/module/patternfly-docs/content/tokensTable.css @@ -0,0 +1,8 @@ +.ws-token-swatch { + height: 1em; + display: inline-block; + aspect-ratio: 1 / 1; + border-radius: 50%; + border: var(--pf-t--global--border--width--regular) solid var(--pf-t--global--background--color--inverse--default); + box-shadow: var(--pf-t--global--box-shadow--sm); +} diff --git a/packages/module/patternfly-docs/content/tokensTableCategories.js b/packages/module/patternfly-docs/content/tokensTableCategories.js index f1c25f5..ad8936e 100644 --- a/packages/module/patternfly-docs/content/tokensTableCategories.js +++ b/packages/module/patternfly-docs/content/tokensTableCategories.js @@ -11,25 +11,13 @@ import { OuterScrollContainer, InnerScrollContainer } from '@patternfly/react-table'; +import './tokensTable.css'; // eslint-disable-next-line camelcase import global_spacer_md from '@patternfly/react-tokens/dist/esm/global_spacer_md'; import LevelUpAltIcon from '@patternfly/react-icons/dist/esm/icons/level-up-alt-icon'; -let combinedTokens = { - semantic: { - colors: {}, - dimension: {}, - motion: {} - }, - base: { - colors: {}, - dimension: {}, - motion: {} - }, - palette: {}, - chart: {} -}; +const isColorRegex = /^(#|rgb)/; // Used to combine data grouped by theme under each token name const combineObjects = (parentObject) => { @@ -51,6 +39,30 @@ const combineObjects = (parentObject) => { return combined; }; +const combineTokens = (tokensObj, tokensByTheme) => { + Object.entries(tokensObj).map(([layerName, layerObj]) => { + // ['chart', {}] + const layerCategories = Object.keys(layerObj); // [] + if (layerCategories.length > 0) { + Object.keys(layerObj).map((layerCategory) => { + const layerCategoryByTheme = Object.entries(tokensByTheme).reduce((acc, [themeName, themeData]) => { + acc[themeName] = themeData[layerName][layerCategory]; + return acc; + }, {}); + tokensObj[layerName][layerCategory] = combineObjects(layerCategoryByTheme); + }); + } else { + const layerByTheme = Object.entries(tokensByTheme).reduce((acc, [themeName, themeData]) => { + // ['dark', {'palette': { ... }, 'chart': { ... } }] + acc[themeName] = themeData[layerName]; // {'dark': { ...chart data } } + return acc; + }, {}); + tokensObj[layerName] = combineObjects(layerByTheme); + } + }); + return tokensObj; +}; + const getTokenChain = (themeTokenData) => { let tokenChain = []; let referenceToken = themeTokenData?.references?.[0]; @@ -86,6 +98,20 @@ const showTokenChain = (themeTokenData) => { }; export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize }) => { + const combinedTokensObj = { + semantic: { + colors: {}, + dimension: {}, + motion: {} + }, + base: { + colors: {}, + dimension: {}, + motion: {} + }, + palette: {}, + chart: {} + }; // combine all themes/tokens into one object const themeKeys = Object.keys(tokenJson); const tokensByTheme = useMemo( @@ -98,24 +124,8 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize }, {}), [tokenJson] ); - Object.entries(combinedTokens).map(([layerName, layerObj]) => { - const layerCategories = Object.keys(layerObj); - if (layerCategories.length > 0) { - Object.keys(layerObj).map((layerCategory) => { - const layerCategoryByTheme = Object.entries(tokensByTheme).reduce((acc, [themeName, themeData]) => { - acc[themeName] = themeData[layerName][layerCategory]; - return acc; - }, {}); - combinedTokens[layerName][layerCategory] = combineObjects(layerCategoryByTheme); - }); - } else { - const layerByTheme = Object.entries(tokensByTheme).reduce((acc, [themeName, themeData]) => { - acc[themeName] = themeData[layerName]; - return acc; - }, {}); - combinedTokens[layerName] = combineObjects(layerByTheme); - } - }); + const allTokens = combineTokens(combinedTokensObj, tokensByTheme); + const [searchValue, setSearchValue] = React.useState(''); const [expandedTokens, setExpandedTokens] = React.useState([]); const setExpanded = (tokenName, isExpanding = true) => @@ -143,13 +153,16 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize - {Object.entries(combinedTokens).map(([layerName, layerDataObj], rowIndex) => { + {Object.entries(allTokens).map(([layerName, layerDataObj], rowIndex) => { if (layerName === 'palette') { layerDataObj = { palette: layerDataObj }; } + if (layerName === 'chart') { + layerDataObj = { chart: layerDataObj }; + } return ( <> - {layerName} + {formatThemeText(layerName)} tokens @@ -223,28 +236,51 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize {themeKeys.map((theme) => { const val = - layerName === 'palette' + layerName === 'palette' || layerName === 'chart' ? tokensByTheme[theme][layerName][tokenName]?.value : tokensByTheme[theme][layerName][categoryName][tokenName]?.value; - return ; + const hasValue = val !== undefined; + return ( + + ); })} - {hasReferences && ( - + {hasReferences && isTokenExpanded(tokenName) && ( + - ))} + {themeKeys.map((theme) => { + return ( + + ); + })} )} diff --git a/packages/module/patternfly-docs/scssAsJson.json b/packages/module/patternfly-docs/scssAsJson.json index 62789eb..9cd6f14 100644 --- a/packages/module/patternfly-docs/scssAsJson.json +++ b/packages/module/patternfly-docs/scssAsJson.json @@ -1,926 +1 @@ -{ - "--pf-t--color--red--70": "#5f0000", - "--pf-t--color--red--60": "#a60000", - "--pf-t--color--red--50": "#ee0000", - "--pf-t--color--red--40": "#f56e6e", - "--pf-t--color--red--30": "#f9a8a8", - "--pf-t--color--red--20": "#fbc5c5", - "--pf-t--color--red--10": "#fce3e3", - "--pf-t--color--purple--70": "#21134d", - "--pf-t--color--purple--60": "#3d2785", - "--pf-t--color--purple--50": "#5e40be", - "--pf-t--color--purple--40": "#876fd4", - "--pf-t--color--purple--30": "#b6a6e9", - "--pf-t--color--purple--20": "#d0c5f4", - "--pf-t--color--purple--10": "#ece6ff", - "--pf-t--color--red-orange--70": "#731f00", - "--pf-t--color--red-orange--60": "#b1380b", - "--pf-t--color--red-orange--50": "#f0561d", - "--pf-t--color--red-orange--40": "#f4784a", - "--pf-t--color--red-orange--30": "#f89b78", - "--pf-t--color--red-orange--20": "#fbbea8", - "--pf-t--color--red-orange--10": "#ffe3d9", - "--pf-t--color--orange--70": "#732e00", - "--pf-t--color--orange--60": "#9e4a06", - "--pf-t--color--orange--50": "#ca6c0f", - "--pf-t--color--orange--40": "#f5921b", - "--pf-t--color--orange--30": "#f8ae54", - "--pf-t--color--orange--20": "#fccb8f", - "--pf-t--color--orange--10": "#ffe8cc", - "--pf-t--color--green--70": "#204d00", - "--pf-t--color--green--60": "#3d7317", - "--pf-t--color--green--50": "#63993d", - "--pf-t--color--green--40": "#87bb62", - "--pf-t--color--green--30": "#afdc8f", - "--pf-t--color--green--20": "#d1f1bb", - "--pf-t--color--green--10": "#e9f7df", - "--pf-t--color--yellow--70": "#73480b", - "--pf-t--color--yellow--60": "#96640f", - "--pf-t--color--yellow--50": "#b98412", - "--pf-t--color--yellow--40": "#dca614", - "--pf-t--color--yellow--30": "#ffcc17", - "--pf-t--color--yellow--20": "#ffe072", - "--pf-t--color--yellow--10": "#fff4cc", - "--pf-t--color--teal--70": "#004d4d", - "--pf-t--color--teal--60": "#147878", - "--pf-t--color--teal--50": "#37a3a3", - "--pf-t--color--teal--40": "#63bdbd", - "--pf-t--color--teal--30": "#9ad8d8", - "--pf-t--color--teal--20": "#b9e5e5", - "--pf-t--color--teal--10": "#daf2f2", - "--pf-t--color--blue--70": "#003366", - "--pf-t--color--blue--60": "#004d99", - "--pf-t--color--blue--50": "#0066cc", - "--pf-t--color--blue--40": "#4394e5", - "--pf-t--color--blue--30": "#92c5f9", - "--pf-t--color--blue--20": "#b9dafc", - "--pf-t--color--blue--10": "#e0f0ff", - "--pf-t--color--black": "#000000", - "--pf-t--color--gray--95": "#151515", - "--pf-t--color--gray--90": "#1f1f1f", - "--pf-t--color--gray--80": "#292929", - "--pf-t--color--gray--70": "#383838", - "--pf-t--color--gray--60": "#4d4d4d", - "--pf-t--color--gray--50": "#707070", - "--pf-t--color--gray--40": "#a3a3a3", - "--pf-t--color--gray--30": "#c7c7c7", - "--pf-t--color--gray--20": "#e0e0e0", - "--pf-t--color--gray--10": "#f2f2f2", - "--pf-t--color--white": "#ffffff", - "--pf-t--global--timing-function--300": "cubic-bezier(0, 0, .2, 1)", - "--pf-t--global--timing-function--200": "cubic-bezier(.4, 0, .2, 1)", - "--pf-t--global--timing-function--100": "cubic-bezier(.4, 0, .7, .2)", - "--pf-t--global--delay--400": "7000ms", - "--pf-t--global--delay--300": "100ms", - "--pf-t--global--delay--200": "50ms", - "--pf-t--global--delay--100": "0ms", - "--pf-t--global--duration--600": "600ms", - "--pf-t--global--duration--500": "500ms", - "--pf-t--global--duration--400": "400ms", - "--pf-t--global--duration--300": "300ms", - "--pf-t--global--duration--200": "200ms", - "--pf-t--global--duration--100": "100ms", - "--pf-t--global--duration--50": "50ms", - "--pf-t--global--background--color--action--plain--default": "rgba(0, 0, 0, 0.0000)", - "--pf-t--global--background--color--600": "rgba(199, 199, 199, 0.2500)", - "--pf-t--global--background--color--500": "rgba(21, 21, 21, 0.2000)", - "--pf-t--global--breakpoint--600": "1450px", - "--pf-t--global--breakpoint--550": "1280px", - "--pf-t--global--breakpoint--500": "1200px", - "--pf-t--global--breakpoint--400": "992px", - "--pf-t--global--breakpoint--350": "960px", - "--pf-t--global--breakpoint--300": "768px", - "--pf-t--global--breakpoint--250": "640px", - "--pf-t--global--breakpoint--200": "576px", - "--pf-t--global--breakpoint--100": "0px", - "--pf-t--global--box-shadow--color--200": "rgba(0, 0, 0, 0.1200)", - "--pf-t--global--box-shadow--color--100": "rgba(0, 0, 0, 0.1600)", - "--pf-t--global--box-shadow--spread--100": "0px", - "--pf-t--global--box-shadow--blur--300": "24px", - "--pf-t--global--box-shadow--blur--200": "8px", - "--pf-t--global--box-shadow--blur--100": "2px", - "--pf-t--global--box-shadow--Y--700": "8px", - "--pf-t--global--box-shadow--Y--600": "4px", - "--pf-t--global--box-shadow--Y--500": "1px", - "--pf-t--global--box-shadow--Y--400": "0px", - "--pf-t--global--box-shadow--Y--300": "-1px", - "--pf-t--global--box-shadow--Y--200": "-4px", - "--pf-t--global--box-shadow--Y--100": "-8px", - "--pf-t--global--box-shadow--X--700": "8px", - "--pf-t--global--box-shadow--X--600": "4px", - "--pf-t--global--box-shadow--X--500": "1px", - "--pf-t--global--box-shadow--X--400": "0px", - "--pf-t--global--box-shadow--X--300": "-1px", - "--pf-t--global--box-shadow--X--200": "-4px", - "--pf-t--global--box-shadow--X--100": "-8px", - "--pf-t--global--z-index--600": "600", - "--pf-t--global--z-index--500": "500", - "--pf-t--global--z-index--400": "400", - "--pf-t--global--z-index--300": "300", - "--pf-t--global--z-index--200": "200", - "--pf-t--global--z-index--100": "100", - "--pf-t--global--font--size--800": "36px", - "--pf-t--global--font--size--700": "28px", - "--pf-t--global--font--size--600": "22px", - "--pf-t--global--font--size--500": "20px", - "--pf-t--global--font--size--400": "18px", - "--pf-t--global--font--size--300": "16px", - "--pf-t--global--font--size--200": "14px", - "--pf-t--global--font--size--100": "12px", - "--pf-t--global--border--radius--500": "999px", - "--pf-t--global--border--radius--400": "24px", - "--pf-t--global--border--radius--300": "16px", - "--pf-t--global--border--radius--200": "6px", - "--pf-t--global--border--radius--100": "4px", - "--pf-t--global--border--radius--0": "0px", - "--pf-t--global--border--width--300": "3px", - "--pf-t--global--border--width--200": "2px", - "--pf-t--global--border--width--100": "1px", - "--pf-t--global--icon--size--500": "96px", - "--pf-t--global--icon--size--400": "56px", - "--pf-t--global--icon--size--300": "22px", - "--pf-t--global--icon--size--250": "16px", - "--pf-t--global--icon--size--200": "14px", - "--pf-t--global--icon--size--100": "12px", - "--pf-t--global--spacer--800": "80px", - "--pf-t--global--spacer--700": "64px", - "--pf-t--global--spacer--600": "48px", - "--pf-t--global--spacer--500": "32px", - "--pf-t--global--spacer--400": "24px", - "--pf-t--global--spacer--300": "16px", - "--pf-t--global--spacer--200": "8px", - "--pf-t--global--spacer--100": "4px", - "--pf-t--global--motion--timing-function--decelerate": "--pf-t--global--timing-function--300", - "--pf-t--global--motion--timing-function--default": "--pf-t--global--timing-function--200", - "--pf-t--global--motion--timing-function--accelerate": "--pf-t--global--timing-function--100", - "--pf-t--global--motion--delay--long": "--pf-t--global--delay--400", - "--pf-t--global--motion--delay--default": "--pf-t--global--delay--300", - "--pf-t--global--motion--delay--short": "--pf-t--global--delay--200", - "--pf-t--global--motion--delay--none": "--pf-t--global--delay--100", - "--pf-t--global--motion--duration--3xl": "--pf-t--global--duration--600", - "--pf-t--global--motion--duration--2xl": "--pf-t--global--duration--500", - "--pf-t--global--motion--duration--xl": "--pf-t--global--duration--400", - "--pf-t--global--motion--duration--lg": "--pf-t--global--duration--300", - "--pf-t--global--motion--duration--md": "--pf-t--global--duration--200", - "--pf-t--global--motion--duration--sm": "--pf-t--global--duration--100", - "--pf-t--global--motion--duration--xs": "--pf-t--global--duration--50", - "--pf-t--global--text--color--link--300": "--pf-t--color--purple--50", - "--pf-t--global--text--color--link--200": "--pf-t--color--blue--60", - "--pf-t--global--text--color--link--100": "--pf-t--color--blue--50", - "--pf-t--global--text--color--400": "--pf-t--color--red-orange--40", - "--pf-t--global--text--color--300": "--pf-t--color--white", - "--pf-t--global--text--color--200": "--pf-t--color--gray--60", - "--pf-t--global--text--color--100": "--pf-t--color--gray--90", - "--pf-t--global--color--nonstatus--gray--300": "--pf-t--color--gray--40", - "--pf-t--global--color--nonstatus--gray--200": "--pf-t--color--gray--30", - "--pf-t--global--color--nonstatus--gray--100": "--pf-t--color--gray--20", - "--pf-t--global--color--nonstatus--purple--300": "--pf-t--color--purple--40", - "--pf-t--global--color--nonstatus--purple--200": "--pf-t--color--purple--30", - "--pf-t--global--color--nonstatus--purple--100": "--pf-t--color--purple--20", - "--pf-t--global--color--nonstatus--blue--300": "--pf-t--color--blue--40", - "--pf-t--global--color--nonstatus--blue--200": "--pf-t--color--blue--30", - "--pf-t--global--color--nonstatus--blue--100": "--pf-t--color--blue--20", - "--pf-t--global--color--nonstatus--cyan--300": "--pf-t--color--teal--40", - "--pf-t--global--color--nonstatus--cyan--200": "--pf-t--color--teal--30", - "--pf-t--global--color--nonstatus--cyan--100": "--pf-t--color--teal--20", - "--pf-t--global--color--nonstatus--green--300": "--pf-t--color--green--40", - "--pf-t--global--color--nonstatus--green--200": "--pf-t--color--green--30", - "--pf-t--global--color--nonstatus--green--100": "--pf-t--color--green--20", - "--pf-t--global--color--nonstatus--gold--300": "--pf-t--color--yellow--40", - "--pf-t--global--color--nonstatus--gold--200": "--pf-t--color--yellow--30", - "--pf-t--global--color--nonstatus--gold--100": "--pf-t--color--yellow--20", - "--pf-t--global--color--nonstatus--orange--300": "--pf-t--color--orange--40", - "--pf-t--global--color--nonstatus--orange--200": "--pf-t--color--orange--30", - "--pf-t--global--color--nonstatus--orange--100": "--pf-t--color--orange--20", - "--pf-t--global--color--nonstatus--orangered--300": "--pf-t--color--red-orange--40", - "--pf-t--global--color--nonstatus--orangered--200": "--pf-t--color--red-orange--30", - "--pf-t--global--color--nonstatus--orangered--100": "--pf-t--color--red-orange--20", - "--pf-t--global--color--nonstatus--red--300": "--pf-t--color--red--40", - "--pf-t--global--color--nonstatus--red--200": "--pf-t--color--red--30", - "--pf-t--global--color--nonstatus--red--100": "--pf-t--color--red--20", - "--pf-t--global--color--severity--critical--100": "--pf-t--color--red-orange--60", - "--pf-t--global--color--severity--important--100": "--pf-t--color--orange--50", - "--pf-t--global--color--severity--moderate--100": "--pf-t--color--yellow--40", - "--pf-t--global--color--severity--minor--100": "--pf-t--color--gray--50", - "--pf-t--global--color--severity--none--100": "--pf-t--color--blue--40", - "--pf-t--global--color--severity--undefined--100": "--pf-t--color--gray--30", - "--pf-t--global--color--status--custom--200": "--pf-t--color--teal--70", - "--pf-t--global--color--status--custom--100": "--pf-t--color--teal--60", - "--pf-t--global--color--status--info--200": "--pf-t--color--purple--60", - "--pf-t--global--color--status--info--100": "--pf-t--color--purple--50", - "--pf-t--global--color--status--danger--300": "--pf-t--color--red-orange--70", - "--pf-t--global--color--status--danger--200": "--pf-t--color--red-orange--70", - "--pf-t--global--color--status--danger--100": "--pf-t--color--red-orange--60", - "--pf-t--global--color--status--warning--300": "--pf-t--color--yellow--50", - "--pf-t--global--color--status--warning--200": "--pf-t--color--yellow--40", - "--pf-t--global--color--status--warning--100": "--pf-t--color--yellow--30", - "--pf-t--global--color--status--success--200": "--pf-t--color--green--70", - "--pf-t--global--color--status--success--100": "--pf-t--color--green--60", - "--pf-t--global--color--favorite--200": "--pf-t--color--yellow--40", - "--pf-t--global--color--favorite--100": "--pf-t--color--yellow--30", - "--pf-t--global--color--disabled--300": "--pf-t--color--gray--60", - "--pf-t--global--color--disabled--200": "--pf-t--color--gray--40", - "--pf-t--global--color--disabled--100": "--pf-t--color--gray--30", - "--pf-t--global--color--brand--300": "--pf-t--color--blue--60", - "--pf-t--global--color--brand--200": "--pf-t--color--blue--50", - "--pf-t--global--color--brand--100": "--pf-t--color--blue--40", - "--pf-t--global--background--color--backdrop--default": "--pf-t--global--dark--background--color--500", - "--pf-t--global--background--color--action--plain--clicked": "--pf-t--global--dark--background--color--600", - "--pf-t--global--background--color--action--plain--hover": "--pf-t--global--dark--background--color--600", - "--pf-t--global--background--color--highlight--200": "--pf-t--color--yellow--40", - "--pf-t--global--background--color--highlight--100": "--pf-t--color--yellow--30", - "--pf-t--global--background--color--400": "--pf-t--color--gray--80", - "--pf-t--global--background--color--300": "--pf-t--color--gray--20", - "--pf-t--global--background--color--200": "--pf-t--color--gray--10", - "--pf-t--global--background--color--100": "--pf-t--color--white", - "--pf-t--global--breakpoint--height--2xl": "--pf-t--global--breakpoint--550", - "--pf-t--global--breakpoint--height--xl": "--pf-t--global--breakpoint--350", - "--pf-t--global--breakpoint--height--lg": "--pf-t--global--breakpoint--300", - "--pf-t--global--breakpoint--height--md": "--pf-t--global--breakpoint--250", - "--pf-t--global--breakpoint--height--sm": "--pf-t--global--breakpoint--100", - "--pf-t--global--breakpoint--2xl": "--pf-t--global--breakpoint--600", - "--pf-t--global--breakpoint--xl": "--pf-t--global--breakpoint--500", - "--pf-t--global--breakpoint--lg": "--pf-t--global--breakpoint--400", - "--pf-t--global--breakpoint--md": "--pf-t--global--breakpoint--300", - "--pf-t--global--breakpoint--sm": "--pf-t--global--breakpoint--200", - "--pf-t--global--breakpoint--xs": "--pf-t--global--breakpoint--100", - "--pf-t--global--box-shadow--color--lg": "--pf-t--global--dark--box-shadow--color--100", - "--pf-t--global--box-shadow--color--md": "--pf-t--global--dark--box-shadow--color--100", - "--pf-t--global--box-shadow--color--sm": "--pf-t--global--dark--box-shadow--color--100", - "--pf-t--global--box-shadow--spread--lg": "--pf-t--global--box-shadow--spread--100", - "--pf-t--global--box-shadow--spread--md": "--pf-t--global--box-shadow--spread--100", - "--pf-t--global--box-shadow--spread--sm": "--pf-t--global--box-shadow--spread--100", - "--pf-t--global--box-shadow--blur--lg": "--pf-t--global--box-shadow--blur--300", - "--pf-t--global--box-shadow--blur--md": "--pf-t--global--box-shadow--blur--200", - "--pf-t--global--box-shadow--blur--sm": "--pf-t--global--box-shadow--blur--100", - "--pf-t--global--box-shadow--Y--lg--right": "--pf-t--global--box-shadow--Y--400", - "--pf-t--global--box-shadow--Y--lg--left": "--pf-t--global--box-shadow--Y--400", - "--pf-t--global--box-shadow--Y--lg--bottom": "--pf-t--global--box-shadow--Y--700", - "--pf-t--global--box-shadow--Y--lg--top": "--pf-t--global--box-shadow--Y--100", - "--pf-t--global--box-shadow--Y--lg--default": "--pf-t--global--box-shadow--Y--700", - "--pf-t--global--box-shadow--Y--md--right": "--pf-t--global--box-shadow--Y--400", - "--pf-t--global--box-shadow--Y--md--left": "--pf-t--global--box-shadow--Y--400", - "--pf-t--global--box-shadow--Y--md--bottom": "--pf-t--global--box-shadow--Y--600", - "--pf-t--global--box-shadow--Y--md--top": "--pf-t--global--box-shadow--Y--200", - "--pf-t--global--box-shadow--Y--md--default": "--pf-t--global--box-shadow--Y--600", - "--pf-t--global--box-shadow--Y--sm--right": "--pf-t--global--box-shadow--Y--400", - "--pf-t--global--box-shadow--Y--sm--left": "--pf-t--global--box-shadow--Y--400", - "--pf-t--global--box-shadow--Y--sm--bottom": "--pf-t--global--box-shadow--Y--500", - "--pf-t--global--box-shadow--Y--sm--top": "--pf-t--global--box-shadow--Y--300", - "--pf-t--global--box-shadow--Y--sm--default": "--pf-t--global--box-shadow--Y--500", - "--pf-t--global--box-shadow--X--lg--right": "--pf-t--global--box-shadow--X--700", - "--pf-t--global--box-shadow--X--lg--left": "--pf-t--global--box-shadow--X--100", - "--pf-t--global--box-shadow--X--lg--bottom": "--pf-t--global--box-shadow--X--400", - "--pf-t--global--box-shadow--X--lg--top": "--pf-t--global--box-shadow--X--400", - "--pf-t--global--box-shadow--X--lg--default": "--pf-t--global--box-shadow--X--400", - "--pf-t--global--box-shadow--X--md--right": "--pf-t--global--box-shadow--X--600", - "--pf-t--global--box-shadow--X--md--left": "--pf-t--global--box-shadow--X--200", - "--pf-t--global--box-shadow--X--md--bottom": "--pf-t--global--box-shadow--X--400", - "--pf-t--global--box-shadow--X--md--top": "--pf-t--global--box-shadow--X--400", - "--pf-t--global--box-shadow--X--md--default": "--pf-t--global--box-shadow--X--400", - "--pf-t--global--box-shadow--X--sm--right": "--pf-t--global--box-shadow--X--500", - "--pf-t--global--box-shadow--X--sm--left": "--pf-t--global--box-shadow--X--300", - "--pf-t--global--box-shadow--X--sm--bottom": "--pf-t--global--box-shadow--X--400", - "--pf-t--global--box-shadow--X--sm--top": "--pf-t--global--box-shadow--X--400", - "--pf-t--global--box-shadow--X--sm--default": "--pf-t--global--box-shadow--X--400", - "--pf-t--global--z-index--2xl": "--pf-t--global--z-index--600", - "--pf-t--global--z-index--xl": "--pf-t--global--z-index--500", - "--pf-t--global--z-index--lg": "--pf-t--global--z-index--400", - "--pf-t--global--z-index--md": "--pf-t--global--z-index--300", - "--pf-t--global--z-index--sm": "--pf-t--global--z-index--200", - "--pf-t--global--z-index--xs": "--pf-t--global--z-index--100", - "--pf-t--global--font--size--4xl": "--pf-t--global--font--size--800", - "--pf-t--global--font--size--3xl": "--pf-t--global--font--size--700", - "--pf-t--global--font--size--2xl": "--pf-t--global--font--size--600", - "--pf-t--global--font--size--xl": "--pf-t--global--font--size--500", - "--pf-t--global--font--size--lg": "--pf-t--global--font--size--400", - "--pf-t--global--font--size--md": "--pf-t--global--font--size--300", - "--pf-t--global--font--size--sm": "--pf-t--global--font--size--200", - "--pf-t--global--font--size--xs": "--pf-t--global--font--size--100", - "--pf-t--global--border--color--300": "--pf-t--color--gray--50", - "--pf-t--global--border--color--200": "--pf-t--color--gray--40", - "--pf-t--global--border--color--100": "--pf-t--color--gray--30", - "--pf-t--global--border--radius--pill": "--pf-t--global--border--radius--500", - "--pf-t--global--border--radius--large": "--pf-t--global--border--radius--400", - "--pf-t--global--border--radius--medium": "--pf-t--global--border--radius--300", - "--pf-t--global--border--radius--small": "--pf-t--global--border--radius--200", - "--pf-t--global--border--radius--tiny": "--pf-t--global--border--radius--100", - "--pf-t--global--border--radius--sharp": "--pf-t--global--border--radius--0", - "--pf-t--global--border--width--control--clicked": "--pf-t--global--border--width--200", - "--pf-t--global--border--width--control--hover": "--pf-t--global--border--width--100", - "--pf-t--global--border--width--control--default": "--pf-t--global--border--width--100", - "--pf-t--global--border--width--button--clicked": "--pf-t--global--border--width--200", - "--pf-t--global--border--width--button--hover": "--pf-t--global--border--width--200", - "--pf-t--global--border--width--button--default": "--pf-t--global--border--width--100", - "--pf-t--global--border--width--box--status--read": "--pf-t--global--border--width--100", - "--pf-t--global--border--width--box--status--default": "--pf-t--global--border--width--200", - "--pf-t--global--border--width--box--clicked": "--pf-t--global--border--width--200", - "--pf-t--global--border--width--box--hover": "--pf-t--global--border--width--100", - "--pf-t--global--border--width--box--default": "--pf-t--global--border--width--100", - "--pf-t--global--border--width--extra-strong": "--pf-t--global--border--width--300", - "--pf-t--global--border--width--strong": "--pf-t--global--border--width--200", - "--pf-t--global--border--width--divider--clicked": "--pf-t--global--border--width--100", - "--pf-t--global--border--width--divider--hover": "--pf-t--global--border--width--100", - "--pf-t--global--border--width--divider--default": "--pf-t--global--border--width--100", - "--pf-t--global--border--width--regular": "--pf-t--global--border--width--100", - "--pf-t--global--icon--color--300": "--pf-t--color--white", - "--pf-t--global--icon--color--200": "--pf-t--color--gray--50", - "--pf-t--global--icon--color--100": "--pf-t--color--gray--90", - "--pf-t--global--icon--size--3xl": "--pf-t--global--icon--size--500", - "--pf-t--global--icon--size--2xl": "--pf-t--global--icon--size--400", - "--pf-t--global--icon--size--xl": "--pf-t--global--icon--size--300", - "--pf-t--global--icon--size--lg": "--pf-t--global--icon--size--250", - "--pf-t--global--icon--size--md": "--pf-t--global--icon--size--200", - "--pf-t--global--icon--size--sm": "--pf-t--global--icon--size--100", - "--pf-t--global--spacer--button--vertical--compact": "--pf-t--global--spacer--100", - "--pf-t--global--spacer--button--horizontal--compact": "--pf-t--global--spacer--300", - "--pf-t--global--spacer--4xl": "--pf-t--global--spacer--800", - "--pf-t--global--spacer--3xl": "--pf-t--global--spacer--700", - "--pf-t--global--spacer--2xl": "--pf-t--global--spacer--600", - "--pf-t--global--spacer--xl": "--pf-t--global--spacer--500", - "--pf-t--global--spacer--lg": "--pf-t--global--spacer--400", - "--pf-t--global--spacer--md": "--pf-t--global--spacer--300", - "--pf-t--global--spacer--sm": "--pf-t--global--spacer--200", - "--pf-t--global--spacer--xs": "--pf-t--global--spacer--100", - "--pf-t--global--motion--duration--icon--long": "--pf-t--global--motion--duration--md", - "--pf-t--global--motion--duration--icon--default": "--pf-t--global--motion--duration--sm", - "--pf-t--global--motion--duration--icon--short": "--pf-t--global--motion--duration--xs", - "--pf-t--global--motion--duration--slide-in--long": "--pf-t--global--motion--duration--2xl", - "--pf-t--global--motion--duration--slide-in--default": "--pf-t--global--motion--duration--xl", - "--pf-t--global--motion--duration--slide-in--short": "--pf-t--global--motion--duration--lg", - "--pf-t--global--motion--duration--slide-out--long": "--pf-t--global--motion--duration--2xl", - "--pf-t--global--motion--duration--slide-out--default": "--pf-t--global--motion--duration--xl", - "--pf-t--global--motion--duration--slide-out--short": "--pf-t--global--motion--duration--lg", - "--pf-t--global--motion--duration--fade--long": "--pf-t--global--motion--duration--lg", - "--pf-t--global--motion--duration--fade--default": "--pf-t--global--motion--duration--md", - "--pf-t--global--motion--duration--fade--short": "--pf-t--global--motion--duration--sm", - "--pf-t--global--text--color--status--warning--clicked": "--pf-t--global--color--status--warning--clicked", - "--pf-t--global--text--color--status--warning--hover": "--pf-t--global--color--status--warning--hover", - "--pf-t--global--text--color--status--warning--default": "--pf-t--global--color--status--warning--default", - "--pf-t--global--text--color--on-highlight": "--pf-t--global--dark--text--color--300", - "--pf-t--global--text--color--required": "--pf-t--global--dark--text--color--400", - "--pf-t--global--text--color--on-disabled": "--pf-t--global--dark--color--disabled--300", - "--pf-t--global--text--color--disabled": "--pf-t--global--dark--color--disabled--200", - "--pf-t--global--text--color--inverse": "--pf-t--global--dark--text--color--300", - "--pf-t--global--text--color--subtle": "--pf-t--global--dark--text--color--200", - "--pf-t--global--text--color--regular": "--pf-t--global--dark--text--color--100", - "--pf-t--global--text--color--link--visited": "--pf-t--global--dark--text--color--link--300", - "--pf-t--global--text--color--link--hover": "--pf-t--global--dark--text--color--link--200", - "--pf-t--global--text--color--link--default": "--pf-t--global--dark--text--color--link--100", - "--pf-t--global--color--nonstatus--gray--clicked": "--pf-t--global--dark--color--nonstatus--gray--200", - "--pf-t--global--color--nonstatus--gray--hover": "--pf-t--global--dark--color--nonstatus--gray--200", - "--pf-t--global--color--nonstatus--gray--default": "--pf-t--global--dark--color--nonstatus--gray--100", - "--pf-t--global--color--nonstatus--purple--clicked": "--pf-t--global--dark--color--nonstatus--purple--200", - "--pf-t--global--color--nonstatus--purple--hover": "--pf-t--global--dark--color--nonstatus--purple--200", - "--pf-t--global--color--nonstatus--purple--default": "--pf-t--global--dark--color--nonstatus--purple--100", - "--pf-t--global--color--nonstatus--blue--clicked": "--pf-t--global--dark--color--nonstatus--blue--200", - "--pf-t--global--color--nonstatus--blue--hover": "--pf-t--global--dark--color--nonstatus--blue--200", - "--pf-t--global--color--nonstatus--blue--default": "--pf-t--global--dark--color--nonstatus--blue--100", - "--pf-t--global--color--nonstatus--cyan--clicked": "--pf-t--global--dark--color--nonstatus--cyan--200", - "--pf-t--global--color--nonstatus--cyan--hover": "--pf-t--global--dark--color--nonstatus--cyan--200", - "--pf-t--global--color--nonstatus--cyan--default": "--pf-t--global--dark--color--nonstatus--cyan--100", - "--pf-t--global--color--nonstatus--green--clicked": "--pf-t--global--dark--color--nonstatus--green--200", - "--pf-t--global--color--nonstatus--green--hover": "--pf-t--global--dark--color--nonstatus--green--200", - "--pf-t--global--color--nonstatus--green--default": "--pf-t--global--dark--color--nonstatus--green--100", - "--pf-t--global--color--nonstatus--gold--clicked": "--pf-t--global--dark--color--nonstatus--gold--200", - "--pf-t--global--color--nonstatus--gold--hover": "--pf-t--global--dark--color--nonstatus--gold--200", - "--pf-t--global--color--nonstatus--gold--default": "--pf-t--global--dark--color--nonstatus--gold--100", - "--pf-t--global--color--nonstatus--orange--clicked": "--pf-t--global--dark--color--nonstatus--orange--200", - "--pf-t--global--color--nonstatus--orange--hover": "--pf-t--global--dark--color--nonstatus--orange--200", - "--pf-t--global--color--nonstatus--orange--default": "--pf-t--global--dark--color--nonstatus--orange--100", - "--pf-t--global--color--nonstatus--orangered--clicked": "--pf-t--global--dark--color--nonstatus--orangered--200", - "--pf-t--global--color--nonstatus--orangered--hover": "--pf-t--global--dark--color--nonstatus--orangered--200", - "--pf-t--global--color--nonstatus--orangered--default": "--pf-t--global--dark--color--nonstatus--orangered--100", - "--pf-t--global--color--nonstatus--red--clicked": "--pf-t--global--dark--color--nonstatus--red--200", - "--pf-t--global--color--nonstatus--red--hover": "--pf-t--global--dark--color--nonstatus--red--200", - "--pf-t--global--color--nonstatus--red--default": "--pf-t--global--dark--color--nonstatus--red--100", - "--pf-t--global--color--status--custom--clicked": "--pf-t--global--dark--color--status--custom--200", - "--pf-t--global--color--status--custom--hover": "--pf-t--global--dark--color--status--custom--200", - "--pf-t--global--color--status--custom--default": "--pf-t--global--dark--color--status--custom--100", - "--pf-t--global--color--status--info--clicked": "--pf-t--global--dark--color--status--info--200", - "--pf-t--global--color--status--info--hover": "--pf-t--global--dark--color--status--info--200", - "--pf-t--global--color--status--info--default": "--pf-t--global--dark--color--status--info--100", - "--pf-t--global--color--status--danger--clicked": "--pf-t--global--dark--color--status--danger--200", - "--pf-t--global--color--status--danger--hover": "--pf-t--global--dark--color--status--danger--200", - "--pf-t--global--color--status--danger--default": "--pf-t--global--dark--color--status--danger--100", - "--pf-t--global--color--status--warning--clicked": "--pf-t--global--dark--color--status--warning--200", - "--pf-t--global--color--status--warning--hover": "--pf-t--global--dark--color--status--warning--200", - "--pf-t--global--color--status--warning--default": "--pf-t--global--dark--color--status--warning--100", - "--pf-t--global--color--status--success--clicked": "--pf-t--global--dark--color--status--success--200", - "--pf-t--global--color--status--success--hover": "--pf-t--global--dark--color--status--success--200", - "--pf-t--global--color--status--success--default": "--pf-t--global--dark--color--status--success--100", - "--pf-t--global--color--favorite--clicked": "--pf-t--global--dark--color--favorite--200", - "--pf-t--global--color--favorite--hover": "--pf-t--global--dark--color--favorite--200", - "--pf-t--global--color--favorite--default": "--pf-t--global--dark--color--favorite--100", - "--pf-t--global--color--brand--clicked": "--pf-t--global--dark--color--brand--200", - "--pf-t--global--color--brand--hover": "--pf-t--global--dark--color--brand--200", - "--pf-t--global--color--brand--default": "--pf-t--global--dark--color--brand--100", - "--pf-t--global--background--color--disabled--default": "--pf-t--global--dark--color--disabled--100", - "--pf-t--global--background--color--inverse--default": "--pf-t--global--dark--background--color--400", - "--pf-t--global--background--color--action--plain--alt--clicked": "--pf-t--global--dark--background--color--200", - "--pf-t--global--background--color--action--plain--alt--hover": "--pf-t--global--dark--background--color--200", - "--pf-t--global--background--color--floating--clicked": "--pf-t--global--dark--background--color--200", - "--pf-t--global--background--color--floating--hover": "--pf-t--global--dark--background--color--200", - "--pf-t--global--background--color--floating--default": "--pf-t--global--dark--background--color--300", - "--pf-t--global--background--color--secondary--clicked": "--pf-t--global--dark--background--color--200", - "--pf-t--global--background--color--secondary--hover": "--pf-t--global--dark--background--color--200", - "--pf-t--global--background--color--secondary--default": "--pf-t--global--dark--background--color--100", - "--pf-t--global--background--color--primary--clicked": "--pf-t--global--dark--background--color--300", - "--pf-t--global--background--color--primary--hover": "--pf-t--global--dark--background--color--300", - "--pf-t--global--background--color--primary--default": "--pf-t--global--dark--background--color--200", - "--pf-t--global--background--color--highlight--clicked": "--pf-t--global--dark--background--color--highlight--200", - "--pf-t--global--background--color--highlight--default": "--pf-t--global--dark--background--color--highlight--100", - "--pf-t--global--font--size--heading--h6": "--pf-t--global--font--size--md", - "--pf-t--global--font--size--heading--h5": "--pf-t--global--font--size--md", - "--pf-t--global--font--size--heading--h4": "--pf-t--global--font--size--md", - "--pf-t--global--font--size--heading--h3": "--pf-t--global--font--size--lg", - "--pf-t--global--font--size--heading--h2": "--pf-t--global--font--size--xl", - "--pf-t--global--font--size--heading--h1": "--pf-t--global--font--size--2xl", - "--pf-t--global--font--size--body--lg": "--pf-t--global--font--size--md", - "--pf-t--global--font--size--body--default": "--pf-t--global--font--size--sm", - "--pf-t--global--font--size--body--sm": "--pf-t--global--font--size--xs", - "--pf-t--global--border--color--nonstatus--gray--clicked": "--pf-t--global--dark--color--nonstatus--gray--200", - "--pf-t--global--border--color--nonstatus--gray--hover": "--pf-t--global--dark--color--nonstatus--gray--200", - "--pf-t--global--border--color--nonstatus--gray--default": "--pf-t--global--dark--color--nonstatus--gray--100", - "--pf-t--global--border--color--nonstatus--purple--clicked": "--pf-t--global--dark--color--nonstatus--purple--200", - "--pf-t--global--border--color--nonstatus--purple--hover": "--pf-t--global--dark--color--nonstatus--purple--200", - "--pf-t--global--border--color--nonstatus--purple--default": "--pf-t--global--dark--color--nonstatus--purple--100", - "--pf-t--global--border--color--nonstatus--blue--clicked": "--pf-t--global--dark--color--nonstatus--blue--200", - "--pf-t--global--border--color--nonstatus--blue--hover": "--pf-t--global--dark--color--nonstatus--blue--200", - "--pf-t--global--border--color--nonstatus--blue--default": "--pf-t--global--dark--color--nonstatus--blue--100", - "--pf-t--global--border--color--nonstatus--cyan--clicked": "--pf-t--global--dark--color--nonstatus--cyan--200", - "--pf-t--global--border--color--nonstatus--cyan--hover": "--pf-t--global--dark--color--nonstatus--cyan--200", - "--pf-t--global--border--color--nonstatus--cyan--default": "--pf-t--global--dark--color--nonstatus--cyan--100", - "--pf-t--global--border--color--nonstatus--green--clicked": "--pf-t--global--dark--color--nonstatus--green--200", - "--pf-t--global--border--color--nonstatus--green--hover": "--pf-t--global--dark--color--nonstatus--green--200", - "--pf-t--global--border--color--nonstatus--green--default": "--pf-t--global--dark--color--nonstatus--green--100", - "--pf-t--global--border--color--nonstatus--gold--clicked": "--pf-t--global--dark--color--nonstatus--gold--200", - "--pf-t--global--border--color--nonstatus--gold--hover": "--pf-t--global--dark--color--nonstatus--gold--200", - "--pf-t--global--border--color--nonstatus--gold--default": "--pf-t--global--dark--color--nonstatus--gold--100", - "--pf-t--global--border--color--nonstatus--orange--clicked": "--pf-t--global--dark--color--nonstatus--orange--200", - "--pf-t--global--border--color--nonstatus--orange--hover": "--pf-t--global--dark--color--nonstatus--orange--200", - "--pf-t--global--border--color--nonstatus--orange--default": "--pf-t--global--dark--color--nonstatus--orange--100", - "--pf-t--global--border--color--nonstatus--orangered--clicked": "--pf-t--global--dark--color--nonstatus--orangered--200", - "--pf-t--global--border--color--nonstatus--orangered--hover": "--pf-t--global--dark--color--nonstatus--orangered--200", - "--pf-t--global--border--color--nonstatus--orangered--default": "--pf-t--global--dark--color--nonstatus--orangered--100", - "--pf-t--global--border--color--nonstatus--red--clicked": "--pf-t--global--dark--color--nonstatus--red--200", - "--pf-t--global--border--color--nonstatus--red--hover": "--pf-t--global--dark--color--nonstatus--red--200", - "--pf-t--global--border--color--nonstatus--red--default": "--pf-t--global--dark--color--nonstatus--red--100", - "--pf-t--global--border--color--on-secondary": "--pf-t--global--dark--border--color--200", - "--pf-t--global--border--color--disabled": "--pf-t--global--dark--color--disabled--200", - "--pf-t--global--border--color--clicked": "--pf-t--global--dark--color--brand--200", - "--pf-t--global--border--color--hover": "--pf-t--global--dark--color--brand--100", - "--pf-t--global--border--color--default": "--pf-t--global--dark--border--color--200", - "--pf-t--global--border--color--status--warning--clicked": "--pf-t--global--color--status--warning--clicked", - "--pf-t--global--border--color--status--warning--hover": "--pf-t--global--color--status--warning--hover", - "--pf-t--global--border--color--status--warning--default": "--pf-t--global--color--status--warning--default", - "--pf-t--global--icon--color--severity--critical--default": "--pf-t--global--dark--color--severity--critical--100", - "--pf-t--global--icon--color--severity--important--default": "--pf-t--global--dark--color--severity--important--100", - "--pf-t--global--icon--color--severity--moderate--default": "--pf-t--global--dark--color--severity--moderate--100", - "--pf-t--global--icon--color--severity--minor--default": "--pf-t--global--dark--color--severity--minor--100", - "--pf-t--global--icon--color--severity--none--default": "--pf-t--global--dark--color--severity--none--100", - "--pf-t--global--icon--color--severity--undefined--default": "--pf-t--global--dark--color--severity--undefined--100", - "--pf-t--global--icon--color--on-disabled": "--pf-t--global--dark--color--disabled--300", - "--pf-t--global--icon--color--disabled": "--pf-t--global--dark--color--disabled--200", - "--pf-t--global--icon--color--inverse": "--pf-t--global--dark--icon--color--300", - "--pf-t--global--icon--color--subtle": "--pf-t--global--dark--icon--color--200", - "--pf-t--global--icon--color--regular": "--pf-t--global--dark--icon--color--100", - "--pf-t--global--icon--color--status--warning--clicked": "--pf-t--global--color--status--warning--clicked", - "--pf-t--global--icon--color--status--warning--hover": "--pf-t--global--color--status--warning--hover", - "--pf-t--global--icon--color--status--warning--default": "--pf-t--global--color--status--warning--default", - "--pf-t--global--icon--size--font--4xl": "--pf-t--global--font--size--4xl", - "--pf-t--global--icon--size--font--3xl": "--pf-t--global--font--size--3xl", - "--pf-t--global--icon--size--font--2xl": "--pf-t--global--font--size--2xl", - "--pf-t--global--icon--size--font--xl": "--pf-t--global--font--size--xl", - "--pf-t--global--icon--size--font--lg": "--pf-t--global--font--size--lg", - "--pf-t--global--icon--size--font--md": "--pf-t--global--font--size--md", - "--pf-t--global--icon--size--font--sm": "--pf-t--global--font--size--sm", - "--pf-t--global--icon--size--font--xs": "--pf-t--global--font--size--xs", - "--pf-t--global--spacer--gap--action-to-action--plain": "--pf-t--global--spacer--xs", - "--pf-t--global--spacer--gap--action-to-action--default": "--pf-t--global--spacer--md", - "--pf-t--global--spacer--gap--group-to-group--vertical": "--pf-t--global--spacer--lg", - "--pf-t--global--spacer--gap--group-to-group--horizontal": "--pf-t--global--spacer--2xl", - "--pf-t--global--spacer--gap--group--horizontal": "--pf-t--global--spacer--md", - "--pf-t--global--spacer--gap--group--vertical": "--pf-t--global--spacer--sm", - "--pf-t--global--spacer--gap--control-to-control--default": "--pf-t--global--spacer--xs", - "--pf-t--global--spacer--gap--text-to-element--default": "--pf-t--global--spacer--sm", - "--pf-t--global--spacer--control--horizontal--plain": "--pf-t--global--spacer--sm", - "--pf-t--global--spacer--control--horizontal--default": "--pf-t--global--spacer--md", - "--pf-t--global--spacer--control--vertical--plain": "--pf-t--global--spacer--sm", - "--pf-t--global--spacer--control--vertical--default": "--pf-t--global--spacer--sm", - "--pf-t--global--spacer--action--horizontal--plain": "--pf-t--global--spacer--sm", - "--pf-t--global--spacer--action--horizontal--default": "--pf-t--global--spacer--lg", - "--pf-t--global--spacer--action--vertical--plain": "--pf-t--global--spacer--sm", - "--pf-t--global--spacer--action--vertical--default": "--pf-t--global--spacer--sm", - "--pf-t--global--text--color--nonstatus--on-gray--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-gray--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-gray--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-purple--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-purple--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-purple--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-blue--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-blue--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-blue--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-cyan--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-cyan--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-cyan--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-green--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-green--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-green--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-gold--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-gold--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-gold--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-orange--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-orange--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-orange--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-orangered--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-orangered--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-orangered--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-red--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-red--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--nonstatus--on-red--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--unread--on-attention--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--unread--on-attention--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--unread--on-attention--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--unread--on-default--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--unread--on-default--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--unread--on-default--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--on-custom--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--on-custom--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--on-custom--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--custom--clicked": "--pf-t--global--color--status--custom--clicked", - "--pf-t--global--text--color--status--custom--hover": "--pf-t--global--color--status--custom--hover", - "--pf-t--global--text--color--status--custom--default": "--pf-t--global--color--status--custom--default", - "--pf-t--global--text--color--status--on-info--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--on-info--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--on-info--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--info--clicked": "--pf-t--global--color--status--info--clicked", - "--pf-t--global--text--color--status--info--hover": "--pf-t--global--color--status--info--hover", - "--pf-t--global--text--color--status--info--default": "--pf-t--global--color--status--info--default", - "--pf-t--global--text--color--status--on-danger--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--on-danger--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--on-danger--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--danger--clicked": "--pf-t--global--dark--color--status--danger--300", - "--pf-t--global--text--color--status--danger--hover": "--pf-t--global--dark--color--status--danger--300", - "--pf-t--global--text--color--status--danger--default": "--pf-t--global--dark--color--status--danger--250", - "--pf-t--global--text--color--status--on-warning--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--on-warning--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--on-warning--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--on-success--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--on-success--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--on-success--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--status--success--clicked": "--pf-t--global--color--status--success--clicked", - "--pf-t--global--text--color--status--success--hover": "--pf-t--global--color--status--success--hover", - "--pf-t--global--text--color--status--success--default": "--pf-t--global--color--status--success--default", - "--pf-t--global--text--color--brand--clicked": "--pf-t--global--dark--color--brand--300", - "--pf-t--global--text--color--brand--hover": "--pf-t--global--dark--color--brand--300", - "--pf-t--global--text--color--brand--default": "--pf-t--global--dark--color--brand--200", - "--pf-t--global--text--color--placeholder": "--pf-t--global--text--color--subtle", - "--pf-t--global--text--color--on-brand--clicked": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--on-brand--hover": "--pf-t--global--text--color--inverse", - "--pf-t--global--text--color--on-brand--default": "--pf-t--global--text--color--inverse", - "--pf-t--global--color--status--read--on-primary": "--pf-t--global--background--color--secondary--default", - "--pf-t--global--color--status--unread--attention--hover": "--pf-t--global--color--status--danger--hover", - "--pf-t--global--color--status--unread--attention--clicked": "--pf-t--global--color--status--danger--clicked", - "--pf-t--global--color--status--unread--attention--default": "--pf-t--global--color--status--danger--default", - "--pf-t--global--color--status--unread--default--clicked": "--pf-t--global--color--brand--clicked", - "--pf-t--global--color--status--unread--default--hover": "--pf-t--global--color--brand--hover", - "--pf-t--global--color--status--unread--default--default": "--pf-t--global--color--brand--default", - "--pf-t--global--background--color--control--default": "--pf-t--global--dark--background--color--300", - "--pf-t--global--border--color--alt": "--pf-t--global--background--color--primary--default", - "--pf-t--global--border--color--status--custom--clicked": "--pf-t--global--color--status--custom--clicked", - "--pf-t--global--border--color--status--custom--hover": "--pf-t--global--color--status--custom--hover", - "--pf-t--global--border--color--status--custom--default": "--pf-t--global--color--status--custom--default", - "--pf-t--global--border--color--status--info--clicked": "--pf-t--global--color--status--info--clicked", - "--pf-t--global--border--color--status--info--hover": "--pf-t--global--color--status--info--hover", - "--pf-t--global--border--color--status--info--default": "--pf-t--global--color--status--info--default", - "--pf-t--global--border--color--status--danger--clicked": "--pf-t--global--color--status--danger--clicked", - "--pf-t--global--border--color--status--danger--hover": "--pf-t--global--color--status--danger--hover", - "--pf-t--global--border--color--status--danger--default": "--pf-t--global--color--status--danger--default", - "--pf-t--global--border--color--status--success--clicked": "--pf-t--global--color--status--success--clicked", - "--pf-t--global--border--color--status--success--hover": "--pf-t--global--color--status--success--hover", - "--pf-t--global--border--color--status--success--default": "--pf-t--global--color--status--success--default", - "--pf-t--global--border--color--brand--clicked": "--pf-t--global--color--brand--clicked", - "--pf-t--global--border--color--brand--hover": "--pf-t--global--color--brand--hover", - "--pf-t--global--border--color--brand--default": "--pf-t--global--color--brand--default", - "--pf-t--global--icon--color--nonstatus--on-gray--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-gray--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-gray--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-purple--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-purple--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-purple--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-blue--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-blue--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-blue--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-cyan--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-cyan--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-cyan--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-green--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-green--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-green--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-gold--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-gold--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-gold--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-orange--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-orange--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-orange--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-orangered--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-orangered--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-orangered--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-red--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-red--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--nonstatus--on-red--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--unread--on-attention--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--unread--on-attention--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--unread--on-attention--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--unread--on-default--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--unread--on-default--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--unread--on-default--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--on-custom--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--on-custom--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--on-custom--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--custom--clicked": "--pf-t--global--color--status--custom--clicked", - "--pf-t--global--icon--color--status--custom--hover": "--pf-t--global--color--status--custom--hover", - "--pf-t--global--icon--color--status--custom--default": "--pf-t--global--color--status--custom--default", - "--pf-t--global--icon--color--status--on-info--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--on-info--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--on-info--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--info--clicked": "--pf-t--global--color--status--info--clicked", - "--pf-t--global--icon--color--status--info--hover": "--pf-t--global--color--status--info--hover", - "--pf-t--global--icon--color--status--info--default": "--pf-t--global--color--status--info--default", - "--pf-t--global--icon--color--status--on-danger--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--on-danger--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--on-danger--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--danger--clicked": "--pf-t--global--color--status--danger--clicked", - "--pf-t--global--icon--color--status--danger--hover": "--pf-t--global--color--status--danger--hover", - "--pf-t--global--icon--color--status--danger--default": "--pf-t--global--color--status--danger--default", - "--pf-t--global--icon--color--status--on-warning--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--on-warning--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--on-warning--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--on-success--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--on-success--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--on-success--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--status--success--clicked": "--pf-t--global--color--status--success--clicked", - "--pf-t--global--icon--color--status--success--hover": "--pf-t--global--color--status--success--hover", - "--pf-t--global--icon--color--status--success--default": "--pf-t--global--color--status--success--default", - "--pf-t--global--icon--color--favorite--clicked": "--pf-t--global--color--favorite--clicked", - "--pf-t--global--icon--color--favorite--hover": "--pf-t--global--color--favorite--hover", - "--pf-t--global--icon--color--favorite--default": "--pf-t--global--color--favorite--default", - "--pf-t--global--icon--color--on-brand--clicked": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--on-brand--hover": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--on-brand--default": "--pf-t--global--icon--color--inverse", - "--pf-t--global--icon--color--brand--clicked": "--pf-t--global--dark--color--brand--300", - "--pf-t--global--icon--color--brand--hover": "--pf-t--global--dark--color--brand--300", - "--pf-t--global--icon--color--brand--default": "--pf-t--global--dark--color--brand--200", - "--pf-t--global--icon--size--font--body--lg": "--pf-t--global--font--size--body--lg", - "--pf-t--global--icon--size--font--body--default": "--pf-t--global--font--size--body--default", - "--pf-t--global--icon--size--font--body--sm": "--pf-t--global--font--size--body--sm", - "--pf-t--global--icon--size--font--heading--h6": "--pf-t--global--font--size--heading--h6", - "--pf-t--global--icon--size--font--heading--h5": "--pf-t--global--font--size--heading--h5", - "--pf-t--global--icon--size--font--heading--h4": "--pf-t--global--font--size--heading--h4", - "--pf-t--global--icon--size--font--heading--h3": "--pf-t--global--font--size--heading--h3", - "--pf-t--global--icon--size--font--heading--h2": "--pf-t--global--font--size--heading--h2", - "--pf-t--global--icon--size--font--heading--h1": "--pf-t--global--font--size--heading--h1", - "--pf-t--global--color--status--read--on-secondary": "--pf-t--global--background--color--control--default", - "--pf-t--global--dark--box-shadow--color--100": "rgba(0, 0, 0, 0.5000)", - "--pf-t--global--dark--background--color--600": "rgba(199, 199, 199, 0.1500)", - "--pf-t--global--dark--background--color--500": "rgba(21, 21, 21, 0.8000)", - "--pf-t--global--dark--icon--color--300": "--pf-t--color--gray--90", - "--pf-t--global--dark--icon--color--200": "--pf-t--color--gray--40", - "--pf-t--global--dark--icon--color--100": "--pf-t--color--gray--10", - "--pf-t--global--dark--text--color--link--300": "--pf-t--color--purple--30", - "--pf-t--global--dark--text--color--link--200": "--pf-t--color--blue--10", - "--pf-t--global--dark--text--color--link--100": "--pf-t--color--blue--20", - "--pf-t--global--dark--text--color--400": "--pf-t--color--red-orange--30", - "--pf-t--global--dark--text--color--300": "--pf-t--color--gray--90", - "--pf-t--global--dark--text--color--200": "--pf-t--color--gray--30", - "--pf-t--global--dark--text--color--100": "--pf-t--color--gray--10", - "--pf-t--global--dark--border--color--200": "--pf-t--color--gray--40", - "--pf-t--global--dark--border--color--100": "--pf-t--color--gray--50", - "--pf-t--global--dark--color--nonstatus--gray--300": "--pf-t--color--gray--10", - "--pf-t--global--dark--color--nonstatus--gray--200": "--pf-t--color--gray--20", - "--pf-t--global--dark--color--nonstatus--gray--100": "--pf-t--color--gray--30", - "--pf-t--global--dark--color--nonstatus--purple--300": "--pf-t--color--purple--10", - "--pf-t--global--dark--color--nonstatus--purple--200": "--pf-t--color--purple--20", - "--pf-t--global--dark--color--nonstatus--purple--100": "--pf-t--color--purple--30", - "--pf-t--global--dark--color--nonstatus--blue--300": "--pf-t--color--blue--10", - "--pf-t--global--dark--color--nonstatus--blue--200": "--pf-t--color--blue--20", - "--pf-t--global--dark--color--nonstatus--blue--100": "--pf-t--color--blue--30", - "--pf-t--global--dark--color--nonstatus--cyan--300": "--pf-t--color--teal--10", - "--pf-t--global--dark--color--nonstatus--cyan--200": "--pf-t--color--teal--20", - "--pf-t--global--dark--color--nonstatus--cyan--100": "--pf-t--color--teal--30", - "--pf-t--global--dark--color--nonstatus--green--300": "--pf-t--color--green--10", - "--pf-t--global--dark--color--nonstatus--green--200": "--pf-t--color--green--20", - "--pf-t--global--dark--color--nonstatus--green--100": "--pf-t--color--green--30", - "--pf-t--global--dark--color--nonstatus--gold--300": "--pf-t--color--yellow--10", - "--pf-t--global--dark--color--nonstatus--gold--200": "--pf-t--color--yellow--20", - "--pf-t--global--dark--color--nonstatus--gold--100": "--pf-t--color--yellow--30", - "--pf-t--global--dark--color--nonstatus--orange--300": "--pf-t--color--orange--10", - "--pf-t--global--dark--color--nonstatus--orange--200": "--pf-t--color--orange--20", - "--pf-t--global--dark--color--nonstatus--orange--100": "--pf-t--color--orange--30", - "--pf-t--global--dark--color--nonstatus--orangered--300": "--pf-t--color--red-orange--10", - "--pf-t--global--dark--color--nonstatus--orangered--200": "--pf-t--color--red-orange--20", - "--pf-t--global--dark--color--nonstatus--orangered--100": "--pf-t--color--red-orange--30", - "--pf-t--global--dark--color--nonstatus--red--300": "--pf-t--color--red--10", - "--pf-t--global--dark--color--nonstatus--red--200": "--pf-t--color--red--20", - "--pf-t--global--dark--color--nonstatus--red--100": "--pf-t--color--red--30", - "--pf-t--global--dark--color--status--custom--200": "--pf-t--color--teal--30", - "--pf-t--global--dark--color--status--custom--100": "--pf-t--color--teal--40", - "--pf-t--global--dark--color--status--info--200": "--pf-t--color--purple--20", - "--pf-t--global--dark--color--status--info--100": "--pf-t--color--purple--30", - "--pf-t--global--dark--color--status--danger--300": "--pf-t--color--red-orange--20", - "--pf-t--global--dark--color--status--danger--250": "--pf-t--color--red-orange--30", - "--pf-t--global--dark--color--status--danger--200": "--pf-t--color--red-orange--40", - "--pf-t--global--dark--color--status--danger--100": "--pf-t--color--red-orange--50", - "--pf-t--global--dark--color--status--warning--200": "--pf-t--color--yellow--20", - "--pf-t--global--dark--color--status--warning--100": "--pf-t--color--yellow--30", - "--pf-t--global--dark--color--status--success--200": "--pf-t--color--green--30", - "--pf-t--global--dark--color--status--success--100": "--pf-t--color--green--40", - "--pf-t--global--dark--color--severity--critical--100": "--pf-t--color--red-orange--50", - "--pf-t--global--dark--color--severity--important--100": "--pf-t--color--orange--40", - "--pf-t--global--dark--color--severity--moderate--100": "--pf-t--color--yellow--30", - "--pf-t--global--dark--color--severity--minor--100": "--pf-t--color--gray--30", - "--pf-t--global--dark--color--severity--none--100": "--pf-t--color--blue--30", - "--pf-t--global--dark--color--severity--undefined--100": "--pf-t--color--gray--40", - "--pf-t--global--dark--color--favorite--200": "--pf-t--color--yellow--20", - "--pf-t--global--dark--color--favorite--100": "--pf-t--color--yellow--30", - "--pf-t--global--dark--color--disabled--300": "--pf-t--color--gray--70", - "--pf-t--global--dark--color--disabled--200": "--pf-t--color--gray--50", - "--pf-t--global--dark--color--disabled--100": "--pf-t--color--gray--40", - "--pf-t--global--dark--color--brand--300": "--pf-t--color--blue--10", - "--pf-t--global--dark--color--brand--200": "--pf-t--color--blue--20", - "--pf-t--global--dark--color--brand--100": "--pf-t--color--blue--30", - "--pf-t--global--dark--background--color--highlight--200": "--pf-t--color--yellow--30", - "--pf-t--global--dark--background--color--highlight--100": "--pf-t--color--yellow--20", - "--pf-t--global--dark--background--color--400": "--pf-t--color--gray--10", - "--pf-t--global--dark--background--color--300": "--pf-t--color--gray--70", - "--pf-t--global--dark--background--color--200": "--pf-t--color--gray--80", - "--pf-t--global--dark--background--color--100": "--pf-t--color--gray--95", - "--pf-t--chart--global--stroke-line-join": "round", - "--pf-t--chart--global--layout--width": "450", - "--pf-t--chart--global--layout--height": "300", - "--pf-t--chart--global--layout--padding": "50", - "--pf-t--chart--global--label--text-anchor": "middle", - "--pf-t--chart--global--label--stroke": "transparent", - "--pf-t--chart--global--label--margin": "8", - "--pf-t--chart--global--label--padding": "10", - "--pf-t--chart--global--stroke-line-cap": "round", - "--pf-t--chart--global--letter-spacing": "normal", - "--pf-t--chart--global--FontSize--2xl": "22", - "--pf-t--chart--global--FontSize--lg": "18", - "--pf-t--chart--global--FontSize--sm": "14", - "--pf-t--chart--global--FontSize--xs": "12", - "--pf-t--chart--global--stroke--width--sm": "2", - "--pf-t--chart--global--stroke--width--xs": "1", - "--pf-t--chart--global--BorderWidth--lg": "8", - "--pf-t--chart--global--BorderWidth--sm": "2", - "--pf-t--chart--global--BorderWidth--xs": "1", - "--pf-t--chart--global--label--fill": "--pf-t--color--white", - "--pf-t--chart--global--danger--color--100": "--pf-t--color--red-orange--50", - "--pf-t--chart--global--success--color--100": "--pf-t--color--blue--30", - "--pf-t--chart--global--warning--color--200": "--pf-t--color--yellow--30", - "--pf-t--chart--global--warning--color--100": "--pf-t--color--orange--30", - "--pf-t--chart--global--fill--color--white": "--pf-t--color--white", - "--pf-t--chart--global--fill--color--900": "--pf-t--color--white", - "--pf-t--chart--global--fill--color--700": "--pf-t--color--gray--10", - "--pf-t--chart--global--fill--color--500": "--pf-t--color--gray--20", - "--pf-t--chart--global--fill--color--400": "--pf-t--color--gray--30", - "--pf-t--chart--global--fill--color--300": "--pf-t--color--gray--40", - "--pf-t--chart--global--fill--color--200": "--pf-t--color--gray--50", - "--pf-t--chart--global--fill--color--100": "--pf-t--color--gray--60", - "--pf-t--chart--color--black--500": "--pf-t--color--gray--10", - "--pf-t--chart--color--black--400": "--pf-t--color--gray--20", - "--pf-t--chart--color--black--300": "--pf-t--color--gray--30", - "--pf-t--chart--color--black--200": "--pf-t--color--gray--40", - "--pf-t--chart--color--black--100": "--pf-t--color--gray--50", - "--pf-t--chart--color--red-orange--500": "--pf-t--color--red-orange--10", - "--pf-t--chart--color--red-orange--400": "--pf-t--color--red-orange--20", - "--pf-t--chart--color--red-orange--300": "--pf-t--color--red-orange--30", - "--pf-t--chart--color--red-orange--200": "--pf-t--color--red-orange--40", - "--pf-t--chart--color--red-orange--100": "--pf-t--color--red-orange--50", - "--pf-t--chart--color--orange--500": "--pf-t--color--orange--10", - "--pf-t--chart--color--orange--400": "--pf-t--color--orange--20", - "--pf-t--chart--color--orange--300": "--pf-t--color--orange--30", - "--pf-t--chart--color--orange--200": "--pf-t--color--orange--40", - "--pf-t--chart--color--orange--100": "--pf-t--color--orange--50", - "--pf-t--chart--color--yellow--500": "--pf-t--color--yellow--10", - "--pf-t--chart--color--yellow--400": "--pf-t--color--yellow--20", - "--pf-t--chart--color--yellow--300": "--pf-t--color--yellow--30", - "--pf-t--chart--color--yellow--200": "--pf-t--color--yellow--40", - "--pf-t--chart--color--yellow--100": "--pf-t--color--yellow--50", - "--pf-t--chart--color--purple--500": "--pf-t--color--purple--20", - "--pf-t--chart--color--purple--400": "--pf-t--color--purple--30", - "--pf-t--chart--color--purple--300": "--pf-t--color--purple--40", - "--pf-t--chart--color--purple--200": "--pf-t--color--purple--50", - "--pf-t--chart--color--purple--100": "--pf-t--color--purple--60", - "--pf-t--chart--color--teal--500": "--pf-t--color--teal--10", - "--pf-t--chart--color--teal--400": "--pf-t--color--teal--20", - "--pf-t--chart--color--teal--300": "--pf-t--color--teal--30", - "--pf-t--chart--color--teal--200": "--pf-t--color--teal--40", - "--pf-t--chart--color--teal--100": "--pf-t--color--teal--50", - "--pf-t--chart--color--green--500": "--pf-t--color--green--10", - "--pf-t--chart--color--green--400": "--pf-t--color--green--20", - "--pf-t--chart--color--green--300": "--pf-t--color--green--30", - "--pf-t--chart--color--green--200": "--pf-t--color--green--40", - "--pf-t--chart--color--green--100": "--pf-t--color--green--50", - "--pf-t--chart--color--blue--500": "--pf-t--color--blue--10", - "--pf-t--chart--color--blue--400": "--pf-t--color--blue--20", - "--pf-t--chart--color--blue--300": "--pf-t--color--blue--30", - "--pf-t--chart--color--blue--200": "--pf-t--color--blue--40", - "--pf-t--chart--color--blue--100": "--pf-t--color--blue--50", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500": "--pf-t--chart--color--black--400", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400": "--pf-t--chart--color--teal--400", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300": "--pf-t--chart--color--orange--400", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200": "--pf-t--chart--color--purple--400", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100": "--pf-t--chart--color--green--400", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000": "--pf-t--chart--color--yellow--400", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900": "--pf-t--chart--color--blue--400", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800": "--pf-t--chart--color--black--500", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700": "--pf-t--chart--color--teal--100", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600": "--pf-t--chart--color--orange--500", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500": "--pf-t--chart--color--purple--100", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400": "--pf-t--chart--color--green--500", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300": "--pf-t--chart--color--yellow--100", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200": "--pf-t--chart--color--blue--500", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100": "--pf-t--chart--color--black--100", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000": "--pf-t--chart--color--teal--500", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900": "--pf-t--chart--color--orange--100", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800": "--pf-t--chart--color--purple--500", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700": "--pf-t--chart--color--green--100", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600": "--pf-t--chart--color--yellow--500", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500": "--pf-t--chart--color--blue--100", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400": "--pf-t--chart--color--black--300", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300": "--pf-t--chart--color--teal--200", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200": "--pf-t--chart--color--orange--300", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100": "--pf-t--chart--color--purple--200", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000": "--pf-t--chart--color--green--300", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900": "--pf-t--chart--color--yellow--200", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800": "--pf-t--chart--color--blue--300", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700": "--pf-t--chart--color--black--200", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600": "--pf-t--chart--color--teal--300", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500": "--pf-t--chart--color--orange--200", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400": "--pf-t--chart--color--purple--300", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300": "--pf-t--chart--color--green--200", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200": "--pf-t--chart--color--yellow--300", - "--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100": "--pf-t--chart--color--blue--200", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500": "--pf-t--chart--color--orange--400", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400": "--pf-t--chart--color--yellow--400", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300": "--pf-t--chart--color--teal--400", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200": "--pf-t--chart--color--green--400", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100": "--pf-t--chart--color--blue--400", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000": "--pf-t--chart--color--orange--100", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900": "--pf-t--chart--color--yellow--500", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800": "--pf-t--chart--color--teal--100", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700": "--pf-t--chart--color--green--500", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600": "--pf-t--chart--color--blue--100", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500": "--pf-t--chart--color--orange--500", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400": "--pf-t--chart--color--yellow--100", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300": "--pf-t--chart--color--teal--500", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200": "--pf-t--chart--color--green--100", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100": "--pf-t--chart--color--blue--500", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000": "--pf-t--chart--color--orange--300", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900": "--pf-t--chart--color--yellow--200", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800": "--pf-t--chart--color--teal--300", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700": "--pf-t--chart--color--green--200", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600": "--pf-t--chart--color--blue--300", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500": "--pf-t--chart--color--orange--200", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400": "--pf-t--chart--color--yellow--300", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300": "--pf-t--chart--color--teal--200", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200": "--pf-t--chart--color--green--300", - "--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100": "--pf-t--chart--color--blue--200", - "--pf-t--chart--theme--colorscales--orange--colorscale--500": "--pf-t--chart--color--orange--400", - "--pf-t--chart--theme--colorscales--orange--colorscale--400": "--pf-t--chart--color--orange--200", - "--pf-t--chart--theme--colorscales--orange--colorscale--300": "--pf-t--chart--color--orange--500", - "--pf-t--chart--theme--colorscales--orange--colorscale--200": "--pf-t--chart--color--orange--100", - "--pf-t--chart--theme--colorscales--orange--colorscale--100": "--pf-t--chart--color--orange--300", - "--pf-t--chart--theme--colorscales--purple--colorscale--500": "--pf-t--chart--color--purple--400", - "--pf-t--chart--theme--colorscales--purple--colorscale--400": "--pf-t--chart--color--purple--200", - "--pf-t--chart--theme--colorscales--purple--colorscale--300": "--pf-t--chart--color--purple--500", - "--pf-t--chart--theme--colorscales--purple--colorscale--200": "--pf-t--chart--color--purple--100", - "--pf-t--chart--theme--colorscales--purple--colorscale--100": "--pf-t--chart--color--purple--300", - "--pf-t--chart--theme--colorscales--green--colorscale--500": "--pf-t--chart--color--green--400", - "--pf-t--chart--theme--colorscales--green--colorscale--400": "--pf-t--chart--color--green--200", - "--pf-t--chart--theme--colorscales--green--colorscale--300": "--pf-t--chart--color--green--500", - "--pf-t--chart--theme--colorscales--green--colorscale--200": "--pf-t--chart--color--green--100", - "--pf-t--chart--theme--colorscales--green--colorscale--100": "--pf-t--chart--color--green--300", - "--pf-t--chart--theme--colorscales--gray--colorscale--500": "--pf-t--chart--color--black--400", - "--pf-t--chart--theme--colorscales--gray--colorscale--400": "--pf-t--chart--color--black--200", - "--pf-t--chart--theme--colorscales--gray--colorscale--300": "--pf-t--chart--color--black--500", - "--pf-t--chart--theme--colorscales--gray--colorscale--200": "--pf-t--chart--color--black--100", - "--pf-t--chart--theme--colorscales--gray--colorscale--100": "--pf-t--chart--color--black--300", - "--pf-t--chart--theme--colorscales--yellow--colorscale--500": "--pf-t--chart--color--yellow--400", - "--pf-t--chart--theme--colorscales--yellow--colorscale--400": "--pf-t--chart--color--yellow--200", - "--pf-t--chart--theme--colorscales--yellow--colorscale--300": "--pf-t--chart--color--yellow--500", - "--pf-t--chart--theme--colorscales--yellow--colorscale--200": "--pf-t--chart--color--yellow--100", - "--pf-t--chart--theme--colorscales--yellow--colorscale--100": "--pf-t--chart--color--yellow--300", - "--pf-t--chart--theme--colorscales--teal--colorscale--500": "--pf-t--chart--color--teal--400", - "--pf-t--chart--theme--colorscales--teal--colorscale--400": "--pf-t--chart--color--teal--200", - "--pf-t--chart--theme--colorscales--teal--colorscale--300": "--pf-t--chart--color--teal--500", - "--pf-t--chart--theme--colorscales--teal--colorscale--200": "--pf-t--chart--color--teal--100", - "--pf-t--chart--theme--colorscales--teal--colorscale--100": "--pf-t--chart--color--teal--300", - "--pf-t--chart--theme--colorscales--blue--colorscale--500": "--pf-t--chart--color--blue--400", - "--pf-t--chart--theme--colorscales--blue--colorscale--400": "--pf-t--chart--color--blue--200", - "--pf-t--chart--theme--colorscales--blue--colorscale--300": "--pf-t--chart--color--blue--500", - "--pf-t--chart--theme--colorscales--blue--colorscale--200": "--pf-t--chart--color--blue--100", - "--pf-t--chart--theme--colorscales--blue--colorscale--100": "--pf-t--chart--color--blue--300" -} +{"--pf-t--color--black":"#000000","--pf-t--color--blue--10":"#e0f0ff","--pf-t--color--blue--20":"#b9dafc","--pf-t--color--blue--30":"#92c5f9","--pf-t--color--blue--40":"#4394e5","--pf-t--color--blue--50":"#0066cc","--pf-t--color--blue--60":"#004d99","--pf-t--color--blue--70":"#003366","--pf-t--color--gray--10":"#f2f2f2","--pf-t--color--gray--20":"#e0e0e0","--pf-t--color--gray--30":"#c7c7c7","--pf-t--color--gray--40":"#a3a3a3","--pf-t--color--gray--50":"#707070","--pf-t--color--gray--60":"#4d4d4d","--pf-t--color--gray--70":"#383838","--pf-t--color--gray--80":"#292929","--pf-t--color--gray--90":"#1f1f1f","--pf-t--color--gray--95":"#151515","--pf-t--color--green--10":"#e9f7df","--pf-t--color--green--20":"#d1f1bb","--pf-t--color--green--30":"#afdc8f","--pf-t--color--green--40":"#87bb62","--pf-t--color--green--50":"#63993d","--pf-t--color--green--60":"#3d7317","--pf-t--color--green--70":"#204d00","--pf-t--color--orange--10":"#ffe8cc","--pf-t--color--orange--20":"#fccb8f","--pf-t--color--orange--30":"#f8ae54","--pf-t--color--orange--40":"#f5921b","--pf-t--color--orange--50":"#ca6c0f","--pf-t--color--orange--60":"#9e4a06","--pf-t--color--orange--70":"#732e00","--pf-t--color--purple--10":"#ece6ff","--pf-t--color--purple--20":"#d0c5f4","--pf-t--color--purple--30":"#b6a6e9","--pf-t--color--purple--40":"#876fd4","--pf-t--color--purple--50":"#5e40be","--pf-t--color--purple--60":"#3d2785","--pf-t--color--purple--70":"#21134d","--pf-t--color--red--10":"#fce3e3","--pf-t--color--red--20":"#fbc5c5","--pf-t--color--red--30":"#f9a8a8","--pf-t--color--red--40":"#f56e6e","--pf-t--color--red--50":"#ee0000","--pf-t--color--red--60":"#a60000","--pf-t--color--red--70":"#5f0000","--pf-t--color--red-orange--10":"#ffe3d9","--pf-t--color--red-orange--20":"#fbbea8","--pf-t--color--red-orange--30":"#f89b78","--pf-t--color--red-orange--40":"#f4784a","--pf-t--color--red-orange--50":"#f0561d","--pf-t--color--red-orange--60":"#b1380b","--pf-t--color--red-orange--70":"#731f00","--pf-t--color--teal--10":"#daf2f2","--pf-t--color--teal--20":"#b9e5e5","--pf-t--color--teal--30":"#9ad8d8","--pf-t--color--teal--40":"#63bdbd","--pf-t--color--teal--50":"#37a3a3","--pf-t--color--teal--60":"#147878","--pf-t--color--teal--70":"#004d4d","--pf-t--color--white":"#ffffff","--pf-t--color--yellow--10":"#fff4cc","--pf-t--color--yellow--20":"#ffe072","--pf-t--color--yellow--30":"#ffcc17","--pf-t--color--yellow--40":"#dca614","--pf-t--color--yellow--50":"#b98412","--pf-t--color--yellow--60":"#96640f","--pf-t--color--yellow--70":"#73480b","--pf-t--global--background--color--500":"rgba(21, 21, 21, 0.2000)","--pf-t--global--background--color--600":"rgba(199, 199, 199, 0.2500)","--pf-t--global--background--color--action--plain--default":"rgba(0, 0, 0, 0.0000)","--pf-t--global--border--radius--0":"0px","--pf-t--global--border--radius--100":"4px","--pf-t--global--border--radius--200":"6px","--pf-t--global--border--radius--300":"16px","--pf-t--global--border--radius--400":"24px","--pf-t--global--border--radius--500":"999px","--pf-t--global--border--width--100":"1px","--pf-t--global--border--width--200":"2px","--pf-t--global--border--width--300":"3px","--pf-t--global--box-shadow--X--100":"-8px","--pf-t--global--box-shadow--X--200":"-4px","--pf-t--global--box-shadow--X--300":"-1px","--pf-t--global--box-shadow--X--400":"0px","--pf-t--global--box-shadow--X--500":"1px","--pf-t--global--box-shadow--X--600":"4px","--pf-t--global--box-shadow--X--700":"8px","--pf-t--global--box-shadow--Y--100":"-8px","--pf-t--global--box-shadow--Y--200":"-4px","--pf-t--global--box-shadow--Y--300":"-1px","--pf-t--global--box-shadow--Y--400":"0px","--pf-t--global--box-shadow--Y--500":"1px","--pf-t--global--box-shadow--Y--600":"4px","--pf-t--global--box-shadow--Y--700":"8px","--pf-t--global--box-shadow--blur--100":"4px","--pf-t--global--box-shadow--blur--200":"8px","--pf-t--global--box-shadow--blur--300":"24px","--pf-t--global--box-shadow--color--100":"rgba(0, 0, 0, 0.1600)","--pf-t--global--box-shadow--color--200":"rgba(0, 0, 0, 0.1200)","--pf-t--global--box-shadow--spread--100":"0px","--pf-t--global--breakpoint--100":"0rem","--pf-t--global--breakpoint--200":"36rem","--pf-t--global--breakpoint--250":"40rem","--pf-t--global--breakpoint--300":"48rem","--pf-t--global--breakpoint--350":"60rem","--pf-t--global--breakpoint--400":"62rem","--pf-t--global--breakpoint--500":"75rem","--pf-t--global--breakpoint--550":"80rem","--pf-t--global--breakpoint--600":"90.625rem","--pf-t--global--delay--100":"0ms","--pf-t--global--delay--200":"50ms","--pf-t--global--delay--300":"100ms","--pf-t--global--delay--400":"7000ms","--pf-t--global--duration--100":"100ms","--pf-t--global--duration--200":"200ms","--pf-t--global--duration--300":"300ms","--pf-t--global--duration--400":"400ms","--pf-t--global--duration--50":"50ms","--pf-t--global--duration--500":"500ms","--pf-t--global--duration--600":"600ms","--pf-t--global--font--family--100":"Red Hat Text VF","--pf-t--global--font--family--200":"Red Hat Display VF","--pf-t--global--font--family--300":"Red Hat Mono VF","--pf-t--global--font--line-height--100":"1.2999999523162842","--pf-t--global--font--line-height--200":"1.5","--pf-t--global--font--size--100":"0.75rem","--pf-t--global--font--size--200":"0.875rem","--pf-t--global--font--size--300":"1rem","--pf-t--global--font--size--400":"1.125rem","--pf-t--global--font--size--500":"1.25rem","--pf-t--global--font--size--600":"1.375rem","--pf-t--global--font--size--700":"1.75rem","--pf-t--global--font--size--800":"2.25rem","--pf-t--global--font--weight--100":"400","--pf-t--global--font--weight--200":"500","--pf-t--global--font--weight--300":"700","--pf-t--global--font--weight--400":"700","--pf-t--global--icon--size--100":"0.75rem","--pf-t--global--icon--size--200":"0.875rem","--pf-t--global--icon--size--250":"1rem","--pf-t--global--icon--size--300":"1.375rem","--pf-t--global--icon--size--400":"3.5rem","--pf-t--global--icon--size--500":"6rem","--pf-t--global--spacer--100":"0.25rem","--pf-t--global--spacer--200":"0.5rem","--pf-t--global--spacer--300":"1rem","--pf-t--global--spacer--400":"1.5rem","--pf-t--global--spacer--500":"2rem","--pf-t--global--spacer--600":"3rem","--pf-t--global--spacer--700":"4rem","--pf-t--global--spacer--800":"5rem","--pf-t--global--timing-function--100":"cubic-bezier(.4, 0, .7, .2)","--pf-t--global--timing-function--200":"cubic-bezier(.4, 0, .2, 1)","--pf-t--global--timing-function--300":"cubic-bezier(0, 0, .2, 1)","--pf-t--global--z-index--100":"100","--pf-t--global--z-index--200":"200","--pf-t--global--z-index--300":"300","--pf-t--global--z-index--400":"400","--pf-t--global--z-index--500":"500","--pf-t--global--z-index--600":"600","--pf-t--global--background--color--100":"--pf-t--color--white","--pf-t--global--background--color--200":"--pf-t--color--gray--10","--pf-t--global--background--color--300":"--pf-t--color--gray--20","--pf-t--global--background--color--400":"--pf-t--color--gray--80","--pf-t--global--background--color--action--plain--clicked":"--pf-t--global--dark--background--color--600","--pf-t--global--background--color--action--plain--hover":"--pf-t--global--dark--background--color--600","--pf-t--global--background--color--backdrop--default":"--pf-t--global--dark--background--color--500","--pf-t--global--background--color--highlight--100":"--pf-t--color--yellow--30","--pf-t--global--background--color--highlight--200":"--pf-t--color--yellow--40","--pf-t--global--border--color--100":"--pf-t--color--gray--30","--pf-t--global--border--color--200":"--pf-t--color--gray--40","--pf-t--global--border--color--300":"--pf-t--color--gray--50","--pf-t--global--border--radius--large":"--pf-t--global--border--radius--400","--pf-t--global--border--radius--medium":"--pf-t--global--border--radius--300","--pf-t--global--border--radius--pill":"--pf-t--global--border--radius--500","--pf-t--global--border--radius--sharp":"--pf-t--global--border--radius--0","--pf-t--global--border--radius--small":"--pf-t--global--border--radius--200","--pf-t--global--border--radius--tiny":"--pf-t--global--border--radius--100","--pf-t--global--border--width--action--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--action--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--action--hover":"--pf-t--global--border--width--200","--pf-t--global--border--width--box--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--box--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--box--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--box--status--default":"--pf-t--global--border--width--200","--pf-t--global--border--width--box--status--read":"--pf-t--global--border--width--100","--pf-t--global--border--width--control--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--control--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--control--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--divider--clicked":"--pf-t--global--border--width--100","--pf-t--global--border--width--divider--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--divider--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--extra-strong":"--pf-t--global--border--width--300","--pf-t--global--border--width--regular":"--pf-t--global--border--width--100","--pf-t--global--border--width--strong":"--pf-t--global--border--width--200","--pf-t--global--box-shadow--X--lg--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--lg--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--lg--left":"--pf-t--global--box-shadow--X--100","--pf-t--global--box-shadow--X--lg--right":"--pf-t--global--box-shadow--X--700","--pf-t--global--box-shadow--X--lg--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--left":"--pf-t--global--box-shadow--X--200","--pf-t--global--box-shadow--X--md--right":"--pf-t--global--box-shadow--X--600","--pf-t--global--box-shadow--X--md--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--left":"--pf-t--global--box-shadow--X--300","--pf-t--global--box-shadow--X--sm--right":"--pf-t--global--box-shadow--X--500","--pf-t--global--box-shadow--X--sm--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--Y--lg--bottom":"--pf-t--global--box-shadow--Y--700","--pf-t--global--box-shadow--Y--lg--default":"--pf-t--global--box-shadow--Y--700","--pf-t--global--box-shadow--Y--lg--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--lg--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--lg--top":"--pf-t--global--box-shadow--Y--100","--pf-t--global--box-shadow--Y--md--bottom":"--pf-t--global--box-shadow--Y--600","--pf-t--global--box-shadow--Y--md--default":"--pf-t--global--box-shadow--Y--600","--pf-t--global--box-shadow--Y--md--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--md--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--md--top":"--pf-t--global--box-shadow--Y--200","--pf-t--global--box-shadow--Y--sm--bottom":"--pf-t--global--box-shadow--Y--500","--pf-t--global--box-shadow--Y--sm--default":"--pf-t--global--box-shadow--Y--500","--pf-t--global--box-shadow--Y--sm--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--sm--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--sm--top":"--pf-t--global--box-shadow--Y--300","--pf-t--global--box-shadow--blur--lg":"--pf-t--global--box-shadow--blur--300","--pf-t--global--box-shadow--blur--md":"--pf-t--global--box-shadow--blur--200","--pf-t--global--box-shadow--blur--sm":"--pf-t--global--box-shadow--blur--100","--pf-t--global--box-shadow--color--lg":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--color--md":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--color--sm":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--spread--lg":"--pf-t--global--box-shadow--spread--100","--pf-t--global--box-shadow--spread--md":"--pf-t--global--box-shadow--spread--100","--pf-t--global--box-shadow--spread--sm":"--pf-t--global--box-shadow--spread--100","--pf-t--global--breakpoint--2xl":"--pf-t--global--breakpoint--600","--pf-t--global--breakpoint--height--2xl":"--pf-t--global--breakpoint--550","--pf-t--global--breakpoint--height--lg":"--pf-t--global--breakpoint--300","--pf-t--global--breakpoint--height--md":"--pf-t--global--breakpoint--250","--pf-t--global--breakpoint--height--sm":"--pf-t--global--breakpoint--100","--pf-t--global--breakpoint--height--xl":"--pf-t--global--breakpoint--350","--pf-t--global--breakpoint--lg":"--pf-t--global--breakpoint--400","--pf-t--global--breakpoint--md":"--pf-t--global--breakpoint--300","--pf-t--global--breakpoint--sm":"--pf-t--global--breakpoint--200","--pf-t--global--breakpoint--xl":"--pf-t--global--breakpoint--500","--pf-t--global--breakpoint--xs":"--pf-t--global--breakpoint--100","--pf-t--global--color--brand--100":"--pf-t--color--blue--40","--pf-t--global--color--brand--200":"--pf-t--color--blue--50","--pf-t--global--color--brand--300":"--pf-t--color--blue--60","--pf-t--global--color--disabled--100":"--pf-t--color--gray--30","--pf-t--global--color--disabled--200":"--pf-t--color--gray--40","--pf-t--global--color--disabled--300":"--pf-t--color--gray--60","--pf-t--global--color--favorite--100":"--pf-t--color--yellow--30","--pf-t--global--color--favorite--200":"--pf-t--color--yellow--40","--pf-t--global--color--nonstatus--blue--100":"--pf-t--color--blue--20","--pf-t--global--color--nonstatus--blue--200":"--pf-t--color--blue--30","--pf-t--global--color--nonstatus--blue--300":"--pf-t--color--blue--40","--pf-t--global--color--nonstatus--gray--100":"--pf-t--color--gray--20","--pf-t--global--color--nonstatus--gray--200":"--pf-t--color--gray--30","--pf-t--global--color--nonstatus--gray--300":"--pf-t--color--gray--40","--pf-t--global--color--nonstatus--green--100":"--pf-t--color--green--20","--pf-t--global--color--nonstatus--green--200":"--pf-t--color--green--30","--pf-t--global--color--nonstatus--green--300":"--pf-t--color--green--40","--pf-t--global--color--nonstatus--orange--100":"--pf-t--color--orange--20","--pf-t--global--color--nonstatus--orange--200":"--pf-t--color--orange--30","--pf-t--global--color--nonstatus--orange--300":"--pf-t--color--orange--40","--pf-t--global--color--nonstatus--orangered--100":"--pf-t--color--red-orange--20","--pf-t--global--color--nonstatus--orangered--200":"--pf-t--color--red-orange--30","--pf-t--global--color--nonstatus--orangered--300":"--pf-t--color--red-orange--40","--pf-t--global--color--nonstatus--purple--100":"--pf-t--color--purple--20","--pf-t--global--color--nonstatus--purple--200":"--pf-t--color--purple--30","--pf-t--global--color--nonstatus--purple--300":"--pf-t--color--purple--40","--pf-t--global--color--nonstatus--red--100":"--pf-t--color--red--20","--pf-t--global--color--nonstatus--red--200":"--pf-t--color--red--30","--pf-t--global--color--nonstatus--red--300":"--pf-t--color--red--40","--pf-t--global--color--nonstatus--teal--100":"--pf-t--color--teal--20","--pf-t--global--color--nonstatus--teal--200":"--pf-t--color--teal--30","--pf-t--global--color--nonstatus--teal--300":"--pf-t--color--teal--40","--pf-t--global--color--nonstatus--yellow--100":"--pf-t--color--yellow--20","--pf-t--global--color--nonstatus--yellow--200":"--pf-t--color--yellow--30","--pf-t--global--color--nonstatus--yellow--300":"--pf-t--color--yellow--40","--pf-t--global--color--severity--critical--100":"--pf-t--color--red-orange--60","--pf-t--global--color--severity--important--100":"--pf-t--color--orange--50","--pf-t--global--color--severity--minor--100":"--pf-t--color--gray--50","--pf-t--global--color--severity--moderate--100":"--pf-t--color--yellow--40","--pf-t--global--color--severity--none--100":"--pf-t--color--blue--40","--pf-t--global--color--severity--undefined--100":"--pf-t--color--gray--30","--pf-t--global--color--status--custom--100":"--pf-t--color--teal--60","--pf-t--global--color--status--custom--200":"--pf-t--color--teal--70","--pf-t--global--color--status--danger--100":"--pf-t--color--red-orange--60","--pf-t--global--color--status--danger--200":"--pf-t--color--red-orange--70","--pf-t--global--color--status--danger--300":"--pf-t--color--red-orange--70","--pf-t--global--color--status--info--100":"--pf-t--color--purple--50","--pf-t--global--color--status--info--200":"--pf-t--color--purple--60","--pf-t--global--color--status--success--100":"--pf-t--color--green--60","--pf-t--global--color--status--success--200":"--pf-t--color--green--70","--pf-t--global--color--status--warning--100":"--pf-t--color--yellow--30","--pf-t--global--color--status--warning--200":"--pf-t--color--yellow--40","--pf-t--global--color--status--warning--300":"--pf-t--color--yellow--50","--pf-t--global--font--family--body":"--pf-t--global--font--family--100","--pf-t--global--font--family--heading":"--pf-t--global--font--family--200","--pf-t--global--font--family--mono":"--pf-t--global--font--family--300","--pf-t--global--font--line-height--body":"--pf-t--global--font--line-height--100","--pf-t--global--font--line-height--heading":"--pf-t--global--font--line-height--200","--pf-t--global--font--size--2xl":"--pf-t--global--font--size--600","--pf-t--global--font--size--3xl":"--pf-t--global--font--size--700","--pf-t--global--font--size--4xl":"--pf-t--global--font--size--800","--pf-t--global--font--size--lg":"--pf-t--global--font--size--400","--pf-t--global--font--size--md":"--pf-t--global--font--size--300","--pf-t--global--font--size--sm":"--pf-t--global--font--size--200","--pf-t--global--font--size--xl":"--pf-t--global--font--size--500","--pf-t--global--font--size--xs":"--pf-t--global--font--size--100","--pf-t--global--font--weight--body":"--pf-t--global--font--weight--100","--pf-t--global--font--weight--heading":"--pf-t--global--font--weight--300","--pf-t--global--icon--color--100":"--pf-t--color--gray--90","--pf-t--global--icon--color--200":"--pf-t--color--gray--50","--pf-t--global--icon--color--300":"--pf-t--color--white","--pf-t--global--icon--size--2xl":"--pf-t--global--icon--size--400","--pf-t--global--icon--size--3xl":"--pf-t--global--icon--size--500","--pf-t--global--icon--size--lg":"--pf-t--global--icon--size--250","--pf-t--global--icon--size--md":"--pf-t--global--icon--size--200","--pf-t--global--icon--size--sm":"--pf-t--global--icon--size--100","--pf-t--global--icon--size--xl":"--pf-t--global--icon--size--300","--pf-t--global--motion--delay--default":"--pf-t--global--delay--300","--pf-t--global--motion--delay--long":"--pf-t--global--delay--400","--pf-t--global--motion--delay--none":"--pf-t--global--delay--100","--pf-t--global--motion--delay--short":"--pf-t--global--delay--200","--pf-t--global--motion--duration--2xl":"--pf-t--global--duration--500","--pf-t--global--motion--duration--3xl":"--pf-t--global--duration--600","--pf-t--global--motion--duration--lg":"--pf-t--global--duration--300","--pf-t--global--motion--duration--md":"--pf-t--global--duration--200","--pf-t--global--motion--duration--sm":"--pf-t--global--duration--100","--pf-t--global--motion--duration--xl":"--pf-t--global--duration--400","--pf-t--global--motion--duration--xs":"--pf-t--global--duration--50","--pf-t--global--motion--timing-function--accelerate":"--pf-t--global--timing-function--100","--pf-t--global--motion--timing-function--decelerate":"--pf-t--global--timing-function--300","--pf-t--global--motion--timing-function--default":"--pf-t--global--timing-function--200","--pf-t--global--spacer--2xl":"--pf-t--global--spacer--600","--pf-t--global--spacer--3xl":"--pf-t--global--spacer--700","--pf-t--global--spacer--4xl":"--pf-t--global--spacer--800","--pf-t--global--spacer--lg":"--pf-t--global--spacer--400","--pf-t--global--spacer--md":"--pf-t--global--spacer--300","--pf-t--global--spacer--sm":"--pf-t--global--spacer--200","--pf-t--global--spacer--xl":"--pf-t--global--spacer--500","--pf-t--global--spacer--xs":"--pf-t--global--spacer--100","--pf-t--global--text--color--100":"--pf-t--color--gray--95","--pf-t--global--text--color--200":"--pf-t--color--gray--60","--pf-t--global--text--color--300":"--pf-t--color--white","--pf-t--global--text--color--400":"--pf-t--color--red-orange--40","--pf-t--global--text--color--link--100":"--pf-t--color--blue--50","--pf-t--global--text--color--link--200":"--pf-t--color--blue--60","--pf-t--global--text--color--link--300":"--pf-t--color--purple--50","--pf-t--global--z-index--2xl":"--pf-t--global--z-index--600","--pf-t--global--z-index--lg":"--pf-t--global--z-index--400","--pf-t--global--z-index--md":"--pf-t--global--z-index--300","--pf-t--global--z-index--sm":"--pf-t--global--z-index--200","--pf-t--global--z-index--xl":"--pf-t--global--z-index--500","--pf-t--global--z-index--xs":"--pf-t--global--z-index--100","--pf-t--global--background--color--action--plain--alt--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--action--plain--alt--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--disabled--default":"--pf-t--global--dark--color--disabled--100","--pf-t--global--background--color--floating--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--floating--default":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--floating--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--highlight--clicked":"--pf-t--global--dark--background--color--highlight--200","--pf-t--global--background--color--highlight--default":"--pf-t--global--dark--background--color--highlight--100","--pf-t--global--background--color--inverse--default":"--pf-t--global--dark--background--color--400","--pf-t--global--background--color--primary--clicked":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--primary--default":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--primary--hover":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--secondary--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--secondary--default":"--pf-t--global--dark--background--color--100","--pf-t--global--background--color--secondary--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--border--color--clicked":"--pf-t--global--dark--color--brand--200","--pf-t--global--border--color--default":"--pf-t--global--dark--border--color--200","--pf-t--global--border--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--border--color--hover":"--pf-t--global--dark--color--brand--100","--pf-t--global--border--color--nonstatus--blue--clicked":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--border--color--nonstatus--blue--default":"--pf-t--global--dark--color--nonstatus--blue--100","--pf-t--global--border--color--nonstatus--blue--hover":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--border--color--nonstatus--gray--clicked":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--border--color--nonstatus--gray--default":"--pf-t--global--dark--color--nonstatus--gray--100","--pf-t--global--border--color--nonstatus--gray--hover":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--border--color--nonstatus--green--clicked":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--border--color--nonstatus--green--default":"--pf-t--global--dark--color--nonstatus--green--100","--pf-t--global--border--color--nonstatus--green--hover":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--border--color--nonstatus--orange--clicked":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--border--color--nonstatus--orange--default":"--pf-t--global--dark--color--nonstatus--orange--100","--pf-t--global--border--color--nonstatus--orange--hover":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--border--color--nonstatus--orangered--clicked":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--border--color--nonstatus--orangered--default":"--pf-t--global--dark--color--nonstatus--orangered--100","--pf-t--global--border--color--nonstatus--orangered--hover":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--border--color--nonstatus--purple--clicked":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--border--color--nonstatus--purple--default":"--pf-t--global--dark--color--nonstatus--purple--100","--pf-t--global--border--color--nonstatus--purple--hover":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--border--color--nonstatus--red--clicked":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--border--color--nonstatus--red--default":"--pf-t--global--dark--color--nonstatus--red--100","--pf-t--global--border--color--nonstatus--red--hover":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--border--color--nonstatus--teal--clicked":"--pf-t--global--dark--color--nonstatus--teal--200","--pf-t--global--border--color--nonstatus--teal--default":"--pf-t--global--dark--color--nonstatus--teal--100","--pf-t--global--border--color--nonstatus--teal--hover":"--pf-t--global--dark--color--nonstatus--teal--200","--pf-t--global--border--color--nonstatus--yellow--clicked":"--pf-t--global--dark--color--nonstatus--yellow--200","--pf-t--global--border--color--nonstatus--yellow--default":"--pf-t--global--dark--color--nonstatus--yellow--100","--pf-t--global--border--color--nonstatus--yellow--hover":"--pf-t--global--dark--color--nonstatus--yellow--200","--pf-t--global--border--color--on-secondary":"--pf-t--global--dark--border--color--200","--pf-t--global--border--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--border--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--border--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--color--brand--clicked":"--pf-t--global--dark--color--brand--200","--pf-t--global--color--brand--default":"--pf-t--global--dark--color--brand--100","--pf-t--global--color--brand--hover":"--pf-t--global--dark--color--brand--200","--pf-t--global--color--favorite--clicked":"--pf-t--global--dark--color--favorite--200","--pf-t--global--color--favorite--default":"--pf-t--global--dark--color--favorite--100","--pf-t--global--color--favorite--hover":"--pf-t--global--dark--color--favorite--200","--pf-t--global--color--nonstatus--blue--clicked":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--color--nonstatus--blue--default":"--pf-t--global--dark--color--nonstatus--blue--100","--pf-t--global--color--nonstatus--blue--hover":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--color--nonstatus--gray--clicked":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--color--nonstatus--gray--default":"--pf-t--global--dark--color--nonstatus--gray--100","--pf-t--global--color--nonstatus--gray--hover":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--color--nonstatus--green--clicked":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--color--nonstatus--green--default":"--pf-t--global--dark--color--nonstatus--green--100","--pf-t--global--color--nonstatus--green--hover":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--color--nonstatus--orange--clicked":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--color--nonstatus--orange--default":"--pf-t--global--dark--color--nonstatus--orange--100","--pf-t--global--color--nonstatus--orange--hover":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--color--nonstatus--orangered--clicked":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--color--nonstatus--orangered--default":"--pf-t--global--dark--color--nonstatus--orangered--100","--pf-t--global--color--nonstatus--orangered--hover":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--color--nonstatus--purple--clicked":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--color--nonstatus--purple--default":"--pf-t--global--dark--color--nonstatus--purple--100","--pf-t--global--color--nonstatus--purple--hover":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--color--nonstatus--red--clicked":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--color--nonstatus--red--default":"--pf-t--global--dark--color--nonstatus--red--100","--pf-t--global--color--nonstatus--red--hover":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--color--nonstatus--teal--clicked":"--pf-t--global--dark--color--nonstatus--teal--200","--pf-t--global--color--nonstatus--teal--default":"--pf-t--global--dark--color--nonstatus--teal--100","--pf-t--global--color--nonstatus--teal--hover":"--pf-t--global--dark--color--nonstatus--teal--200","--pf-t--global--color--nonstatus--yellow--clicked":"--pf-t--global--dark--color--nonstatus--yellow--200","--pf-t--global--color--nonstatus--yellow--default":"--pf-t--global--dark--color--nonstatus--yellow--100","--pf-t--global--color--nonstatus--yellow--hover":"--pf-t--global--dark--color--nonstatus--yellow--200","--pf-t--global--color--status--custom--clicked":"--pf-t--global--dark--color--status--custom--200","--pf-t--global--color--status--custom--default":"--pf-t--global--dark--color--status--custom--100","--pf-t--global--color--status--custom--hover":"--pf-t--global--dark--color--status--custom--200","--pf-t--global--color--status--danger--clicked":"--pf-t--global--dark--color--status--danger--200","--pf-t--global--color--status--danger--default":"--pf-t--global--dark--color--status--danger--100","--pf-t--global--color--status--danger--hover":"--pf-t--global--dark--color--status--danger--200","--pf-t--global--color--status--info--clicked":"--pf-t--global--dark--color--status--info--200","--pf-t--global--color--status--info--default":"--pf-t--global--dark--color--status--info--100","--pf-t--global--color--status--info--hover":"--pf-t--global--dark--color--status--info--200","--pf-t--global--color--status--success--clicked":"--pf-t--global--dark--color--status--success--200","--pf-t--global--color--status--success--default":"--pf-t--global--dark--color--status--success--100","--pf-t--global--color--status--success--hover":"--pf-t--global--dark--color--status--success--200","--pf-t--global--color--status--warning--clicked":"--pf-t--global--dark--color--status--warning--200","--pf-t--global--color--status--warning--default":"--pf-t--global--dark--color--status--warning--100","--pf-t--global--color--status--warning--hover":"--pf-t--global--dark--color--status--warning--200","--pf-t--global--font--size--body--default":"--pf-t--global--font--size--sm","--pf-t--global--font--size--body--lg":"--pf-t--global--font--size--md","--pf-t--global--font--size--body--sm":"--pf-t--global--font--size--xs","--pf-t--global--font--size--heading--h1":"--pf-t--global--font--size--2xl","--pf-t--global--font--size--heading--h2":"--pf-t--global--font--size--xl","--pf-t--global--font--size--heading--h3":"--pf-t--global--font--size--lg","--pf-t--global--font--size--heading--h4":"--pf-t--global--font--size--md","--pf-t--global--font--size--heading--h5":"--pf-t--global--font--size--md","--pf-t--global--font--size--heading--h6":"--pf-t--global--font--size--md","--pf-t--global--icon--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--icon--color--inverse":"--pf-t--global--dark--icon--color--300","--pf-t--global--icon--color--on-disabled":"--pf-t--global--dark--color--disabled--300","--pf-t--global--icon--color--regular":"--pf-t--global--dark--icon--color--100","--pf-t--global--icon--color--severity--critical--default":"--pf-t--global--dark--color--severity--critical--100","--pf-t--global--icon--color--severity--important--default":"--pf-t--global--dark--color--severity--important--100","--pf-t--global--icon--color--severity--minor--default":"--pf-t--global--dark--color--severity--minor--100","--pf-t--global--icon--color--severity--moderate--default":"--pf-t--global--dark--color--severity--moderate--100","--pf-t--global--icon--color--severity--none--default":"--pf-t--global--dark--color--severity--none--100","--pf-t--global--icon--color--severity--undefined--default":"--pf-t--global--dark--color--severity--undefined--100","--pf-t--global--icon--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--icon--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--icon--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--icon--color--subtle":"--pf-t--global--dark--icon--color--200","--pf-t--global--icon--size--font--2xl":"--pf-t--global--font--size--2xl","--pf-t--global--icon--size--font--3xl":"--pf-t--global--font--size--3xl","--pf-t--global--icon--size--font--4xl":"--pf-t--global--font--size--4xl","--pf-t--global--icon--size--font--lg":"--pf-t--global--font--size--lg","--pf-t--global--icon--size--font--md":"--pf-t--global--font--size--md","--pf-t--global--icon--size--font--sm":"--pf-t--global--font--size--sm","--pf-t--global--icon--size--font--xl":"--pf-t--global--font--size--xl","--pf-t--global--icon--size--font--xs":"--pf-t--global--font--size--xs","--pf-t--global--motion--duration--fade--default":"--pf-t--global--motion--duration--md","--pf-t--global--motion--duration--fade--long":"--pf-t--global--motion--duration--lg","--pf-t--global--motion--duration--fade--short":"--pf-t--global--motion--duration--sm","--pf-t--global--motion--duration--icon--default":"--pf-t--global--motion--duration--sm","--pf-t--global--motion--duration--icon--long":"--pf-t--global--motion--duration--md","--pf-t--global--motion--duration--icon--short":"--pf-t--global--motion--duration--xs","--pf-t--global--motion--duration--slide-in--default":"--pf-t--global--motion--duration--xl","--pf-t--global--motion--duration--slide-in--long":"--pf-t--global--motion--duration--2xl","--pf-t--global--motion--duration--slide-in--short":"--pf-t--global--motion--duration--lg","--pf-t--global--motion--duration--slide-out--default":"--pf-t--global--motion--duration--xl","--pf-t--global--motion--duration--slide-out--long":"--pf-t--global--motion--duration--2xl","--pf-t--global--motion--duration--slide-out--short":"--pf-t--global--motion--duration--lg","--pf-t--global--spacer--action--horizontal--compact":"--pf-t--global--spacer--md","--pf-t--global--spacer--action--horizontal--default":"--pf-t--global--spacer--lg","--pf-t--global--spacer--action--horizontal--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--action--horizontal--spacious":"--pf-t--global--spacer--xl","--pf-t--global--spacer--action--vertical--compact":"--pf-t--global--spacer--xs","--pf-t--global--spacer--action--vertical--spacious":"--pf-t--global--spacer--md","--pf-t--global--spacer--control--horizontal--compact":"--pf-t--global--spacer--sm","--pf-t--global--spacer--control--horizontal--default":"--pf-t--global--spacer--md","--pf-t--global--spacer--control--horizontal--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--control--horizontal--spacious":"--pf-t--global--spacer--lg","--pf-t--global--spacer--control--vertical--compact":"--pf-t--global--spacer--xs","--pf-t--global--spacer--control--vertical--default":"--pf-t--global--spacer--sm","--pf-t--global--spacer--control--vertical--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--gap--action-to-action--default":"--pf-t--global--spacer--md","--pf-t--global--spacer--gap--action-to-action--plain":"--pf-t--global--spacer--xs","--pf-t--global--spacer--gap--control-to-control--default":"--pf-t--global--spacer--xs","--pf-t--global--spacer--gap--group--horizontal":"--pf-t--global--spacer--md","--pf-t--global--spacer--gap--group--vertical":"--pf-t--global--spacer--sm","--pf-t--global--spacer--gap--group-to-group--horizontal":"--pf-t--global--spacer--2xl","--pf-t--global--spacer--gap--group-to-group--vertical":"--pf-t--global--spacer--lg","--pf-t--global--spacer--gap--text-to-element--default":"--pf-t--global--spacer--sm","--pf-t--global--text--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--text--color--inverse":"--pf-t--global--dark--text--color--300","--pf-t--global--text--color--link--default":"--pf-t--global--dark--text--color--link--100","--pf-t--global--text--color--link--hover":"--pf-t--global--dark--text--color--link--200","--pf-t--global--text--color--link--visited":"--pf-t--global--dark--text--color--link--300","--pf-t--global--text--color--on-disabled":"--pf-t--global--dark--color--disabled--300","--pf-t--global--text--color--on-highlight":"--pf-t--global--dark--text--color--300","--pf-t--global--text--color--regular":"--pf-t--global--dark--text--color--100","--pf-t--global--text--color--required":"--pf-t--global--dark--text--color--400","--pf-t--global--text--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--text--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--text--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--text--color--subtle":"--pf-t--global--dark--text--color--200","--pf-t--global--background--color--control--default":"--pf-t--global--dark--background--color--300","--pf-t--global--border--color--alt":"--pf-t--global--background--color--primary--default","--pf-t--global--border--color--brand--clicked":"--pf-t--global--color--brand--clicked","--pf-t--global--border--color--brand--default":"--pf-t--global--color--brand--default","--pf-t--global--border--color--brand--hover":"--pf-t--global--color--brand--hover","--pf-t--global--border--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--border--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--border--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--border--color--status--danger--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--border--color--status--danger--default":"--pf-t--global--color--status--danger--default","--pf-t--global--border--color--status--danger--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--border--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--border--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--border--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--border--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--border--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--border--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--color--status--read--on-primary":"--pf-t--global--background--color--secondary--default","--pf-t--global--color--status--unread--attention--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--color--status--unread--attention--default":"--pf-t--global--color--status--danger--default","--pf-t--global--color--status--unread--attention--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--color--status--unread--clicked":"--pf-t--global--color--brand--clicked","--pf-t--global--color--status--unread--default":"--pf-t--global--color--brand--default","--pf-t--global--color--status--unread--hover":"--pf-t--global--color--brand--hover","--pf-t--global--icon--color--brand--clicked":"--pf-t--global--dark--color--brand--300","--pf-t--global--icon--color--brand--default":"--pf-t--global--dark--color--brand--200","--pf-t--global--icon--color--brand--hover":"--pf-t--global--dark--color--brand--300","--pf-t--global--icon--color--favorite--clicked":"--pf-t--global--color--favorite--clicked","--pf-t--global--icon--color--favorite--default":"--pf-t--global--color--favorite--default","--pf-t--global--icon--color--favorite--hover":"--pf-t--global--color--favorite--hover","--pf-t--global--icon--color--nonstatus--on-blue--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-blue--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-blue--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gray--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gray--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gray--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-teal--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-teal--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-teal--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-yellow--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-yellow--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-yellow--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--on-brand--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--on-brand--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--on-brand--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--icon--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--icon--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--icon--color--status--danger--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--icon--color--status--danger--default":"--pf-t--global--color--status--danger--default","--pf-t--global--icon--color--status--danger--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--icon--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--icon--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--icon--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--icon--color--status--on-custom--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-custom--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-custom--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-danger--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-danger--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-danger--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-info--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-info--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-info--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-warning--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-warning--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-warning--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--icon--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--icon--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--icon--color--status--unread--on-attention--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-attention--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-attention--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--size--font--body--default":"--pf-t--global--font--size--body--default","--pf-t--global--icon--size--font--body--lg":"--pf-t--global--font--size--body--lg","--pf-t--global--icon--size--font--body--sm":"--pf-t--global--font--size--body--sm","--pf-t--global--icon--size--font--heading--h1":"--pf-t--global--font--size--heading--h1","--pf-t--global--icon--size--font--heading--h2":"--pf-t--global--font--size--heading--h2","--pf-t--global--icon--size--font--heading--h3":"--pf-t--global--font--size--heading--h3","--pf-t--global--icon--size--font--heading--h4":"--pf-t--global--font--size--heading--h4","--pf-t--global--icon--size--font--heading--h5":"--pf-t--global--font--size--heading--h5","--pf-t--global--icon--size--font--heading--h6":"--pf-t--global--font--size--heading--h6","--pf-t--global--text--color--brand--clicked":"--pf-t--global--dark--color--brand--300","--pf-t--global--text--color--brand--default":"--pf-t--global--dark--color--brand--200","--pf-t--global--text--color--brand--hover":"--pf-t--global--dark--color--brand--300","--pf-t--global--text--color--nonstatus--on-blue--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-blue--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-blue--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gray--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gray--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gray--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-teal--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-teal--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-teal--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-yellow--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-yellow--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-yellow--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--on-brand--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--on-brand--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--on-brand--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--placeholder":"--pf-t--global--text--color--subtle","--pf-t--global--text--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--text--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--text--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--text--color--status--danger--clicked":"--pf-t--global--dark--color--status--danger--300","--pf-t--global--text--color--status--danger--default":"--pf-t--global--dark--color--status--danger--250","--pf-t--global--text--color--status--danger--hover":"--pf-t--global--dark--color--status--danger--300","--pf-t--global--text--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--text--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--text--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--text--color--status--on-custom--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-custom--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-custom--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-danger--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-danger--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-danger--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-info--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-info--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-info--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-warning--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-warning--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-warning--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--text--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--text--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--text--color--status--unread--on-attention--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-attention--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-attention--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--hover":"--pf-t--global--text--color--inverse","--pf-t--global--color--status--read--on-secondary":"--pf-t--global--background--color--control--default","--pf-t--global--dark--background--color--500":"rgba(21, 21, 21, 0.8000)","--pf-t--global--dark--background--color--600":"rgba(199, 199, 199, 0.1500)","--pf-t--global--dark--box-shadow--color--100":"rgba(0, 0, 0, 0.5000)","--pf-t--global--dark--background--color--100":"--pf-t--color--gray--95","--pf-t--global--dark--background--color--200":"--pf-t--color--gray--80","--pf-t--global--dark--background--color--300":"--pf-t--color--gray--70","--pf-t--global--dark--background--color--400":"--pf-t--color--gray--10","--pf-t--global--dark--background--color--highlight--100":"--pf-t--color--yellow--20","--pf-t--global--dark--background--color--highlight--200":"--pf-t--color--yellow--30","--pf-t--global--dark--border--color--100":"--pf-t--color--gray--50","--pf-t--global--dark--border--color--200":"--pf-t--color--gray--40","--pf-t--global--dark--color--brand--100":"--pf-t--color--blue--30","--pf-t--global--dark--color--brand--200":"--pf-t--color--blue--20","--pf-t--global--dark--color--brand--300":"--pf-t--color--blue--10","--pf-t--global--dark--color--disabled--100":"--pf-t--color--gray--40","--pf-t--global--dark--color--disabled--200":"--pf-t--color--gray--50","--pf-t--global--dark--color--disabled--300":"--pf-t--color--gray--70","--pf-t--global--dark--color--favorite--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--favorite--200":"--pf-t--color--yellow--20","--pf-t--global--dark--color--nonstatus--blue--100":"--pf-t--color--blue--30","--pf-t--global--dark--color--nonstatus--blue--200":"--pf-t--color--blue--20","--pf-t--global--dark--color--nonstatus--blue--300":"--pf-t--color--blue--10","--pf-t--global--dark--color--nonstatus--gray--100":"--pf-t--color--gray--30","--pf-t--global--dark--color--nonstatus--gray--200":"--pf-t--color--gray--20","--pf-t--global--dark--color--nonstatus--gray--300":"--pf-t--color--gray--10","--pf-t--global--dark--color--nonstatus--green--100":"--pf-t--color--green--30","--pf-t--global--dark--color--nonstatus--green--200":"--pf-t--color--green--20","--pf-t--global--dark--color--nonstatus--green--300":"--pf-t--color--green--10","--pf-t--global--dark--color--nonstatus--orange--100":"--pf-t--color--orange--30","--pf-t--global--dark--color--nonstatus--orange--200":"--pf-t--color--orange--20","--pf-t--global--dark--color--nonstatus--orange--300":"--pf-t--color--orange--10","--pf-t--global--dark--color--nonstatus--orangered--100":"--pf-t--color--red-orange--30","--pf-t--global--dark--color--nonstatus--orangered--200":"--pf-t--color--red-orange--20","--pf-t--global--dark--color--nonstatus--orangered--300":"--pf-t--color--red-orange--10","--pf-t--global--dark--color--nonstatus--purple--100":"--pf-t--color--purple--30","--pf-t--global--dark--color--nonstatus--purple--200":"--pf-t--color--purple--20","--pf-t--global--dark--color--nonstatus--purple--300":"--pf-t--color--purple--10","--pf-t--global--dark--color--nonstatus--red--100":"--pf-t--color--red--30","--pf-t--global--dark--color--nonstatus--red--200":"--pf-t--color--red--20","--pf-t--global--dark--color--nonstatus--red--300":"--pf-t--color--red--10","--pf-t--global--dark--color--nonstatus--teal--100":"--pf-t--color--teal--30","--pf-t--global--dark--color--nonstatus--teal--200":"--pf-t--color--teal--20","--pf-t--global--dark--color--nonstatus--teal--300":"--pf-t--color--teal--10","--pf-t--global--dark--color--nonstatus--yellow--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--nonstatus--yellow--200":"--pf-t--color--yellow--20","--pf-t--global--dark--color--nonstatus--yellow--300":"--pf-t--color--yellow--10","--pf-t--global--dark--color--severity--critical--100":"--pf-t--color--red-orange--50","--pf-t--global--dark--color--severity--important--100":"--pf-t--color--orange--40","--pf-t--global--dark--color--severity--minor--100":"--pf-t--color--gray--30","--pf-t--global--dark--color--severity--moderate--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--severity--none--100":"--pf-t--color--blue--30","--pf-t--global--dark--color--severity--undefined--100":"--pf-t--color--gray--40","--pf-t--global--dark--color--status--custom--100":"--pf-t--color--teal--40","--pf-t--global--dark--color--status--custom--200":"--pf-t--color--teal--30","--pf-t--global--dark--color--status--danger--100":"--pf-t--color--red-orange--50","--pf-t--global--dark--color--status--danger--200":"--pf-t--color--red-orange--40","--pf-t--global--dark--color--status--danger--250":"--pf-t--color--red-orange--30","--pf-t--global--dark--color--status--danger--300":"--pf-t--color--red-orange--20","--pf-t--global--dark--color--status--info--100":"--pf-t--color--purple--30","--pf-t--global--dark--color--status--info--200":"--pf-t--color--purple--20","--pf-t--global--dark--color--status--success--100":"--pf-t--color--green--40","--pf-t--global--dark--color--status--success--200":"--pf-t--color--green--30","--pf-t--global--dark--color--status--warning--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--status--warning--200":"--pf-t--color--yellow--20","--pf-t--global--dark--icon--color--100":"--pf-t--color--gray--10","--pf-t--global--dark--icon--color--200":"--pf-t--color--gray--40","--pf-t--global--dark--icon--color--300":"--pf-t--color--gray--90","--pf-t--global--dark--text--color--100":"--pf-t--color--gray--10","--pf-t--global--dark--text--color--200":"--pf-t--color--gray--30","--pf-t--global--dark--text--color--300":"--pf-t--color--gray--90","--pf-t--global--dark--text--color--400":"--pf-t--color--red-orange--30","--pf-t--global--dark--text--color--link--100":"--pf-t--color--blue--20","--pf-t--global--dark--text--color--link--200":"--pf-t--color--blue--10","--pf-t--global--dark--text--color--link--300":"--pf-t--color--purple--30","--pf-t--chart--global--BorderWidth--lg":"8","--pf-t--chart--global--BorderWidth--sm":"2","--pf-t--chart--global--BorderWidth--xs":"1","--pf-t--chart--global--FontSize--2xl":"22","--pf-t--chart--global--FontSize--lg":"18","--pf-t--chart--global--FontSize--sm":"14","--pf-t--chart--global--FontSize--xs":"12","--pf-t--chart--global--label--margin":"8","--pf-t--chart--global--label--padding":"10","--pf-t--chart--global--label--stroke":"transparent","--pf-t--chart--global--label--text-anchor":"middle","--pf-t--chart--global--layout--height":"300","--pf-t--chart--global--layout--padding":"50","--pf-t--chart--global--layout--width":"450","--pf-t--chart--global--letter-spacing":"normal","--pf-t--chart--global--stroke--width--sm":"2","--pf-t--chart--global--stroke--width--xs":"1","--pf-t--chart--global--stroke-line-cap":"round","--pf-t--chart--global--stroke-line-join":"round","--pf-t--chart--color--black--100":"--pf-t--color--gray--50","--pf-t--chart--color--black--200":"--pf-t--color--gray--40","--pf-t--chart--color--black--300":"--pf-t--color--gray--30","--pf-t--chart--color--black--400":"--pf-t--color--gray--20","--pf-t--chart--color--black--500":"--pf-t--color--gray--10","--pf-t--chart--color--blue--100":"--pf-t--color--blue--50","--pf-t--chart--color--blue--200":"--pf-t--color--blue--40","--pf-t--chart--color--blue--300":"--pf-t--color--blue--30","--pf-t--chart--color--blue--400":"--pf-t--color--blue--20","--pf-t--chart--color--blue--500":"--pf-t--color--blue--10","--pf-t--chart--color--green--100":"--pf-t--color--green--50","--pf-t--chart--color--green--200":"--pf-t--color--green--40","--pf-t--chart--color--green--300":"--pf-t--color--green--30","--pf-t--chart--color--green--400":"--pf-t--color--green--20","--pf-t--chart--color--green--500":"--pf-t--color--green--10","--pf-t--chart--color--orange--100":"--pf-t--color--orange--50","--pf-t--chart--color--orange--200":"--pf-t--color--orange--40","--pf-t--chart--color--orange--300":"--pf-t--color--orange--30","--pf-t--chart--color--orange--400":"--pf-t--color--orange--20","--pf-t--chart--color--orange--500":"--pf-t--color--orange--10","--pf-t--chart--color--purple--100":"--pf-t--color--purple--60","--pf-t--chart--color--purple--200":"--pf-t--color--purple--50","--pf-t--chart--color--purple--300":"--pf-t--color--purple--40","--pf-t--chart--color--purple--400":"--pf-t--color--purple--30","--pf-t--chart--color--purple--500":"--pf-t--color--purple--20","--pf-t--chart--color--red-orange--100":"--pf-t--color--red-orange--50","--pf-t--chart--color--red-orange--200":"--pf-t--color--red-orange--40","--pf-t--chart--color--red-orange--300":"--pf-t--color--red-orange--30","--pf-t--chart--color--red-orange--400":"--pf-t--color--red-orange--20","--pf-t--chart--color--red-orange--500":"--pf-t--color--red-orange--10","--pf-t--chart--color--teal--100":"--pf-t--color--teal--50","--pf-t--chart--color--teal--200":"--pf-t--color--teal--40","--pf-t--chart--color--teal--300":"--pf-t--color--teal--30","--pf-t--chart--color--teal--400":"--pf-t--color--teal--20","--pf-t--chart--color--teal--500":"--pf-t--color--teal--10","--pf-t--chart--color--yellow--100":"--pf-t--color--yellow--50","--pf-t--chart--color--yellow--200":"--pf-t--color--yellow--40","--pf-t--chart--color--yellow--300":"--pf-t--color--yellow--30","--pf-t--chart--color--yellow--400":"--pf-t--color--yellow--20","--pf-t--chart--color--yellow--500":"--pf-t--color--yellow--10","--pf-t--chart--global--danger--color--100":"--pf-t--color--red-orange--50","--pf-t--chart--global--fill--color--100":"--pf-t--color--gray--60","--pf-t--chart--global--fill--color--200":"--pf-t--color--gray--50","--pf-t--chart--global--fill--color--300":"--pf-t--color--gray--40","--pf-t--chart--global--fill--color--400":"--pf-t--color--gray--30","--pf-t--chart--global--fill--color--500":"--pf-t--color--gray--20","--pf-t--chart--global--fill--color--700":"--pf-t--color--gray--10","--pf-t--chart--global--fill--color--900":"--pf-t--color--white","--pf-t--chart--global--fill--color--white":"--pf-t--color--white","--pf-t--chart--global--label--fill":"--pf-t--color--white","--pf-t--chart--global--success--color--100":"--pf-t--color--blue--30","--pf-t--chart--global--warning--color--100":"--pf-t--color--orange--30","--pf-t--chart--global--warning--color--200":"--pf-t--color--yellow--30","--pf-t--chart--theme--colorscales--blue--colorscale--100":"--pf-t--chart--color--blue--300","--pf-t--chart--theme--colorscales--blue--colorscale--200":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--blue--colorscale--300":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--blue--colorscale--400":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--blue--colorscale--500":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--gray--colorscale--100":"--pf-t--chart--color--black--300","--pf-t--chart--theme--colorscales--gray--colorscale--200":"--pf-t--chart--color--black--100","--pf-t--chart--theme--colorscales--gray--colorscale--300":"--pf-t--chart--color--black--500","--pf-t--chart--theme--colorscales--gray--colorscale--400":"--pf-t--chart--color--black--200","--pf-t--chart--theme--colorscales--gray--colorscale--500":"--pf-t--chart--color--black--400","--pf-t--chart--theme--colorscales--green--colorscale--100":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--green--colorscale--200":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--green--colorscale--300":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--green--colorscale--400":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--green--colorscale--500":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400":"--pf-t--chart--color--yellow--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600":"--pf-t--chart--color--blue--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100":"--pf-t--chart--color--purple--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400":"--pf-t--chart--color--black--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800":"--pf-t--chart--color--purple--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100":"--pf-t--chart--color--black--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500":"--pf-t--chart--color--purple--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800":"--pf-t--chart--color--black--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000":"--pf-t--chart--color--yellow--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200":"--pf-t--chart--color--purple--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500":"--pf-t--chart--color--black--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400":"--pf-t--chart--color--purple--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700":"--pf-t--chart--color--black--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800":"--pf-t--chart--color--blue--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--orange--colorscale--100":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--orange--colorscale--200":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--orange--colorscale--300":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--orange--colorscale--400":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--orange--colorscale--500":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--purple--colorscale--100":"--pf-t--chart--color--purple--300","--pf-t--chart--theme--colorscales--purple--colorscale--200":"--pf-t--chart--color--purple--100","--pf-t--chart--theme--colorscales--purple--colorscale--300":"--pf-t--chart--color--purple--500","--pf-t--chart--theme--colorscales--purple--colorscale--400":"--pf-t--chart--color--purple--200","--pf-t--chart--theme--colorscales--purple--colorscale--500":"--pf-t--chart--color--purple--400","--pf-t--chart--theme--colorscales--teal--colorscale--100":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--teal--colorscale--200":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--teal--colorscale--300":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--teal--colorscale--400":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--teal--colorscale--500":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--yellow--colorscale--100":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--yellow--colorscale--200":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--yellow--colorscale--300":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--yellow--colorscale--400":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--yellow--colorscale--500":"--pf-t--chart--color--yellow--400"} From 037f17b9c32e8f799165d922d8dbe8c185cf932e Mon Sep 17 00:00:00 2001 From: Evan Date: Thu, 11 Jul 2024 08:16:38 -0400 Subject: [PATCH 07/23] design feedback - simplify rows --- .../content/tokensTableCategories.js | 75 +++++++++++-------- 1 file changed, 43 insertions(+), 32 deletions(-) diff --git a/packages/module/patternfly-docs/content/tokensTableCategories.js b/packages/module/patternfly-docs/content/tokensTableCategories.js index ad8936e..4a7b41e 100644 --- a/packages/module/patternfly-docs/content/tokensTableCategories.js +++ b/packages/module/patternfly-docs/content/tokensTableCategories.js @@ -1,5 +1,14 @@ import React, { useMemo } from 'react'; -import { SearchInput, Title, Toolbar, ToolbarItem, ToolbarContent, capitalize } from '@patternfly/react-core'; +import { + Flex, + FlexItem, + SearchInput, + Title, + Toolbar, + ToolbarItem, + ToolbarContent, + capitalize +} from '@patternfly/react-core'; import { Table, Thead, @@ -160,24 +169,18 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize if (layerName === 'chart') { layerDataObj = { chart: layerDataObj }; } + const isSemanticLayer = layerName === 'semantic'; return ( <> {formatThemeText(layerName)} tokens
{categoryName}{val ?? '-'} +
+ {hasValue && isColorRegex.test(val) && ( +
+ +
+ )} +
+ {hasValue ? val : '-'} +
+
+
{description}
- {themesDataArr.map(([themeName, themeTokenData]) => ( - - {showTokenChain(themeTokenData)} - + {themesDataObj.hasOwnProperty(theme) && ( + + {showTokenChain(themesDataObj[theme])} + + )} +
- - - - {themeKeys.map((theme) => ( - - ))} - - {/* - - - - */} + + + {/* */} + + {isSemanticLayer && } {Object.entries(layerDataObj).map((layerDataProperties, _rowIndex) => { @@ -233,31 +236,39 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize - - {themeKeys.map((theme) => { - const val = - layerName === 'palette' || layerName === 'chart' - ? tokensByTheme[theme][layerName][tokenName]?.value - : tokensByTheme[theme][layerName][categoryName][tokenName]?.value; - const hasValue = val !== undefined; - return ( - */} + - ); - })} + + ); + })} + {hasReferences && isTokenExpanded(tokenName) && ( From 6dd16e2c44aa1f57ffa73f3e17a6edcfde0c072c Mon Sep 17 00:00:00 2001 From: Evan Date: Sun, 14 Jul 2024 14:22:44 -0400 Subject: [PATCH 08/23] chore(docs): token chains by theme in grid --- .../content/tokensTableCategories.js | 45 +++++++++---------- 1 file changed, 22 insertions(+), 23 deletions(-) diff --git a/packages/module/patternfly-docs/content/tokensTableCategories.js b/packages/module/patternfly-docs/content/tokensTableCategories.js index 4a7b41e..1e44f13 100644 --- a/packages/module/patternfly-docs/content/tokensTableCategories.js +++ b/packages/module/patternfly-docs/content/tokensTableCategories.js @@ -2,6 +2,8 @@ import React, { useMemo } from 'react'; import { Flex, FlexItem, + Grid, + GridItem, SearchInput, Title, Toolbar, @@ -95,7 +97,7 @@ const showTokenChain = (themeTokenData) => {
@@ -162,7 +164,7 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize - {Object.entries(allTokens).map(([layerName, layerDataObj], rowIndex) => { + {Object.entries(allTokens).map(([layerName, layerDataObj], _rowIndex) => { if (layerName === 'palette') { layerDataObj = { palette: layerDataObj }; } @@ -173,12 +175,12 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize return ( <> {formatThemeText(layerName)} tokens -
NameCategory{`${formatThemeText(theme)} Theme`}DescriptionCategoryTypeItemSubitemStateNameCategoryValueDescription
{tokenName} {categoryName} -
- {hasValue && isColorRegex.test(val) && ( -
{categoryName}
+ {themeKeys.map((theme) => { + const val = + layerName === 'palette' || layerName === 'chart' + ? tokensByTheme[theme][layerName][tokenName]?.value + : tokensByTheme[theme][layerName][categoryName][tokenName]?.value; + const hasValue = val !== undefined; + const isColor = isColorRegex.test(val); + return ( + + {formatThemeText(theme)}: + {hasValue && isColor && ( + + + )} + {!isColor && ( +
+ {hasValue ? val : '-'}
)} -
- {hasValue ? val : '-'} -
- -
{description}
+
+ {/* Only semantic tokens have description, adjust columns accordingly */} - {/* */} {isSemanticLayer && } @@ -191,6 +193,7 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize if (tokenName === 'default') { return undefined; } else if ( + // Match search value to any token name/value in token chain or to description searchValue !== '' && !( tokenName.toLowerCase().includes(searchTerm) || @@ -236,7 +239,6 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize - {/* */} - ); - })} + + + )} From b71c4ae0e0e3e67ade24a51b7601b96279d828ac Mon Sep 17 00:00:00 2001 From: Evan Date: Sun, 14 Jul 2024 14:37:51 -0400 Subject: [PATCH 09/23] fix spacing between tables --- .../module/patternfly-docs/content/tokensTableCategories.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/module/patternfly-docs/content/tokensTableCategories.js b/packages/module/patternfly-docs/content/tokensTableCategories.js index 1e44f13..73d6fcb 100644 --- a/packages/module/patternfly-docs/content/tokensTableCategories.js +++ b/packages/module/patternfly-docs/content/tokensTableCategories.js @@ -175,7 +175,7 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize return ( <> {formatThemeText(layerName)} tokens -
NameCategoryValueDescription
{tokenName} {categoryName} {themeKeys.map((theme) => { const val = @@ -262,7 +264,7 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize )} {!isColor && (
- {hasValue ? val : '-'} + {hasValue ? val : '--'}
)} @@ -274,24 +276,21 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize {hasReferences && isTokenExpanded(tokenName) && (
- - - {themeKeys.map((theme) => { - return ( - - {themesDataObj.hasOwnProperty(theme) && ( - - {showTokenChain(themesDataObj[theme])} - + + + + {themeKeys.map( + (theme) => + themesDataObj.hasOwnProperty(theme) && ( + <> + {formatThemeText(theme)}: + {showTokenChain(themesDataObj[theme])} + + ) )} -
+
{/* Only semantic tokens have description, adjust columns accordingly */} From c11293c96738aa82867acd4b0d09b31d3c1f3d70 Mon Sep 17 00:00:00 2001 From: Evan Date: Sun, 14 Jul 2024 15:01:42 -0400 Subject: [PATCH 10/23] cleanup & comment code --- .../content/tokensTableCategories.js | 23 +++++++++++-------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/packages/module/patternfly-docs/content/tokensTableCategories.js b/packages/module/patternfly-docs/content/tokensTableCategories.js index 73d6fcb..c6b536d 100644 --- a/packages/module/patternfly-docs/content/tokensTableCategories.js +++ b/packages/module/patternfly-docs/content/tokensTableCategories.js @@ -224,6 +224,7 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize return ( + {/* Expandable row icon */} + {/* Token values for each theme */} + + {/* Expandable token chain */} {hasReferences && isTokenExpanded(tokenName) && ( + + {/* Expandable row icon */} + + {/* Token values for each theme */} + + + + + {/* Expandable token chain */} + {hasReferences && isTokenExpanded(tokenName) && ( + + + + )} + + ); + } + }); + })} +
{tokenName} {themeKeys.map((theme) => { const val = @@ -254,15 +256,16 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize key={`${theme}-${tokenName}`} > {formatThemeText(theme)}: - {hasValue && isColor && ( - - - - )} - {!isColor && ( + {isColor ? ( + hasValue && ( + + + + ) + ) : (
{hasValue ? val : '--'}
@@ -273,6 +276,8 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize
{description}
From 43b33890005736263dc8079054a3012e32f76501 Mon Sep 17 00:00:00 2001 From: Evan Date: Sun, 14 Jul 2024 22:35:37 -0400 Subject: [PATCH 11/23] add category select --- .../content/tokensTableCategories.js | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/packages/module/patternfly-docs/content/tokensTableCategories.js b/packages/module/patternfly-docs/content/tokensTableCategories.js index c6b536d..fc5cd00 100644 --- a/packages/module/patternfly-docs/content/tokensTableCategories.js +++ b/packages/module/patternfly-docs/content/tokensTableCategories.js @@ -4,7 +4,11 @@ import { FlexItem, Grid, GridItem, + MenuToggle, SearchInput, + Select, + SelectList, + SelectOption, Title, Toolbar, ToolbarItem, @@ -27,6 +31,7 @@ import './tokensTable.css'; // eslint-disable-next-line camelcase import global_spacer_md from '@patternfly/react-tokens/dist/esm/global_spacer_md'; import LevelUpAltIcon from '@patternfly/react-icons/dist/esm/icons/level-up-alt-icon'; +import FilterIcon from '@patternfly/react-icons/dist/esm/icons/filter-icon'; const isColorRegex = /^(#|rgb)/; @@ -139,6 +144,8 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize const [searchValue, setSearchValue] = React.useState(''); const [expandedTokens, setExpandedTokens] = React.useState([]); + const [isSelectOpen, setIsSelectOpen] = React.useState(false); + const [selectedCategories, setSelectedCategories] = React.useState([]); const setExpanded = (tokenName, isExpanding = true) => setExpandedTokens((prevExpanded) => { const otherExpandedTokens = prevExpanded.filter((n) => n !== tokenName); @@ -160,6 +167,60 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize onClear={() => setSearchValue('')} /> + + + @@ -205,6 +266,8 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize ) ) { return undefined; + } else if (selectedCategories.length !== 0 && !selectedCategories.includes(categoryName)) { + return undefined; } else { const themesDataArr = Object.entries(themesDataObj); From 7b1dc2df968565501d8cbdf0167fede26b2a6972 Mon Sep 17 00:00:00 2001 From: Evan Date: Mon, 15 Jul 2024 12:05:56 -0400 Subject: [PATCH 12/23] remove extra commas in select --- .../module/patternfly-docs/content/tokensTableCategories.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/module/patternfly-docs/content/tokensTableCategories.js b/packages/module/patternfly-docs/content/tokensTableCategories.js index fc5cd00..c82de13 100644 --- a/packages/module/patternfly-docs/content/tokensTableCategories.js +++ b/packages/module/patternfly-docs/content/tokensTableCategories.js @@ -197,7 +197,6 @@ export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize Colors - , Dimension - , Motion - , Palette - , Chart From 950c490b889f9b6f640440238f25ed5f14ccbd07 Mon Sep 17 00:00:00 2001 From: Evan Date: Mon, 5 Aug 2024 11:03:38 -0400 Subject: [PATCH 13/23] chore(docs): remove unused files, rename for clarity --- packages/module/build.js | 28 +- ...ntic.dark.json => config.layers.dark.json} | 2 +- ...onfig.semantic.json => config.layers.json} | 2 +- .../content/all-patternfly-tokens.md | 10 +- .../content/all-tokens-dark.json | 58129 ---------------- .../content/all-tokens-default.json | 54088 -------------- ...okens-dark.json => token-layers-dark.json} | 0 ...default.json => token-layers-default.json} | 0 .../patternfly-docs/content/tokensTable.js | 360 +- .../content/tokensTableCategories.js | 373 - .../tokens/all-patternfly-tokens/tokens.js | 12 +- 11 files changed, 271 insertions(+), 112733 deletions(-) rename packages/module/{config.semantic.dark.json => config.layers.dark.json} (88%) rename packages/module/{config.semantic.json => config.layers.json} (86%) delete mode 100644 packages/module/patternfly-docs/content/all-tokens-dark.json delete mode 100644 packages/module/patternfly-docs/content/all-tokens-default.json rename packages/module/patternfly-docs/content/{semantic-tokens-dark.json => token-layers-dark.json} (100%) rename packages/module/patternfly-docs/content/{semantic-tokens-default.json => token-layers-default.json} (100%) delete mode 100644 packages/module/patternfly-docs/content/tokensTableCategories.js diff --git a/packages/module/build.js b/packages/module/build.js index 0baddce..289819f 100644 --- a/packages/module/build.js +++ b/packages/module/build.js @@ -38,22 +38,6 @@ const build = (selector) => { } }); - StyleDictionary.registerFormat({ - name: 'json/flat', - formatter: function (dictionary) { - let tokens = {}; - dictionary.allTokens.map((token) => { - // assign each token object to token.name - tokens[token.name] = token; - // attach references to build token chain - if (dictionary.usesReference(token.original.value)) { - token.references = dictionary.getReferences(token.original.value); - } - }); - return JSON.stringify(tokens, null, 2); - } - }); - StyleDictionary.registerFormat({ name: 'json/flat-categories', formatter: function (dictionary) { @@ -145,10 +129,8 @@ const build = (selector) => { const paletteExtendedSD = StyleDictionary.extend(__dirname + '/config.palette-colors.json'); const chartsExtendedSD = StyleDictionary.extend(__dirname + '/config.charts.json'); const chartsDarkExtendedSD = StyleDictionary.extend(__dirname + '/config.charts.dark.json'); - const allDefaultSD = StyleDictionary.extend(__dirname + '/config.all.default.json'); - const allDarkSD = StyleDictionary.extend(__dirname + '/config.all.dark.json'); - const semanticSD = StyleDictionary.extend(__dirname + '/config.semantic.json'); - const semanticDarkSD = StyleDictionary.extend(__dirname + '/config.semantic.dark.json'); + const layersSD = StyleDictionary.extend(__dirname + '/config.layers.json'); + const layersDarkSD = StyleDictionary.extend(__dirname + '/config.layers.dark.json'); // Build all defaultExtendedSD.buildAllPlatforms(); @@ -156,10 +138,8 @@ const build = (selector) => { paletteExtendedSD.buildAllPlatforms(); chartsExtendedSD.buildAllPlatforms(); chartsDarkExtendedSD.buildAllPlatforms(); - allDefaultSD.buildAllPlatforms(); - allDarkSD.buildAllPlatforms(); - semanticSD.buildAllPlatforms(); - semanticDarkSD.buildAllPlatforms(); + layersSD.buildAllPlatforms(); + layersDarkSD.buildAllPlatforms(); console.log('\n============================'); console.log('\nBuild completed.'); diff --git a/packages/module/config.semantic.dark.json b/packages/module/config.layers.dark.json similarity index 88% rename from packages/module/config.semantic.dark.json rename to packages/module/config.layers.dark.json index 1da17f9..36c2664 100644 --- a/packages/module/config.semantic.dark.json +++ b/packages/module/config.layers.dark.json @@ -8,7 +8,7 @@ "prefix": "pf-t", "files": [ { - "destination": "semantic-tokens-dark.json", + "destination": "token-layers-dark.json", "format": "json/flat-categories", "options": { "outputReferences": false diff --git a/packages/module/config.semantic.json b/packages/module/config.layers.json similarity index 86% rename from packages/module/config.semantic.json rename to packages/module/config.layers.json index 169ab9e..dbe4d8a 100644 --- a/packages/module/config.semantic.json +++ b/packages/module/config.layers.json @@ -7,7 +7,7 @@ "prefix": "pf-t", "files": [ { - "destination": "semantic-tokens-default.json", + "destination": "token-layers-default.json", "format": "json/flat-categories", "options": { "outputReferences": false diff --git a/packages/module/patternfly-docs/content/all-patternfly-tokens.md b/packages/module/patternfly-docs/content/all-patternfly-tokens.md index b52f683..c6a8c4a 100644 --- a/packages/module/patternfly-docs/content/all-patternfly-tokens.md +++ b/packages/module/patternfly-docs/content/all-patternfly-tokens.md @@ -3,12 +3,8 @@ section: tokens id: All PatternFly tokens --- - -import * as defaultTokens from './semantic-tokens-default.json'; -import * as darkTokens from './semantic-tokens-dark.json'; +import * as defaultTokens from './token-layers-default.json'; +import * as darkTokens from './token-layers-dark.json'; import { TokensTable } from './tokensTable.js'; -import { TokensTableCategories } from './tokensTableCategories.js'; - - - + diff --git a/packages/module/patternfly-docs/content/all-tokens-dark.json b/packages/module/patternfly-docs/content/all-tokens-dark.json deleted file mode 100644 index 8876a94..0000000 --- a/packages/module/patternfly-docs/content/all-tokens-dark.json +++ /dev/null @@ -1,58129 +0,0 @@ -{ - "pf-t--global--spacer--100": { - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - }, - "pf-t--global--spacer--200": { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - }, - "pf-t--global--spacer--300": { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - }, - "pf-t--global--spacer--400": { - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - }, - "pf-t--global--spacer--500": { - "type": "number", - "value": "2rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 32 - }, - "name": "pf-t--global--spacer--500", - "attributes": { - "category": "global", - "type": "spacer", - "item": "500" - }, - "path": [ - "global", - "spacer", - "500" - ] - }, - "pf-t--global--spacer--600": { - "type": "number", - "value": "3rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 48 - }, - "name": "pf-t--global--spacer--600", - "attributes": { - "category": "global", - "type": "spacer", - "item": "600" - }, - "path": [ - "global", - "spacer", - "600" - ] - }, - "pf-t--global--spacer--700": { - "type": "number", - "value": "4rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 64 - }, - "name": "pf-t--global--spacer--700", - "attributes": { - "category": "global", - "type": "spacer", - "item": "700" - }, - "path": [ - "global", - "spacer", - "700" - ] - }, - "pf-t--global--spacer--800": { - "type": "number", - "value": "5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 80 - }, - "name": "pf-t--global--spacer--800", - "attributes": { - "category": "global", - "type": "spacer", - "item": "800" - }, - "path": [ - "global", - "spacer", - "800" - ] - }, - "pf-t--global--spacer--xs": { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - }, - "pf-t--global--spacer--sm": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - }, - "pf-t--global--spacer--md": { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - }, - "pf-t--global--spacer--lg": { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "{global.spacer.400}" - }, - "name": "pf-t--global--spacer--lg", - "attributes": { - "category": "global", - "type": "spacer", - "item": "lg" - }, - "path": [ - "global", - "spacer", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - } - ] - }, - "pf-t--global--spacer--xl": { - "description": "Use for extra large spaces between elements.", - "type": "number", - "value": "2rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for extra large spaces between elements.", - "type": "number", - "value": "{global.spacer.500}" - }, - "name": "pf-t--global--spacer--xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xl" - }, - "path": [ - "global", - "spacer", - "xl" - ], - "references": [ - { - "type": "number", - "value": "2rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 32 - }, - "name": "pf-t--global--spacer--500", - "attributes": { - "category": "global", - "type": "spacer", - "item": "500" - }, - "path": [ - "global", - "spacer", - "500" - ] - } - ] - }, - "pf-t--global--spacer--2xl": { - "description": "Use for double extra large spaces spacing between elements.", - "type": "number", - "value": "3rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for double extra large spaces spacing between elements.", - "type": "number", - "value": "{global.spacer.600}" - }, - "name": "pf-t--global--spacer--2xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "2xl" - }, - "path": [ - "global", - "spacer", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "3rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 48 - }, - "name": "pf-t--global--spacer--600", - "attributes": { - "category": "global", - "type": "spacer", - "item": "600" - }, - "path": [ - "global", - "spacer", - "600" - ] - } - ] - }, - "pf-t--global--spacer--3xl": { - "description": "Use for triple extra large spaces between elements.", - "type": "number", - "value": "4rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for triple extra large spaces between elements.", - "type": "number", - "value": "{global.spacer.700}" - }, - "name": "pf-t--global--spacer--3xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "3xl" - }, - "path": [ - "global", - "spacer", - "3xl" - ], - "references": [ - { - "type": "number", - "value": "4rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 64 - }, - "name": "pf-t--global--spacer--700", - "attributes": { - "category": "global", - "type": "spacer", - "item": "700" - }, - "path": [ - "global", - "spacer", - "700" - ] - } - ] - }, - "pf-t--global--spacer--4xl": { - "description": "Use for quadruple extra large spaces between elements.", - "type": "number", - "value": "5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for quadruple extra large spaces between elements.", - "type": "number", - "value": "{global.spacer.800}" - }, - "name": "pf-t--global--spacer--4xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "4xl" - }, - "path": [ - "global", - "spacer", - "4xl" - ], - "references": [ - { - "type": "number", - "value": "5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 80 - }, - "name": "pf-t--global--spacer--800", - "attributes": { - "category": "global", - "type": "spacer", - "item": "800" - }, - "path": [ - "global", - "spacer", - "800" - ] - } - ] - }, - "pf-t--global--spacer--control--vertical--default": { - "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", - "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--control--vertical--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "vertical", - "state": "default" - }, - "path": [ - "global", - "spacer", - "control", - "vertical", - "default" - ], - "references": [ - { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--control--vertical--compact": { - "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", - "type": "number", - "value": "{global.spacer.xs}" - }, - "name": "pf-t--global--spacer--control--vertical--compact", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "vertical", - "state": "compact" - }, - "path": [ - "global", - "spacer", - "control", - "vertical", - "compact" - ], - "references": [ - { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--control--vertical--plain": { - "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", - "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--control--vertical--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "vertical", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "control", - "vertical", - "plain" - ], - "references": [ - { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--control--horizontal--default": { - "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", - "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--control--horizontal--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "horizontal", - "state": "default" - }, - "path": [ - "global", - "spacer", - "control", - "horizontal", - "default" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--control--horizontal--plain": { - "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", - "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--control--horizontal--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "horizontal", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "control", - "horizontal", - "plain" - ], - "references": [ - { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--control--horizontal--compact": { - "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", - "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--control--horizontal--compact", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "horizontal", - "state": "compact" - }, - "path": [ - "global", - "spacer", - "control", - "horizontal", - "compact" - ], - "references": [ - { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--control--horizontal--spacious": { - "description": "Use to set the horizontal padding in large/display controls.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the horizontal padding in large/display controls.", - "type": "number", - "value": "{global.spacer.lg}" - }, - "name": "pf-t--global--spacer--control--horizontal--spacious", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "horizontal", - "state": "spacious" - }, - "path": [ - "global", - "spacer", - "control", - "horizontal", - "spacious" - ], - "references": [ - { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "{global.spacer.400}" - }, - "name": "pf-t--global--spacer--lg", - "attributes": { - "category": "global", - "type": "spacer", - "item": "lg" - }, - "path": [ - "global", - "spacer", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--gap--text-to-element--default": { - "description": "Use to space an element, like an icon or badge, inline with text", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to space an element, like an icon or badge, inline with text", - "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--gap--text-to-element--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "text-to-element", - "state": "default" - }, - "path": [ - "global", - "spacer", - "gap", - "text-to-element", - "default" - ], - "references": [ - { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--gap--control-to-control--default": { - "description": "Use to set the space between controls, like in input groups or filter groups", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the space between controls, like in input groups or filter groups", - "type": "number", - "value": "{global.spacer.xs}" - }, - "name": "pf-t--global--spacer--gap--control-to-control--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "control-to-control", - "state": "default" - }, - "path": [ - "global", - "spacer", - "gap", - "control-to-control", - "default" - ], - "references": [ - { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--gap--group--vertical": { - "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", - "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--gap--group--vertical", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "group", - "state": "vertical" - }, - "path": [ - "global", - "spacer", - "gap", - "group", - "vertical" - ], - "references": [ - { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--gap--group--horizontal": { - "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", - "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--gap--group--horizontal", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "group", - "state": "horizontal" - }, - "path": [ - "global", - "spacer", - "gap", - "group", - "horizontal" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--gap--group-to-group--horizontal": { - "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", - "type": "number", - "value": "3rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", - "type": "number", - "value": "{global.spacer.2xl}" - }, - "name": "pf-t--global--spacer--gap--group-to-group--horizontal", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "group-to-group", - "state": "horizontal" - }, - "path": [ - "global", - "spacer", - "gap", - "group-to-group", - "horizontal" - ], - "references": [ - { - "description": "Use for double extra large spaces spacing between elements.", - "type": "number", - "value": "3rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for double extra large spaces spacing between elements.", - "type": "number", - "value": "{global.spacer.600}" - }, - "name": "pf-t--global--spacer--2xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "2xl" - }, - "path": [ - "global", - "spacer", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "3rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 48 - }, - "name": "pf-t--global--spacer--600", - "attributes": { - "category": "global", - "type": "spacer", - "item": "600" - }, - "path": [ - "global", - "spacer", - "600" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--gap--group-to-group--vertical": { - "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", - "type": "number", - "value": "{global.spacer.lg}" - }, - "name": "pf-t--global--spacer--gap--group-to-group--vertical", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "group-to-group", - "state": "vertical" - }, - "path": [ - "global", - "spacer", - "gap", - "group-to-group", - "vertical" - ], - "references": [ - { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "{global.spacer.400}" - }, - "name": "pf-t--global--spacer--lg", - "attributes": { - "category": "global", - "type": "spacer", - "item": "lg" - }, - "path": [ - "global", - "spacer", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--gap--action-to-action--default": { - "description": "Use to set the space between actions, like in an action list group.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the space between actions, like in an action list group.", - "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--gap--action-to-action--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "action-to-action", - "state": "default" - }, - "path": [ - "global", - "spacer", - "gap", - "action-to-action", - "default" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--gap--action-to-action--plain": { - "description": "Use to set the space between plain actions, like in an action list group.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the space between plain actions, like in an action list group.", - "type": "number", - "value": "{global.spacer.xs}" - }, - "name": "pf-t--global--spacer--gap--action-to-action--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "action-to-action", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "gap", - "action-to-action", - "plain" - ], - "references": [ - { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--action--horizontal--default": { - "description": "Use to set the horizontal padding inside a default action, like buttons.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the horizontal padding inside a default action, like buttons.", - "type": "number", - "value": "{global.spacer.lg}" - }, - "name": "pf-t--global--spacer--action--horizontal--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "horizontal", - "state": "default" - }, - "path": [ - "global", - "spacer", - "action", - "horizontal", - "default" - ], - "references": [ - { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "{global.spacer.400}" - }, - "name": "pf-t--global--spacer--lg", - "attributes": { - "category": "global", - "type": "spacer", - "item": "lg" - }, - "path": [ - "global", - "spacer", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--action--horizontal--plain": { - "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", - "type": "number", - "value": "0.5rem", - "compact": { - "description": "Use to set the horizontal padding inside a compact, plain action/button.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false - }, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", - "type": "number", - "value": "{global.spacer.sm}", - "compact": { - "description": "Use to set the horizontal padding inside a compact, plain action/button.", - "type": "number", - "value": "{global.spacer.xs}", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false - } - }, - "name": "pf-t--global--spacer--action--horizontal--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "horizontal", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "action", - "horizontal", - "plain" - ], - "references": [ - { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--action--horizontal--compact": { - "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", - "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--action--horizontal--compact", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "horizontal", - "state": "compact" - }, - "path": [ - "global", - "spacer", - "action", - "horizontal", - "compact" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--action--horizontal--spacious": { - "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", - "type": "number", - "value": "2rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", - "type": "number", - "value": "{global.spacer.xl}" - }, - "name": "pf-t--global--spacer--action--horizontal--spacious", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "horizontal", - "state": "spacious" - }, - "path": [ - "global", - "spacer", - "action", - "horizontal", - "spacious" - ], - "references": [ - { - "description": "Use for extra large spaces between elements.", - "type": "number", - "value": "2rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for extra large spaces between elements.", - "type": "number", - "value": "{global.spacer.500}" - }, - "name": "pf-t--global--spacer--xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xl" - }, - "path": [ - "global", - "spacer", - "xl" - ], - "references": [ - { - "type": "number", - "value": "2rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 32 - }, - "name": "pf-t--global--spacer--500", - "attributes": { - "category": "global", - "type": "spacer", - "item": "500" - }, - "path": [ - "global", - "spacer", - "500" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--action--vertical--compact": { - "description": "Use to set the vertical padding inside a compact action, like compact buttons.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the vertical padding inside a compact action, like compact buttons.", - "type": "number", - "value": "{global.spacer.xs}" - }, - "name": "pf-t--global--spacer--action--vertical--compact", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "vertical", - "state": "compact" - }, - "path": [ - "global", - "spacer", - "action", - "vertical", - "compact" - ], - "references": [ - { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--action--vertical--spacious": { - "description": "Use to set the vertical padding inside a large/display action, like CTAs.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to set the vertical padding inside a large/display action, like CTAs.", - "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--action--vertical--spacious", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "vertical", - "state": "spacious" - }, - "path": [ - "global", - "spacer", - "action", - "vertical", - "spacious" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--100": { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--icon--size--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "size", - "100" - ] - }, - "pf-t--global--icon--size--200": { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--icon--size--200", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "icon", - "size", - "200" - ] - }, - "pf-t--global--icon--size--250": { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--icon--size--250", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "250" - }, - "path": [ - "global", - "icon", - "size", - "250" - ] - }, - "pf-t--global--icon--size--300": { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--icon--size--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "size", - "300" - ] - }, - "pf-t--global--icon--size--400": { - "type": "number", - "value": "3.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 56 - }, - "name": "pf-t--global--icon--size--400", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "icon", - "size", - "400" - ] - }, - "pf-t--global--icon--size--500": { - "type": "number", - "value": "6rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 96 - }, - "name": "pf-t--global--icon--size--500", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "icon", - "size", - "500" - ] - }, - "pf-t--global--icon--size--sm": { - "description": "Use for small icons.", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for small icons.", - "type": "number", - "value": "{global.icon.size.100}" - }, - "name": "pf-t--global--icon--size--sm", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "icon", - "size", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--icon--size--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "size", - "100" - ] - } - ] - }, - "pf-t--global--icon--size--md": { - "description": "Use for medium icons.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for medium icons.", - "type": "number", - "value": "{global.icon.size.200}" - }, - "name": "pf-t--global--icon--size--md", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "icon", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--icon--size--200", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "icon", - "size", - "200" - ] - } - ] - }, - "pf-t--global--icon--size--lg": { - "description": "Use for large icons.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for large icons.", - "type": "number", - "value": "{global.icon.size.250}" - }, - "name": "pf-t--global--icon--size--lg", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "icon", - "size", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--icon--size--250", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "250" - }, - "path": [ - "global", - "icon", - "size", - "250" - ] - } - ] - }, - "pf-t--global--icon--size--xl": { - "description": "Use for extra large icons.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for extra large icons.", - "type": "number", - "value": "{global.icon.size.300}" - }, - "name": "pf-t--global--icon--size--xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "icon", - "size", - "xl" - ], - "references": [ - { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--icon--size--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "size", - "300" - ] - } - ] - }, - "pf-t--global--icon--size--2xl": { - "description": "Use for double extra large icons.", - "type": "number", - "value": "3.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for double extra large icons.", - "type": "number", - "value": "{global.icon.size.400}" - }, - "name": "pf-t--global--icon--size--2xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "icon", - "size", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "3.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 56 - }, - "name": "pf-t--global--icon--size--400", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "icon", - "size", - "400" - ] - } - ] - }, - "pf-t--global--icon--size--3xl": { - "description": "Use for triple extra large icons.", - "type": "number", - "value": "6rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for triple extra large icons.", - "type": "number", - "value": "{global.icon.size.500}" - }, - "name": "pf-t--global--icon--size--3xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "3xl" - }, - "path": [ - "global", - "icon", - "size", - "3xl" - ], - "references": [ - { - "type": "number", - "value": "6rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 96 - }, - "name": "pf-t--global--icon--size--500", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "icon", - "size", - "500" - ] - } - ] - }, - "pf-t--global--icon--size--font--heading--h1": { - "description": "Use for icons that are placed inline with first level headings", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with first level headings", - "type": "number", - "value": "{global.font.size.heading.h1}" - }, - "name": "pf-t--global--icon--size--font--heading--h1", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h1" - ], - "references": [ - { - "description": "Use as the font size for first level headings.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for first level headings.", - "type": "number", - "value": "{global.font.size.2xl}" - }, - "name": "pf-t--global--font--size--heading--h1", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h1" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h1" - ], - "references": [ - { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--heading--h2": { - "description": "Use for icons that are placed inline with second level headings", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with second level headings", - "type": "number", - "value": "{global.font.size.heading.h2}" - }, - "name": "pf-t--global--icon--size--font--heading--h2", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h2" - ], - "references": [ - { - "description": "Use as the font size for second level headings.", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for second level headings.", - "type": "number", - "value": "{global.font.size.xl}" - }, - "name": "pf-t--global--font--size--heading--h2", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h2" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h2" - ], - "references": [ - { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.500}" - }, - "name": "pf-t--global--font--size--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "font", - "size", - "xl" - ], - "references": [ - { - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--heading--h3": { - "description": "Use for icons that are placed inline with third level headings", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with third level headings", - "type": "number", - "value": "{global.font.size.heading.h3}" - }, - "name": "pf-t--global--icon--size--font--heading--h3", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h3" - ], - "references": [ - { - "description": "Use as the font size for third level headings.", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for third level headings.", - "type": "number", - "value": "{global.font.size.lg}" - }, - "name": "pf-t--global--font--size--heading--h3", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h3" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h3" - ], - "references": [ - { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.400}" - }, - "name": "pf-t--global--font--size--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "font", - "size", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--heading--h4": { - "description": "Use for icons that are placed inline with fourth level headings", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with fourth level headings", - "type": "number", - "value": "{global.font.size.heading.h4}" - }, - "name": "pf-t--global--icon--size--font--heading--h4", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h4" - ], - "references": [ - { - "description": "Use as the font size for fourth-level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for fourth-level headings.", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h4", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h4" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h4" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--heading--h5": { - "description": "Use for icons that are placed inline with fifth level headings", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with fifth level headings", - "type": "number", - "value": "{global.font.size.heading.h5}" - }, - "name": "pf-t--global--icon--size--font--heading--h5", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h5" - ], - "references": [ - { - "description": "Use as the font size for fifth level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for fifth level headings.", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h5", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h5" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h5" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--heading--h6": { - "description": "Use for icons that are placed inline with sixth level headings", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with sixth level headings", - "type": "number", - "value": "{global.font.size.heading.h6}" - }, - "name": "pf-t--global--icon--size--font--heading--h6", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h6" - ], - "references": [ - { - "description": "Use as the font size for sixth level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for sixth level headings.", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h6", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h6" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h6" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--body--sm": { - "description": "Use for icons that are placed inline with small body text", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with small body text", - "type": "number", - "value": "{global.font.size.body.sm}" - }, - "name": "pf-t--global--icon--size--font--body--sm", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "body" - }, - "path": [ - "global", - "icon", - "size", - "font", - "body", - "sm" - ], - "references": [ - { - "description": "Use for a smaller font size in body sections.", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for a smaller font size in body sections.", - "type": "number", - "value": "{global.font.size.xs}" - }, - "name": "pf-t--global--font--size--body--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "sm" - }, - "path": [ - "global", - "font", - "size", - "body", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--body--default": { - "description": "Use for icons that are placed inline with default body text", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with default body text", - "type": "number", - "value": "{global.font.size.body.default}" - }, - "name": "pf-t--global--icon--size--font--body--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "body" - }, - "path": [ - "global", - "icon", - "size", - "font", - "body", - "default" - ], - "references": [ - { - "description": "Use as the default font size in body sections.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the default font size in body sections.", - "type": "number", - "value": "{global.font.size.sm}" - }, - "name": "pf-t--global--font--size--body--default", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "default" - }, - "path": [ - "global", - "font", - "size", - "body", - "default" - ], - "references": [ - { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--body--lg": { - "description": "Use for icons that are placed inline with large body text", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with large body text", - "type": "number", - "value": "{global.font.size.body.lg}" - }, - "name": "pf-t--global--icon--size--font--body--lg", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "body" - }, - "path": [ - "global", - "icon", - "size", - "font", - "body", - "lg" - ], - "references": [ - { - "description": "Use for a larger font size in body sections.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for a larger font size in body sections.", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--body--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "lg" - }, - "path": [ - "global", - "font", - "size", - "body", - "lg" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--xs": { - "description": "Use for icons that are placed inline with font–size–xs text", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with font–size–xs text", - "type": "number", - "value": "{global.font.size.xs}" - }, - "name": "pf-t--global--icon--size--font--xs", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "xs" - }, - "path": [ - "global", - "icon", - "size", - "font", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--sm": { - "description": "Use for icons that are placed inline with font–size–sm text", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with font–size–sm text", - "type": "number", - "value": "{global.font.size.sm}" - }, - "name": "pf-t--global--icon--size--font--sm", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "sm" - }, - "path": [ - "global", - "icon", - "size", - "font", - "sm" - ], - "references": [ - { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--md": { - "description": "Use for icons that are placed inline with font–size–md text", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with font–size–md text", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--icon--size--font--md", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "md" - }, - "path": [ - "global", - "icon", - "size", - "font", - "md" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--lg": { - "description": "Use for icons that are placed inline with font–size–lg text", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with font–size–lg text", - "type": "number", - "value": "{global.font.size.lg}" - }, - "name": "pf-t--global--icon--size--font--lg", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "lg" - }, - "path": [ - "global", - "icon", - "size", - "font", - "lg" - ], - "references": [ - { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.400}" - }, - "name": "pf-t--global--font--size--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "font", - "size", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--xl": { - "description": "Use for icons that are placed inline with font–size–xl text", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with font–size–xl text", - "type": "number", - "value": "{global.font.size.xl}" - }, - "name": "pf-t--global--icon--size--font--xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "xl" - }, - "path": [ - "global", - "icon", - "size", - "font", - "xl" - ], - "references": [ - { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.500}" - }, - "name": "pf-t--global--font--size--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "font", - "size", - "xl" - ], - "references": [ - { - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--2xl": { - "description": "Use for icons that are placed inline with font–size–2xl text", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with font–size–2xl text", - "type": "number", - "value": "{global.font.size.2xl}" - }, - "name": "pf-t--global--icon--size--font--2xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "2xl" - }, - "path": [ - "global", - "icon", - "size", - "font", - "2xl" - ], - "references": [ - { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--3xl": { - "description": "Use for icons that are placed inline with font–size–3xl text", - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with font–size–3xl text", - "type": "number", - "value": "{global.font.size.3xl}" - }, - "name": "pf-t--global--icon--size--font--3xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "3xl" - }, - "path": [ - "global", - "icon", - "size", - "font", - "3xl" - ], - "references": [ - { - "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.700}" - }, - "name": "pf-t--global--font--size--3xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "3xl" - }, - "path": [ - "global", - "font", - "size", - "3xl" - ], - "references": [ - { - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 28 - }, - "name": "pf-t--global--font--size--700", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "700" - }, - "path": [ - "global", - "font", - "size", - "700" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--4xl": { - "description": "Use for icons that are placed inline with font–size–3xl text", - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for icons that are placed inline with font–size–3xl text", - "type": "number", - "value": "{global.font.size.4xl}" - }, - "name": "pf-t--global--icon--size--font--4xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "4xl" - }, - "path": [ - "global", - "icon", - "size", - "font", - "4xl" - ], - "references": [ - { - "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.800}" - }, - "name": "pf-t--global--font--size--4xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "4xl" - }, - "path": [ - "global", - "font", - "size", - "4xl" - ], - "references": [ - { - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 36 - }, - "name": "pf-t--global--font--size--800", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "800" - }, - "path": [ - "global", - "font", - "size", - "800" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--100": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - }, - "pf-t--global--icon--color--200": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--icon--color--200", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "icon", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - }, - "pf-t--global--icon--color--300": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - }, - "pf-t--global--icon--color--brand--default": { - "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--icon--color--brand--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "brand", - "state": "default" - }, - "path": [ - "global", - "icon", - "color", - "brand", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--brand--hover": { - "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "{global.dark.color.brand.300}" - }, - "name": "pf-t--global--icon--color--brand--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "brand", - "state": "hover" - }, - "path": [ - "global", - "icon", - "color", - "brand", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--color--brand--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--brand--clicked": { - "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "{global.dark.color.brand.300}" - }, - "name": "pf-t--global--icon--color--brand--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "brand", - "state": "clicked" - }, - "path": [ - "global", - "icon", - "color", - "brand", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--color--brand--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--on-brand--default": { - "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--on-brand--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "on-brand", - "state": "default" - }, - "path": [ - "global", - "icon", - "color", - "on-brand", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--on-brand--hover": { - "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--on-brand--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "on-brand", - "state": "hover" - }, - "path": [ - "global", - "icon", - "color", - "on-brand", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--on-brand--clicked": { - "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--on-brand--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "on-brand", - "state": "clicked" - }, - "path": [ - "global", - "icon", - "color", - "on-brand", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--favorite--default": { - "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "{global.color.favorite.default}" - }, - "name": "pf-t--global--icon--color--favorite--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "favorite", - "state": "default" - }, - "path": [ - "global", - "icon", - "color", - "favorite", - "default" - ], - "references": [ - { - "description": "Use as the default color for elements that have been favorited", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for elements that have been favorited", - "type": "color", - "value": "{global.dark.color.favorite.100}" - }, - "name": "pf-t--global--color--favorite--default", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "default" - }, - "path": [ - "global", - "color", - "favorite", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--favorite--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "favorite", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "favorite", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--favorite--hover": { - "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "{global.color.favorite.hover}" - }, - "name": "pf-t--global--icon--color--favorite--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "favorite", - "state": "hover" - }, - "path": [ - "global", - "icon", - "color", - "favorite", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for elements that have been favorited", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for elements that have been favorited", - "type": "color", - "value": "{global.dark.color.favorite.200}" - }, - "name": "pf-t--global--color--favorite--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "favorite", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--favorite--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "favorite", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "favorite", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--favorite--clicked": { - "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "{global.color.favorite.clicked}" - }, - "name": "pf-t--global--icon--color--favorite--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "favorite", - "state": "clicked" - }, - "path": [ - "global", - "icon", - "color", - "favorite", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for elements that have been favorited", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for elements that have been favorited", - "type": "color", - "value": "{global.dark.color.favorite.200}" - }, - "name": "pf-t--global--color--favorite--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "favorite", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--favorite--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "favorite", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "favorite", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--success--default": { - "description": "Use as the default color for text that communicates a success status.", - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that communicates a success status.", - "type": "color", - "value": "{global.color.status.success.default}" - }, - "name": "pf-t--global--icon--color--status--success--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "{global.dark.color.status.success.100}" - }, - "name": "pf-t--global--color--status--success--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--dark--color--status--success--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--success--hover": { - "description": "Use as the hover state color for text that communicates a success status.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that communicates a success status.", - "type": "color", - "value": "{global.color.status.success.hover}" - }, - "name": "pf-t--global--icon--color--status--success--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "{global.dark.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--success--clicked": { - "description": "Use as the clicked state color for text that communicates a success status.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that communicates a success status.", - "type": "color", - "value": "{global.color.status.success.clicked}" - }, - "name": "pf-t--global--icon--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "{global.dark.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-success--default": { - "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-success--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-success", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-success--hover": { - "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-success--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-success", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-success--clicked": { - "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-success--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-success", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--warning--default": { - "description": "Use as the default color for text that communicates a warning status.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that communicates a warning status.", - "type": "color", - "value": "{global.color.status.warning.default}" - }, - "name": "pf-t--global--icon--color--status--warning--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "warning", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", - "type": "color", - "value": "{global.dark.color.status.warning.100}" - }, - "name": "pf-t--global--color--status--warning--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "warning", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--status--warning--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--warning--hover": { - "description": "Use as the hover state color for text that communicates a warning status.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that communicates a warning status.", - "type": "color", - "value": "{global.color.status.warning.hover}" - }, - "name": "pf-t--global--icon--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a warning status.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a warning status.", - "type": "color", - "value": "{global.dark.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--warning--clicked": { - "description": "Use as the clicked state color for text that communicates a warning status.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that communicates a warning status.", - "type": "color", - "value": "{global.color.status.warning.clicked}" - }, - "name": "pf-t--global--icon--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a warning status.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a warning status.", - "type": "color", - "value": "{global.dark.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-warning--default": { - "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-warning--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-warning", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-warning--hover": { - "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-warning--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-warning", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-warning--clicked": { - "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-warning--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-warning", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--danger--default": { - "description": "Use as the default color for icons that convey danger, like in alerts or banners.", - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that convey danger, like in alerts or banners.", - "type": "color", - "value": "{global.color.status.danger.default}" - }, - "name": "pf-t--global--icon--color--status--danger--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "{global.dark.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--global--dark--color--status--danger--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--danger--hover": { - "description": "Use as the hover state for icons that indicate danger.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for icons that indicate danger.", - "type": "color", - "value": "{global.color.status.danger.hover}" - }, - "name": "pf-t--global--icon--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "{global.dark.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--danger--clicked": { - "description": "Use as the clicked state for icons that indicate danger.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for icons that indicate danger.", - "type": "color", - "value": "{global.color.status.danger.clicked}" - }, - "name": "pf-t--global--icon--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "{global.dark.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-danger--default": { - "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-danger--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-danger", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-danger--hover": { - "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-danger--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-danger", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-danger--clicked": { - "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-danger--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-danger", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--info--default": { - "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", - "type": "color", - "value": "{global.color.status.info.default}" - }, - "name": "pf-t--global--icon--color--status--info--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "{global.dark.color.status.info.100}" - }, - "name": "pf-t--global--color--status--info--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--color--status--info--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--info--hover": { - "description": "Use as the hover state for icons that identify informational messages.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for icons that identify informational messages.", - "type": "color", - "value": "{global.color.status.info.hover}" - }, - "name": "pf-t--global--icon--color--status--info--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "{global.dark.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--info--clicked": { - "description": "Use as the clicked state for icons that identify informational messages.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for icons that identify informational messages.", - "type": "color", - "value": "{global.color.status.info.clicked}" - }, - "name": "pf-t--global--icon--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "{global.dark.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-info--default": { - "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-info--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-info", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-info--hover": { - "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-info--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-info", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-info--clicked": { - "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-info--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-info", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--custom--default": { - "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.color.status.custom.default}" - }, - "name": "pf-t--global--icon--color--status--custom--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.dark.color.status.custom.100}" - }, - "name": "pf-t--global--color--status--custom--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--dark--color--status--custom--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--custom--hover": { - "description": "Use as the hover state for icons that convey generic status with no associated severity.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for icons that convey generic status with no associated severity.", - "type": "color", - "value": "{global.color.status.custom.hover}" - }, - "name": "pf-t--global--icon--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.dark.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--custom--clicked": { - "description": "Use as the clicked state for icons that convey generic status with no associated severity.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for icons that convey generic status with no associated severity.", - "type": "color", - "value": "{global.color.status.custom.clicked}" - }, - "name": "pf-t--global--icon--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.dark.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-custom--default": { - "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-custom--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-custom", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-custom--hover": { - "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-custom--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-custom", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-custom--clicked": { - "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-custom--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-custom", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--unread--on-default--default": { - "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-default--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-default", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--unread--on-default--hover": { - "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-default--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-default", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--unread--on-default--clicked": { - "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-default--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-default", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--unread--on-attention--default": { - "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-attention--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-attention", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--unread--on-attention--hover": { - "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-attention--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-attention", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--unread--on-attention--clicked": { - "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-attention--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-attention", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--regular": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.dark.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--dark--icon--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--subtle": { - "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", - "type": "color", - "value": "{global.dark.icon.color.200}" - }, - "name": "pf-t--global--icon--color--subtle", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "subtle" - }, - "path": [ - "global", - "icon", - "color", - "subtle" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--icon--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--inverse": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--disabled": { - "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", - "type": "color", - "value": "{global.dark.color.disabled.200}" - }, - "name": "pf-t--global--icon--color--disabled", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "disabled" - }, - "path": [ - "global", - "icon", - "color", - "disabled" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--dark--color--disabled--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "200" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--on-disabled": { - "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", - "type": "color", - "value": "{global.dark.color.disabled.300}" - }, - "name": "pf-t--global--icon--color--on-disabled", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "on-disabled" - }, - "path": [ - "global", - "icon", - "color", - "on-disabled" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--color--disabled--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "300" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--severity--undefined--default": { - "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", - "type": "color", - "value": "{global.dark.color.severity.undefined.100}" - }, - "name": "pf-t--global--icon--color--severity--undefined--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "undefined" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "undefined", - "default" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--color--severity--undefined--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "undefined" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "undefined", - "100" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--severity--none--default": { - "description": "Use as the default color for severity icons that identify no issues.", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for severity icons that identify no issues.", - "type": "color", - "value": "{global.dark.color.severity.none.100}" - }, - "name": "pf-t--global--icon--color--severity--none--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "none" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "none", - "default" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--severity--none--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "none" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "none", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--severity--minor--default": { - "description": "Use as the default color for severity icons that identify issues of minor severity.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for severity icons that identify issues of minor severity.", - "type": "color", - "value": "{global.dark.color.severity.minor.100}" - }, - "name": "pf-t--global--icon--color--severity--minor--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "minor" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "minor", - "default" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--dark--color--severity--minor--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "minor" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "minor", - "100" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--severity--moderate--default": { - "description": "Use as the default color for severity icons that identify issues of moderate severity.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for severity icons that identify issues of moderate severity.", - "type": "color", - "value": "{global.dark.color.severity.moderate.100}" - }, - "name": "pf-t--global--icon--color--severity--moderate--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "moderate" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "moderate", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--severity--moderate--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "moderate" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "moderate", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--severity--important--default": { - "description": "Use as the default color for severity icons that identify issues of important severity.", - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for severity icons that identify issues of important severity.", - "type": "color", - "value": "{global.dark.color.severity.important.100}" - }, - "name": "pf-t--global--icon--color--severity--important--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "important" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "important", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--global--dark--color--severity--important--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "important" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "important", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--severity--critical--default": { - "description": "Use as the default color for severity icons that identify issues of critical severity.", - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for severity icons that identify issues of critical severity.", - "type": "color", - "value": "{global.dark.color.severity.critical.100}" - }, - "name": "pf-t--global--icon--color--severity--critical--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "critical" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "critical", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--global--dark--color--severity--critical--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "critical" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "critical", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-red--default": { - "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-red--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-red", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-red--hover": { - "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-red--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-red", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-red--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-red--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-red", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-orangered--default": { - "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orangered--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orangered", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-orangered--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orangered--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orangered", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-orangered--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orangered--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orangered", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-orange--default": { - "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orange--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orange", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-orange--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orange--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orange", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-orange--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orange--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orange", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-yellow--default": { - "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-yellow--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-yellow", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-yellow--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-yellow--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-yellow", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-yellow--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-yellow--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-yellow", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-green--default": { - "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-green--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-green", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-green--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-green--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-green", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-green--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-green--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-green", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-teal--default": { - "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-teal--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-teal", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-teal--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-teal--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-teal", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-teal--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-teal--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-teal", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-blue--default": { - "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-blue--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-blue", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-blue--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-blue--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-blue", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-blue--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-blue--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-blue", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-purple--default": { - "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-purple--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-purple", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-purple--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-purple--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-purple", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-purple--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-purple--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-purple", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-gray--default": { - "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-gray--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-gray", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-gray--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-gray--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-gray", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-gray--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-gray--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-gray", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--width--100": { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - }, - "pf-t--global--border--width--200": { - "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - }, - "pf-t--global--border--width--300": { - "type": "number", - "value": "3px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 3 - }, - "name": "pf-t--global--border--width--300", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "300" - }, - "path": [ - "global", - "border", - "width", - "300" - ] - }, - "pf-t--global--border--width--regular": { - "description": "Use as the default border width for elements.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the default border width for elements.", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--regular", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "regular" - }, - "path": [ - "global", - "border", - "width", - "regular" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--divider--default": { - "description": "Use as the default border width for dividers.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the default border width for dividers.", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--divider--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "divider", - "state": "default" - }, - "path": [ - "global", - "border", - "width", - "divider", - "default" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--divider--hover": { - "description": "Use as the border width hover state for dividers.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the border width hover state for dividers.", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--divider--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "divider", - "state": "hover" - }, - "path": [ - "global", - "border", - "width", - "divider", - "hover" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--divider--clicked": { - "description": "Use as the border width clicked state for dividers.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the border width clicked state for dividers.", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--divider--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "divider", - "state": "clicked" - }, - "path": [ - "global", - "border", - "width", - "divider", - "clicked" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--strong": { - "description": "Use as a stronger/wider border width for elements.", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as a stronger/wider border width for elements.", - "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--strong", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "strong" - }, - "path": [ - "global", - "border", - "width", - "strong" - ], - "references": [ - { - "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] - }, - "pf-t--global--border--width--extra-strong": { - "description": "Use as the strongest/widest border width for elements.", - "type": "number", - "value": "3px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the strongest/widest border width for elements.", - "type": "number", - "value": "{global.border.width.300}" - }, - "name": "pf-t--global--border--width--extra-strong", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "extra-strong" - }, - "path": [ - "global", - "border", - "width", - "extra-strong" - ], - "references": [ - { - "type": "number", - "value": "3px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 3 - }, - "name": "pf-t--global--border--width--300", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "300" - }, - "path": [ - "global", - "border", - "width", - "300" - ] - } - ] - }, - "pf-t--global--border--width--box--default": { - "description": "Use as the default border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the default border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--box--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "default" - }, - "path": [ - "global", - "border", - "width", - "box", - "default" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--box--hover": { - "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--box--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "hover" - }, - "path": [ - "global", - "border", - "width", - "box", - "hover" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--box--clicked": { - "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--box--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "clicked" - }, - "path": [ - "global", - "border", - "width", - "box", - "clicked" - ], - "references": [ - { - "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] - }, - "pf-t--global--border--width--box--status--default": { - "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", - "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--box--status--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "status" - }, - "path": [ - "global", - "border", - "width", - "box", - "status", - "default" - ], - "references": [ - { - "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] - }, - "pf-t--global--border--width--box--status--read": { - "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--box--status--read", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "status" - }, - "path": [ - "global", - "border", - "width", - "box", - "status", - "read" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--action--default": { - "description": "Use as the default border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the default border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--action--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "action", - "state": "default" - }, - "path": [ - "global", - "border", - "width", - "action", - "default" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--action--hover": { - "description": "Use as the hover state border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the hover state border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--action--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "action", - "state": "hover" - }, - "path": [ - "global", - "border", - "width", - "action", - "hover" - ], - "references": [ - { - "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] - }, - "pf-t--global--border--width--action--clicked": { - "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--action--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "action", - "state": "clicked" - }, - "path": [ - "global", - "border", - "width", - "action", - "clicked" - ], - "references": [ - { - "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] - }, - "pf-t--global--border--width--control--default": { - "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--control--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "control", - "state": "default" - }, - "path": [ - "global", - "border", - "width", - "control", - "default" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--control--hover": { - "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--control--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "control", - "state": "hover" - }, - "path": [ - "global", - "border", - "width", - "control", - "hover" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--control--clicked": { - "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--control--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "control", - "state": "clicked" - }, - "path": [ - "global", - "border", - "width", - "control", - "clicked" - ], - "references": [ - { - "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] - }, - "pf-t--global--border--radius--0": { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--border--radius--0", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "0" - }, - "path": [ - "global", - "border", - "radius", - "0" - ] - }, - "pf-t--global--border--radius--100": { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--border--radius--100", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "100" - }, - "path": [ - "global", - "border", - "radius", - "100" - ] - }, - "pf-t--global--border--radius--200": { - "type": "number", - "value": "6px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 6 - }, - "name": "pf-t--global--border--radius--200", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "200" - }, - "path": [ - "global", - "border", - "radius", - "200" - ] - }, - "pf-t--global--border--radius--300": { - "type": "number", - "value": "16px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--border--radius--300", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "300" - }, - "path": [ - "global", - "border", - "radius", - "300" - ] - }, - "pf-t--global--border--radius--400": { - "type": "number", - "value": "24px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--border--radius--400", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "400" - }, - "path": [ - "global", - "border", - "radius", - "400" - ] - }, - "pf-t--global--border--radius--500": { - "type": "number", - "value": "999px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 999 - }, - "name": "pf-t--global--border--radius--500", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "500" - }, - "path": [ - "global", - "border", - "radius", - "500" - ] - }, - "pf-t--global--border--radius--sharp": { - "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", - "type": "number", - "value": "{global.border.radius.0}" - }, - "name": "pf-t--global--border--radius--sharp", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "sharp" - }, - "path": [ - "global", - "border", - "radius", - "sharp" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--border--radius--0", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "0" - }, - "path": [ - "global", - "border", - "radius", - "0" - ] - } - ] - }, - "pf-t--global--border--radius--tiny": { - "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", - "type": "number", - "value": "{global.border.radius.100}" - }, - "name": "pf-t--global--border--radius--tiny", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "tiny" - }, - "path": [ - "global", - "border", - "radius", - "tiny" - ], - "references": [ - { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--border--radius--100", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "100" - }, - "path": [ - "global", - "border", - "radius", - "100" - ] - } - ] - }, - "pf-t--global--border--radius--small": { - "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", - "type": "number", - "value": "6px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", - "type": "number", - "value": "{global.border.radius.200}" - }, - "name": "pf-t--global--border--radius--small", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "small" - }, - "path": [ - "global", - "border", - "radius", - "small" - ], - "references": [ - { - "type": "number", - "value": "6px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 6 - }, - "name": "pf-t--global--border--radius--200", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "200" - }, - "path": [ - "global", - "border", - "radius", - "200" - ] - } - ] - }, - "pf-t--global--border--radius--medium": { - "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", - "type": "number", - "value": "16px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", - "type": "number", - "value": "{global.border.radius.300}" - }, - "name": "pf-t--global--border--radius--medium", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "medium" - }, - "path": [ - "global", - "border", - "radius", - "medium" - ], - "references": [ - { - "type": "number", - "value": "16px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--border--radius--300", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "300" - }, - "path": [ - "global", - "border", - "radius", - "300" - ] - } - ] - }, - "pf-t--global--border--radius--large": { - "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", - "type": "number", - "value": "24px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", - "type": "number", - "value": "{global.border.radius.400}" - }, - "name": "pf-t--global--border--radius--large", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "large" - }, - "path": [ - "global", - "border", - "radius", - "large" - ], - "references": [ - { - "type": "number", - "value": "24px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--border--radius--400", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "400" - }, - "path": [ - "global", - "border", - "radius", - "400" - ] - } - ] - }, - "pf-t--global--border--radius--pill": { - "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", - "type": "number", - "value": "999px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", - "type": "number", - "value": "{global.border.radius.500}" - }, - "name": "pf-t--global--border--radius--pill", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "pill" - }, - "path": [ - "global", - "border", - "radius", - "pill" - ], - "references": [ - { - "type": "number", - "value": "999px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 999 - }, - "name": "pf-t--global--border--radius--500", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "500" - }, - "path": [ - "global", - "border", - "radius", - "500" - ] - } - ] - }, - "pf-t--global--border--color--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--border--color--100", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "border", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, - "pf-t--global--border--color--200": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--border--color--200", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "border", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - }, - "pf-t--global--border--color--300": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--border--color--300", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "border", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - }, - "pf-t--global--border--color--brand--default": { - "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "{global.color.brand.default}" - }, - "name": "pf-t--global--border--color--brand--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "brand", - "state": "default" - }, - "path": [ - "global", - "border", - "color", - "brand", - "default" - ], - "references": [ - { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "{global.dark.color.brand.100}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--brand--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--brand--hover": { - "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "{global.color.brand.hover}" - }, - "name": "pf-t--global--border--color--brand--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "brand", - "state": "hover" - }, - "path": [ - "global", - "border", - "color", - "brand", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--brand--clicked": { - "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "{global.color.brand.clicked}" - }, - "name": "pf-t--global--border--color--brand--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "brand", - "state": "clicked" - }, - "path": [ - "global", - "border", - "color", - "brand", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--success--default": { - "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.success.default}" - }, - "name": "pf-t--global--border--color--status--success--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "border", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "{global.dark.color.status.success.100}" - }, - "name": "pf-t--global--color--status--success--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--dark--color--status--success--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--success--hover": { - "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", - "type": "color", - "value": "{global.color.status.success.hover}" - }, - "name": "pf-t--global--border--color--status--success--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "border", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "{global.dark.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--success--clicked": { - "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", - "type": "color", - "value": "{global.color.status.success.clicked}" - }, - "name": "pf-t--global--border--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "border", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "{global.dark.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--warning--default": { - "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.warning.default}" - }, - "name": "pf-t--global--border--color--status--warning--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "border", - "color", - "status", - "warning", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", - "type": "color", - "value": "{global.dark.color.status.warning.100}" - }, - "name": "pf-t--global--color--status--warning--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "warning", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--status--warning--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--warning--hover": { - "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.warning.hover}" - }, - "name": "pf-t--global--border--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "border", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a warning status.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a warning status.", - "type": "color", - "value": "{global.dark.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--warning--clicked": { - "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.warning.clicked}" - }, - "name": "pf-t--global--border--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "border", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a warning status.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a warning status.", - "type": "color", - "value": "{global.dark.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--danger--default": { - "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.danger.default}" - }, - "name": "pf-t--global--border--color--status--danger--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "border", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "{global.dark.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--global--dark--color--status--danger--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--danger--hover": { - "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.danger.hover}" - }, - "name": "pf-t--global--border--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "border", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "{global.dark.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--danger--clicked": { - "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.danger.clicked}" - }, - "name": "pf-t--global--border--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "border", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "{global.dark.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--info--default": { - "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.info.default}" - }, - "name": "pf-t--global--border--color--status--info--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "border", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "{global.dark.color.status.info.100}" - }, - "name": "pf-t--global--color--status--info--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--color--status--info--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--info--hover": { - "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.info.hover}" - }, - "name": "pf-t--global--border--color--status--info--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "border", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "{global.dark.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--info--clicked": { - "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.info.clicked}" - }, - "name": "pf-t--global--border--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "border", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "{global.dark.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--custom--default": { - "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.custom.default}" - }, - "name": "pf-t--global--border--color--status--custom--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "border", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.dark.color.status.custom.100}" - }, - "name": "pf-t--global--color--status--custom--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--dark--color--status--custom--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--custom--hover": { - "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.custom.hover}" - }, - "name": "pf-t--global--border--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "border", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.dark.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--custom--clicked": { - "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.custom.clicked}" - }, - "name": "pf-t--global--border--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "border", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.dark.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--default": { - "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "{global.dark.border.color.200}" - }, - "name": "pf-t--global--border--color--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "default" - }, - "path": [ - "global", - "border", - "color", - "default" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--border--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "border", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "border", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--hover": { - "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "{global.dark.color.brand.100}" - }, - "name": "pf-t--global--border--color--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "hover" - }, - "path": [ - "global", - "border", - "color", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--brand--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--clicked": { - "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--border--color--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "clicked" - }, - "path": [ - "global", - "border", - "color", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--disabled": { - "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "{global.dark.color.disabled.200}" - }, - "name": "pf-t--global--border--color--disabled", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "disabled" - }, - "path": [ - "global", - "border", - "color", - "disabled" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--dark--color--disabled--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "200" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--alt": { - "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", - "type": "color", - "value": "{global.background.color.primary.default}" - }, - "name": "pf-t--global--border--color--alt", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "alt" - }, - "path": [ - "global", - "border", - "color", - "alt" - ], - "references": [ - { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", - "type": "color", - "value": "{global.dark.background.color.200}" - }, - "name": "pf-t--global--background--color--primary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "primary", - "default" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--on-secondary": { - "description": "Use on borders/dividers that are placed on a secondary bkg color.", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use on borders/dividers that are placed on a secondary bkg color.", - "type": "color", - "value": "{global.dark.border.color.200}" - }, - "name": "pf-t--global--border--color--on-secondary", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "on-secondary" - }, - "path": [ - "global", - "border", - "color", - "on-secondary" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--border--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "border", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "border", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--red--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.dark.color.nonstatus.red.100}" - }, - "name": "pf-t--global--border--color--nonstatus--red--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "red", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--red--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.red.200}" - }, - "name": "pf-t--global--border--color--nonstatus--red--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "red", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--red--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.red.200}" - }, - "name": "pf-t--global--border--color--nonstatus--red--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "red", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--orangered--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.orangered.100}" - }, - "name": "pf-t--global--border--color--nonstatus--orangered--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orangered", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--orangered--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.orangered.200}" - }, - "name": "pf-t--global--border--color--nonstatus--orangered--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orangered", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--orangered--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.orangered.200}" - }, - "name": "pf-t--global--border--color--nonstatus--orangered--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orangered", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--orange--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.orange.100}" - }, - "name": "pf-t--global--border--color--nonstatus--orange--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orange", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--orange--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.orange.200}" - }, - "name": "pf-t--global--border--color--nonstatus--orange--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orange", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--orange--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.orange.200}" - }, - "name": "pf-t--global--border--color--nonstatus--orange--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orange", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--yellow--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.yellow.100}" - }, - "name": "pf-t--global--border--color--nonstatus--yellow--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "yellow", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--yellow--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.yellow.200}" - }, - "name": "pf-t--global--border--color--nonstatus--yellow--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "yellow", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--yellow--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.yellow.200}" - }, - "name": "pf-t--global--border--color--nonstatus--yellow--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "yellow", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--green--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.green.100}" - }, - "name": "pf-t--global--border--color--nonstatus--green--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "green", - "default" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--green--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.green.200}" - }, - "name": "pf-t--global--border--color--nonstatus--green--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "green", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--green--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.green.200}" - }, - "name": "pf-t--global--border--color--nonstatus--green--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "green", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--teal--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.teal.100}" - }, - "name": "pf-t--global--border--color--nonstatus--teal--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "teal", - "default" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--teal--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.teal.200}" - }, - "name": "pf-t--global--border--color--nonstatus--teal--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "teal", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--teal--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.teal.200}" - }, - "name": "pf-t--global--border--color--nonstatus--teal--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "teal", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--blue--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.blue.100}" - }, - "name": "pf-t--global--border--color--nonstatus--blue--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "blue", - "default" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--blue--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.blue.200}" - }, - "name": "pf-t--global--border--color--nonstatus--blue--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "blue", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--blue--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.blue.200}" - }, - "name": "pf-t--global--border--color--nonstatus--blue--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "blue", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--purple--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.purple.100}" - }, - "name": "pf-t--global--border--color--nonstatus--purple--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "purple", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--purple--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.purple.200}" - }, - "name": "pf-t--global--border--color--nonstatus--purple--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "purple", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--purple--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.purple.200}" - }, - "name": "pf-t--global--border--color--nonstatus--purple--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "purple", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--gray--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.gray.100}" - }, - "name": "pf-t--global--border--color--nonstatus--gray--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "gray", - "default" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "100" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--gray--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.gray.200}" - }, - "name": "pf-t--global--border--color--nonstatus--gray--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "gray", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--gray--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "{global.dark.color.nonstatus.gray.200}" - }, - "name": "pf-t--global--border--color--nonstatus--gray--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "gray", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--font--family--100": { - "type": "string", - "value": "Red Hat Text VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "string", - "value": "Red Hat Text VF" - }, - "name": "pf-t--global--font--family--100", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "100" - }, - "path": [ - "global", - "font", - "family", - "100" - ] - }, - "pf-t--global--font--family--200": { - "type": "string", - "value": "Red Hat Display VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "string", - "value": "Red Hat Display VF" - }, - "name": "pf-t--global--font--family--200", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "200" - }, - "path": [ - "global", - "font", - "family", - "200" - ] - }, - "pf-t--global--font--family--300": { - "type": "string", - "value": "Red Hat Mono VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "string", - "value": "Red Hat Mono VF" - }, - "name": "pf-t--global--font--family--300", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "300" - }, - "path": [ - "global", - "font", - "family", - "300" - ] - }, - "pf-t--global--font--family--body": { - "description": "Use to define the font family for body text", - "type": "number", - "value": "Red Hat Text VF", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the font family for body text", - "type": "number", - "value": "{global.font.family.100}" - }, - "name": "pf-t--global--font--family--body", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "body" - }, - "path": [ - "global", - "font", - "family", - "body" - ], - "references": [ - { - "type": "string", - "value": "Red Hat Text VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "string", - "value": "Red Hat Text VF" - }, - "name": "pf-t--global--font--family--100", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "100" - }, - "path": [ - "global", - "font", - "family", - "100" - ] - } - ] - }, - "pf-t--global--font--family--heading": { - "description": "Use to define the font family for heading text", - "type": "number", - "value": "Red Hat Display VF", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the font family for heading text", - "type": "number", - "value": "{global.font.family.200}" - }, - "name": "pf-t--global--font--family--heading", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "heading" - }, - "path": [ - "global", - "font", - "family", - "heading" - ], - "references": [ - { - "type": "string", - "value": "Red Hat Display VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "string", - "value": "Red Hat Display VF" - }, - "name": "pf-t--global--font--family--200", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "200" - }, - "path": [ - "global", - "font", - "family", - "200" - ] - } - ] - }, - "pf-t--global--font--family--mono": { - "description": "Use to define the font family for mono text", - "type": "number", - "value": "Red Hat Mono VF", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the font family for mono text", - "type": "number", - "value": "{global.font.family.300}" - }, - "name": "pf-t--global--font--family--mono", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "mono" - }, - "path": [ - "global", - "font", - "family", - "mono" - ], - "references": [ - { - "type": "string", - "value": "Red Hat Mono VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "string", - "value": "Red Hat Mono VF" - }, - "name": "pf-t--global--font--family--300", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "300" - }, - "path": [ - "global", - "font", - "family", - "300" - ] - } - ] - }, - "pf-t--global--font--weight--100": { - "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--font--weight--100", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "100" - }, - "path": [ - "global", - "font", - "weight", - "100" - ] - }, - "pf-t--global--font--weight--200": { - "type": "number", - "value": 500, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 500 - }, - "name": "pf-t--global--font--weight--200", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "200" - }, - "path": [ - "global", - "font", - "weight", - "200" - ] - }, - "pf-t--global--font--weight--300": { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 700 - }, - "name": "pf-t--global--font--weight--300", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "300" - }, - "path": [ - "global", - "font", - "weight", - "300" - ] - }, - "pf-t--global--font--weight--400": { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 700 - }, - "name": "pf-t--global--font--weight--400", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "400" - }, - "path": [ - "global", - "font", - "weight", - "400" - ] - }, - "pf-t--global--font--weight--body": { - "description": "Use to define the default weight for body text", - "type": "number", - "value": 400, - "bold": { - "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", - "type": "number", - "value": 500, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false - }, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the default weight for body text", - "type": "number", - "value": "{global.font.weight.100}", - "bold": { - "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", - "type": "number", - "value": "{global.font.weight.200}", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false - } - }, - "name": "pf-t--global--font--weight--body", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "body" - }, - "path": [ - "global", - "font", - "weight", - "body" - ], - "references": [ - { - "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--font--weight--100", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "100" - }, - "path": [ - "global", - "font", - "weight", - "100" - ] - } - ] - }, - "pf-t--global--font--weight--heading": { - "description": "Use to define the default weight for heading text", - "type": "number", - "value": 700, - "bold": { - "description": "Use to define the bold weight for heading text, often used to add emphasis.", - "type": "number", - "value": 700, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false - }, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the default weight for heading text", - "type": "number", - "value": "{global.font.weight.300}", - "bold": { - "description": "Use to define the bold weight for heading text, often used to add emphasis.", - "type": "number", - "value": "{global.font.weight.400}", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false - } - }, - "name": "pf-t--global--font--weight--heading", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "heading" - }, - "path": [ - "global", - "font", - "weight", - "heading" - ], - "references": [ - { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 700 - }, - "name": "pf-t--global--font--weight--300", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "300" - }, - "path": [ - "global", - "font", - "weight", - "300" - ] - } - ] - }, - "pf-t--global--font--line-height--100": { - "type": "number", - "value": 1.2999999523162842, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1.2999999523162842 - }, - "name": "pf-t--global--font--line-height--100", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "100" - }, - "path": [ - "global", - "font", - "line-height", - "100" - ] - }, - "pf-t--global--font--line-height--200": { - "type": "number", - "value": 1.5, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1.5 - }, - "name": "pf-t--global--font--line-height--200", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "200" - }, - "path": [ - "global", - "font", - "line-height", - "200" - ] - }, - "pf-t--global--font--line-height--body": { - "description": "Use to define the line height for body text", - "type": "number", - "value": 1.2999999523162842, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the line height for body text", - "type": "number", - "value": "{global.font.line-height.100}" - }, - "name": "pf-t--global--font--line-height--body", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "body" - }, - "path": [ - "global", - "font", - "line-height", - "body" - ], - "references": [ - { - "type": "number", - "value": 1.2999999523162842, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1.2999999523162842 - }, - "name": "pf-t--global--font--line-height--100", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "100" - }, - "path": [ - "global", - "font", - "line-height", - "100" - ] - } - ] - }, - "pf-t--global--font--line-height--heading": { - "description": "Use to define the line height for heading text", - "type": "number", - "value": 1.5, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the line height for heading text", - "type": "number", - "value": "{global.font.line-height.200}" - }, - "name": "pf-t--global--font--line-height--heading", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "heading" - }, - "path": [ - "global", - "font", - "line-height", - "heading" - ], - "references": [ - { - "type": "number", - "value": 1.5, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1.5 - }, - "name": "pf-t--global--font--line-height--200", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "200" - }, - "path": [ - "global", - "font", - "line-height", - "200" - ] - } - ] - }, - "pf-t--global--font--size--100": { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - }, - "pf-t--global--font--size--200": { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - }, - "pf-t--global--font--size--300": { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - }, - "pf-t--global--font--size--400": { - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - }, - "pf-t--global--font--size--500": { - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - }, - "pf-t--global--font--size--600": { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - }, - "pf-t--global--font--size--700": { - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 28 - }, - "name": "pf-t--global--font--size--700", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "700" - }, - "path": [ - "global", - "font", - "size", - "700" - ] - }, - "pf-t--global--font--size--800": { - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 36 - }, - "name": "pf-t--global--font--size--800", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "800" - }, - "path": [ - "global", - "font", - "size", - "800" - ] - }, - "pf-t--global--font--size--body--sm": { - "description": "Use for a smaller font size in body sections.", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for a smaller font size in body sections.", - "type": "number", - "value": "{global.font.size.xs}" - }, - "name": "pf-t--global--font--size--body--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "sm" - }, - "path": [ - "global", - "font", - "size", - "body", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--body--default": { - "description": "Use as the default font size in body sections.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the default font size in body sections.", - "type": "number", - "value": "{global.font.size.sm}" - }, - "name": "pf-t--global--font--size--body--default", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "default" - }, - "path": [ - "global", - "font", - "size", - "body", - "default" - ], - "references": [ - { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--body--lg": { - "description": "Use for a larger font size in body sections.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use for a larger font size in body sections.", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--body--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "lg" - }, - "path": [ - "global", - "font", - "size", - "body", - "lg" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--heading--h1": { - "description": "Use as the font size for first level headings.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for first level headings.", - "type": "number", - "value": "{global.font.size.2xl}" - }, - "name": "pf-t--global--font--size--heading--h1", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h1" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h1" - ], - "references": [ - { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--heading--h2": { - "description": "Use as the font size for second level headings.", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for second level headings.", - "type": "number", - "value": "{global.font.size.xl}" - }, - "name": "pf-t--global--font--size--heading--h2", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h2" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h2" - ], - "references": [ - { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.500}" - }, - "name": "pf-t--global--font--size--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "font", - "size", - "xl" - ], - "references": [ - { - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--heading--h3": { - "description": "Use as the font size for third level headings.", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for third level headings.", - "type": "number", - "value": "{global.font.size.lg}" - }, - "name": "pf-t--global--font--size--heading--h3", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h3" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h3" - ], - "references": [ - { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.400}" - }, - "name": "pf-t--global--font--size--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "font", - "size", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--heading--h4": { - "description": "Use as the font size for fourth-level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for fourth-level headings.", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h4", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h4" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h4" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--heading--h5": { - "description": "Use as the font size for fifth level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for fifth level headings.", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h5", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h5" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h5" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--heading--h6": { - "description": "Use as the font size for sixth level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for sixth level headings.", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h6", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h6" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h6" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--xs": { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] - }, - "pf-t--global--font--size--sm": { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] - }, - "pf-t--global--font--size--md": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - }, - "pf-t--global--font--size--lg": { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.400}" - }, - "name": "pf-t--global--font--size--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "font", - "size", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - } - ] - }, - "pf-t--global--font--size--xl": { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.500}" - }, - "name": "pf-t--global--font--size--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "font", - "size", - "xl" - ], - "references": [ - { - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - } - ] - }, - "pf-t--global--font--size--2xl": { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] - }, - "pf-t--global--font--size--3xl": { - "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.700}" - }, - "name": "pf-t--global--font--size--3xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "3xl" - }, - "path": [ - "global", - "font", - "size", - "3xl" - ], - "references": [ - { - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 28 - }, - "name": "pf-t--global--font--size--700", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "700" - }, - "path": [ - "global", - "font", - "size", - "700" - ] - } - ] - }, - "pf-t--global--font--size--4xl": { - "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.800}" - }, - "name": "pf-t--global--font--size--4xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "4xl" - }, - "path": [ - "global", - "font", - "size", - "4xl" - ], - "references": [ - { - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 36 - }, - "name": "pf-t--global--font--size--800", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "800" - }, - "path": [ - "global", - "font", - "size", - "800" - ] - } - ] - }, - "pf-t--global--z-index--100": { - "type": "number", - "value": 100, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 100 - }, - "name": "pf-t--global--z-index--100", - "attributes": { - "category": "global", - "type": "z-index", - "item": "100" - }, - "path": [ - "global", - "z-index", - "100" - ] - }, - "pf-t--global--z-index--200": { - "type": "number", - "value": 200, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 200 - }, - "name": "pf-t--global--z-index--200", - "attributes": { - "category": "global", - "type": "z-index", - "item": "200" - }, - "path": [ - "global", - "z-index", - "200" - ] - }, - "pf-t--global--z-index--300": { - "type": "number", - "value": 300, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--global--z-index--300", - "attributes": { - "category": "global", - "type": "z-index", - "item": "300" - }, - "path": [ - "global", - "z-index", - "300" - ] - }, - "pf-t--global--z-index--400": { - "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--z-index--400", - "attributes": { - "category": "global", - "type": "z-index", - "item": "400" - }, - "path": [ - "global", - "z-index", - "400" - ] - }, - "pf-t--global--z-index--500": { - "type": "number", - "value": 500, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 500 - }, - "name": "pf-t--global--z-index--500", - "attributes": { - "category": "global", - "type": "z-index", - "item": "500" - }, - "path": [ - "global", - "z-index", - "500" - ] - }, - "pf-t--global--z-index--600": { - "type": "number", - "value": 600, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 600 - }, - "name": "pf-t--global--z-index--600", - "attributes": { - "category": "global", - "type": "z-index", - "item": "600" - }, - "path": [ - "global", - "z-index", - "600" - ] - }, - "pf-t--global--z-index--xs": { - "type": "number", - "value": 100, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.z-index.100}" - }, - "name": "pf-t--global--z-index--xs", - "attributes": { - "category": "global", - "type": "z-index", - "item": "xs" - }, - "path": [ - "global", - "z-index", - "xs" - ], - "references": [ - { - "type": "number", - "value": 100, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 100 - }, - "name": "pf-t--global--z-index--100", - "attributes": { - "category": "global", - "type": "z-index", - "item": "100" - }, - "path": [ - "global", - "z-index", - "100" - ] - } - ] - }, - "pf-t--global--z-index--sm": { - "type": "number", - "value": 200, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.z-index.200}" - }, - "name": "pf-t--global--z-index--sm", - "attributes": { - "category": "global", - "type": "z-index", - "item": "sm" - }, - "path": [ - "global", - "z-index", - "sm" - ], - "references": [ - { - "type": "number", - "value": 200, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 200 - }, - "name": "pf-t--global--z-index--200", - "attributes": { - "category": "global", - "type": "z-index", - "item": "200" - }, - "path": [ - "global", - "z-index", - "200" - ] - } - ] - }, - "pf-t--global--z-index--md": { - "type": "number", - "value": 300, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.z-index.300}" - }, - "name": "pf-t--global--z-index--md", - "attributes": { - "category": "global", - "type": "z-index", - "item": "md" - }, - "path": [ - "global", - "z-index", - "md" - ], - "references": [ - { - "type": "number", - "value": 300, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--global--z-index--300", - "attributes": { - "category": "global", - "type": "z-index", - "item": "300" - }, - "path": [ - "global", - "z-index", - "300" - ] - } - ] - }, - "pf-t--global--z-index--lg": { - "type": "number", - "value": 400, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.z-index.400}" - }, - "name": "pf-t--global--z-index--lg", - "attributes": { - "category": "global", - "type": "z-index", - "item": "lg" - }, - "path": [ - "global", - "z-index", - "lg" - ], - "references": [ - { - "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--z-index--400", - "attributes": { - "category": "global", - "type": "z-index", - "item": "400" - }, - "path": [ - "global", - "z-index", - "400" - ] - } - ] - }, - "pf-t--global--z-index--xl": { - "type": "number", - "value": 500, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.z-index.500}" - }, - "name": "pf-t--global--z-index--xl", - "attributes": { - "category": "global", - "type": "z-index", - "item": "xl" - }, - "path": [ - "global", - "z-index", - "xl" - ], - "references": [ - { - "type": "number", - "value": 500, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 500 - }, - "name": "pf-t--global--z-index--500", - "attributes": { - "category": "global", - "type": "z-index", - "item": "500" - }, - "path": [ - "global", - "z-index", - "500" - ] - } - ] - }, - "pf-t--global--z-index--2xl": { - "type": "number", - "value": 600, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": "{global.z-index.600}" - }, - "name": "pf-t--global--z-index--2xl", - "attributes": { - "category": "global", - "type": "z-index", - "item": "2xl" - }, - "path": [ - "global", - "z-index", - "2xl" - ], - "references": [ - { - "type": "number", - "value": 600, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 600 - }, - "name": "pf-t--global--z-index--600", - "attributes": { - "category": "global", - "type": "z-index", - "item": "600" - }, - "path": [ - "global", - "z-index", - "600" - ] - } - ] - }, - "pf-t--global--box-shadow--X--100": { - "type": "number", - "value": "-8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": -8 - }, - "name": "pf-t--global--box-shadow--X--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "X", - "100" - ] - }, - "pf-t--global--box-shadow--X--200": { - "type": "number", - "value": "-4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": -4 - }, - "name": "pf-t--global--box-shadow--X--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "X", - "200" - ] - }, - "pf-t--global--box-shadow--X--300": { - "type": "number", - "value": "-1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": -1 - }, - "name": "pf-t--global--box-shadow--X--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "X", - "300" - ] - }, - "pf-t--global--box-shadow--X--400": { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - }, - "pf-t--global--box-shadow--X--500": { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--X--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "X", - "500" - ] - }, - "pf-t--global--box-shadow--X--600": { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--X--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "X", - "600" - ] - }, - "pf-t--global--box-shadow--X--700": { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--X--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "X", - "700" - ] - }, - "pf-t--global--box-shadow--X--sm--default": { - "description": "Use to define the X value for a default small box-shadow, like in sticky sections", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the X value for a default small box-shadow, like in sticky sections", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--sm--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "default" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--sm--top": { - "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--sm--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "top" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--sm--bottom": { - "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--sm--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "bottom" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--sm--left": { - "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", - "type": "number", - "value": "-1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", - "type": "number", - "value": "{global.box-shadow.X.300}" - }, - "name": "pf-t--global--box-shadow--X--sm--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "left" - ], - "references": [ - { - "type": "number", - "value": "-1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": -1 - }, - "name": "pf-t--global--box-shadow--X--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "X", - "300" - ] - } - ] - }, - "pf-t--global--box-shadow--X--sm--right": { - "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", - "type": "number", - "value": "{global.box-shadow.X.500}" - }, - "name": "pf-t--global--box-shadow--X--sm--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "right" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--X--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "X", - "500" - ] - } - ] - }, - "pf-t--global--box-shadow--X--md--default": { - "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--md--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "default" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--md--top": { - "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--md--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "top" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--md--bottom": { - "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--md--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "bottom" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--md--left": { - "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", - "type": "number", - "value": "-4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", - "type": "number", - "value": "{global.box-shadow.X.200}" - }, - "name": "pf-t--global--box-shadow--X--md--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "left" - ], - "references": [ - { - "type": "number", - "value": "-4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": -4 - }, - "name": "pf-t--global--box-shadow--X--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "X", - "200" - ] - } - ] - }, - "pf-t--global--box-shadow--X--md--right": { - "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", - "type": "number", - "value": "{global.box-shadow.X.600}" - }, - "name": "pf-t--global--box-shadow--X--md--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "right" - ], - "references": [ - { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--X--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "X", - "600" - ] - } - ] - }, - "pf-t--global--box-shadow--X--lg--default": { - "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--lg--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "default" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--lg--top": { - "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--lg--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "top" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--lg--bottom": { - "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--lg--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "bottom" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--lg--left": { - "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", - "type": "number", - "value": "-8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", - "type": "number", - "value": "{global.box-shadow.X.100}" - }, - "name": "pf-t--global--box-shadow--X--lg--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "left" - ], - "references": [ - { - "type": "number", - "value": "-8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": -8 - }, - "name": "pf-t--global--box-shadow--X--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "X", - "100" - ] - } - ] - }, - "pf-t--global--box-shadow--X--lg--right": { - "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", - "type": "number", - "value": "{global.box-shadow.X.700}" - }, - "name": "pf-t--global--box-shadow--X--lg--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "right" - ], - "references": [ - { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--X--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "X", - "700" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--100": { - "type": "number", - "value": "-8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": -8 - }, - "name": "pf-t--global--box-shadow--Y--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "Y", - "100" - ] - }, - "pf-t--global--box-shadow--Y--200": { - "type": "number", - "value": "-4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": -4 - }, - "name": "pf-t--global--box-shadow--Y--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "Y", - "200" - ] - }, - "pf-t--global--box-shadow--Y--300": { - "type": "number", - "value": "-1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": -1 - }, - "name": "pf-t--global--box-shadow--Y--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "Y", - "300" - ] - }, - "pf-t--global--box-shadow--Y--400": { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - }, - "pf-t--global--box-shadow--Y--500": { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--Y--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "Y", - "500" - ] - }, - "pf-t--global--box-shadow--Y--600": { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--Y--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "Y", - "600" - ] - }, - "pf-t--global--box-shadow--Y--700": { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--Y--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "Y", - "700" - ] - }, - "pf-t--global--box-shadow--Y--sm--default": { - "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", - "type": "number", - "value": "{global.box-shadow.Y.500}" - }, - "name": "pf-t--global--box-shadow--Y--sm--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "default" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--Y--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "Y", - "500" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--sm--top": { - "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", - "type": "number", - "value": "-1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", - "type": "number", - "value": "{global.box-shadow.Y.300}" - }, - "name": "pf-t--global--box-shadow--Y--sm--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "top" - ], - "references": [ - { - "type": "number", - "value": "-1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": -1 - }, - "name": "pf-t--global--box-shadow--Y--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "Y", - "300" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--sm--bottom": { - "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", - "type": "number", - "value": "{global.box-shadow.Y.500}" - }, - "name": "pf-t--global--box-shadow--Y--sm--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "bottom" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--Y--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "Y", - "500" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--sm--left": { - "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", - "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--sm--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "left" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--sm--right": { - "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", - "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--sm--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "right" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--md--default": { - "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", - "type": "number", - "value": "{global.box-shadow.Y.600}" - }, - "name": "pf-t--global--box-shadow--Y--md--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "default" - ], - "references": [ - { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--Y--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "Y", - "600" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--md--top": { - "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", - "type": "number", - "value": "-4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", - "type": "number", - "value": "{global.box-shadow.Y.200}" - }, - "name": "pf-t--global--box-shadow--Y--md--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "top" - ], - "references": [ - { - "type": "number", - "value": "-4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": -4 - }, - "name": "pf-t--global--box-shadow--Y--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "Y", - "200" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--md--bottom": { - "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "{global.box-shadow.Y.600}" - }, - "name": "pf-t--global--box-shadow--Y--md--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "bottom" - ], - "references": [ - { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--Y--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "Y", - "600" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--md--left": { - "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", - "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--md--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "left" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--md--right": { - "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", - "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--md--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "right" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--lg--default": { - "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", - "type": "number", - "value": "{global.box-shadow.Y.700}" - }, - "name": "pf-t--global--box-shadow--Y--lg--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "default" - ], - "references": [ - { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--Y--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "Y", - "700" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--lg--top": { - "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", - "type": "number", - "value": "-8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", - "type": "number", - "value": "{global.box-shadow.Y.100}" - }, - "name": "pf-t--global--box-shadow--Y--lg--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "top" - ], - "references": [ - { - "type": "number", - "value": "-8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": -8 - }, - "name": "pf-t--global--box-shadow--Y--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "Y", - "100" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--lg--bottom": { - "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "{global.box-shadow.Y.700}" - }, - "name": "pf-t--global--box-shadow--Y--lg--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "bottom" - ], - "references": [ - { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--Y--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "Y", - "700" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--lg--left": { - "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", - "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--lg--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "left" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--lg--right": { - "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", - "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--lg--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "right" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--blur--100": { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--blur--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "blur", - "100" - ] - }, - "pf-t--global--box-shadow--blur--200": { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--blur--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "blur", - "200" - ] - }, - "pf-t--global--box-shadow--blur--300": { - "type": "number", - "value": "24px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--box-shadow--blur--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "blur", - "300" - ] - }, - "pf-t--global--box-shadow--blur--sm": { - "description": "Use to define the blur for a small box-shadow", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the blur for a small box-shadow", - "type": "number", - "value": "{global.box-shadow.blur.100}" - }, - "name": "pf-t--global--box-shadow--blur--sm", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "sm" - }, - "path": [ - "global", - "box-shadow", - "blur", - "sm" - ], - "references": [ - { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--blur--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "blur", - "100" - ] - } - ] - }, - "pf-t--global--box-shadow--blur--md": { - "description": "Use to define the blur for a medium box-shadow", - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the blur for a medium box-shadow", - "type": "number", - "value": "{global.box-shadow.blur.200}" - }, - "name": "pf-t--global--box-shadow--blur--md", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "md" - }, - "path": [ - "global", - "box-shadow", - "blur", - "md" - ], - "references": [ - { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--blur--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "blur", - "200" - ] - } - ] - }, - "pf-t--global--box-shadow--blur--lg": { - "description": "Use to define the blue for a large box-shadow", - "type": "number", - "value": "24px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the blue for a large box-shadow", - "type": "number", - "value": "{global.box-shadow.blur.300}" - }, - "name": "pf-t--global--box-shadow--blur--lg", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "lg" - }, - "path": [ - "global", - "box-shadow", - "blur", - "lg" - ], - "references": [ - { - "type": "number", - "value": "24px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--box-shadow--blur--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "blur", - "300" - ] - } - ] - }, - "pf-t--global--box-shadow--spread--100": { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--spread--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "spread", - "100" - ] - }, - "pf-t--global--box-shadow--spread--sm": { - "description": "Use to define the spread for a small box-shadow", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the spread for a small box-shadow", - "type": "number", - "value": "{global.box-shadow.spread.100}" - }, - "name": "pf-t--global--box-shadow--spread--sm", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "sm" - }, - "path": [ - "global", - "box-shadow", - "spread", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--spread--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "spread", - "100" - ] - } - ] - }, - "pf-t--global--box-shadow--spread--md": { - "description": "Use to define the spread of a medium box-shadow", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the spread of a medium box-shadow", - "type": "number", - "value": "{global.box-shadow.spread.100}" - }, - "name": "pf-t--global--box-shadow--spread--md", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "md" - }, - "path": [ - "global", - "box-shadow", - "spread", - "md" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--spread--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "spread", - "100" - ] - } - ] - }, - "pf-t--global--box-shadow--spread--lg": { - "description": "Use to define the spread of a large box-shadow", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the spread of a large box-shadow", - "type": "number", - "value": "{global.box-shadow.spread.100}" - }, - "name": "pf-t--global--box-shadow--spread--lg", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "lg" - }, - "path": [ - "global", - "box-shadow", - "spread", - "lg" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--spread--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "spread", - "100" - ] - } - ] - }, - "pf-t--global--box-shadow--color--100": { - "type": "color", - "value": "rgba(0, 0, 0, 0.1600)", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "rgba(0, 0, 0, 0.1600)" - }, - "name": "pf-t--global--box-shadow--color--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "color", - "100" - ] - }, - "pf-t--global--box-shadow--color--200": { - "type": "color", - "value": "rgba(0, 0, 0, 0.1200)", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "rgba(0, 0, 0, 0.1200)" - }, - "name": "pf-t--global--box-shadow--color--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "color", - "200" - ] - }, - "pf-t--global--box-shadow--color--sm": { - "description": "Use as the color of small box-shadows.", - "type": "color", - "value": "rgba(0, 0, 0, 0.5000)", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of small box-shadows.", - "type": "color", - "value": "{global.dark.box-shadow.color.100}" - }, - "name": "pf-t--global--box-shadow--color--sm", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "sm" - }, - "path": [ - "global", - "box-shadow", - "color", - "sm" - ], - "references": [ - { - "type": "color", - "value": "rgba(0, 0, 0, 0.5000)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(0, 0, 0, 0.5000)" - }, - "name": "pf-t--global--dark--box-shadow--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "box-shadow", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "box-shadow", - "color", - "100" - ] - } - ] - }, - "pf-t--global--box-shadow--color--md": { - "description": "Use as the color of medium box-shadows.", - "type": "color", - "value": "rgba(0, 0, 0, 0.5000)", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of medium box-shadows.", - "type": "color", - "value": "{global.dark.box-shadow.color.100}" - }, - "name": "pf-t--global--box-shadow--color--md", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "md" - }, - "path": [ - "global", - "box-shadow", - "color", - "md" - ], - "references": [ - { - "type": "color", - "value": "rgba(0, 0, 0, 0.5000)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(0, 0, 0, 0.5000)" - }, - "name": "pf-t--global--dark--box-shadow--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "box-shadow", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "box-shadow", - "color", - "100" - ] - } - ] - }, - "pf-t--global--box-shadow--color--lg": { - "description": "Use as the color of large box-shadows.", - "type": "color", - "value": "rgba(0, 0, 0, 0.5000)", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of large box-shadows.", - "type": "color", - "value": "{global.dark.box-shadow.color.100}" - }, - "name": "pf-t--global--box-shadow--color--lg", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "lg" - }, - "path": [ - "global", - "box-shadow", - "color", - "lg" - ], - "references": [ - { - "type": "color", - "value": "rgba(0, 0, 0, 0.5000)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(0, 0, 0, 0.5000)" - }, - "name": "pf-t--global--dark--box-shadow--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "box-shadow", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "box-shadow", - "color", - "100" - ] - } - ] - }, - "pf-t--global--breakpoint--100": { - "type": "number", - "value": "0rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--breakpoint--100", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "100" - }, - "path": [ - "global", - "breakpoint", - "100" - ] - }, - "pf-t--global--breakpoint--200": { - "type": "number", - "value": "36rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 576 - }, - "name": "pf-t--global--breakpoint--200", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "200" - }, - "path": [ - "global", - "breakpoint", - "200" - ] - }, - "pf-t--global--breakpoint--250": { - "type": "number", - "value": "40rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 640 - }, - "name": "pf-t--global--breakpoint--250", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "250" - }, - "path": [ - "global", - "breakpoint", - "250" - ] - }, - "pf-t--global--breakpoint--300": { - "type": "number", - "value": "48rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 768 - }, - "name": "pf-t--global--breakpoint--300", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "300" - }, - "path": [ - "global", - "breakpoint", - "300" - ] - }, - "pf-t--global--breakpoint--350": { - "type": "number", - "value": "60rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 960 - }, - "name": "pf-t--global--breakpoint--350", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "350" - }, - "path": [ - "global", - "breakpoint", - "350" - ] - }, - "pf-t--global--breakpoint--400": { - "type": "number", - "value": "62rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 992 - }, - "name": "pf-t--global--breakpoint--400", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "400" - }, - "path": [ - "global", - "breakpoint", - "400" - ] - }, - "pf-t--global--breakpoint--500": { - "type": "number", - "value": "75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1200 - }, - "name": "pf-t--global--breakpoint--500", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "500" - }, - "path": [ - "global", - "breakpoint", - "500" - ] - }, - "pf-t--global--breakpoint--550": { - "type": "number", - "value": "80rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1280 - }, - "name": "pf-t--global--breakpoint--550", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "550" - }, - "path": [ - "global", - "breakpoint", - "550" - ] - }, - "pf-t--global--breakpoint--600": { - "type": "number", - "value": "90.625rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1450 - }, - "name": "pf-t--global--breakpoint--600", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "600" - }, - "path": [ - "global", - "breakpoint", - "600" - ] - }, - "pf-t--global--breakpoint--xs": { - "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "0rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.100}" - }, - "name": "pf-t--global--breakpoint--xs", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "xs" - }, - "path": [ - "global", - "breakpoint", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--breakpoint--100", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "100" - }, - "path": [ - "global", - "breakpoint", - "100" - ] - } - ] - }, - "pf-t--global--breakpoint--sm": { - "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "36rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.200}" - }, - "name": "pf-t--global--breakpoint--sm", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "sm" - }, - "path": [ - "global", - "breakpoint", - "sm" - ], - "references": [ - { - "type": "number", - "value": "36rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 576 - }, - "name": "pf-t--global--breakpoint--200", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "200" - }, - "path": [ - "global", - "breakpoint", - "200" - ] - } - ] - }, - "pf-t--global--breakpoint--md": { - "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "48rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.300}" - }, - "name": "pf-t--global--breakpoint--md", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "md" - }, - "path": [ - "global", - "breakpoint", - "md" - ], - "references": [ - { - "type": "number", - "value": "48rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 768 - }, - "name": "pf-t--global--breakpoint--300", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "300" - }, - "path": [ - "global", - "breakpoint", - "300" - ] - } - ] - }, - "pf-t--global--breakpoint--lg": { - "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "62rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.400}" - }, - "name": "pf-t--global--breakpoint--lg", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "lg" - }, - "path": [ - "global", - "breakpoint", - "lg" - ], - "references": [ - { - "type": "number", - "value": "62rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 992 - }, - "name": "pf-t--global--breakpoint--400", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "400" - }, - "path": [ - "global", - "breakpoint", - "400" - ] - } - ] - }, - "pf-t--global--breakpoint--xl": { - "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.500}" - }, - "name": "pf-t--global--breakpoint--xl", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "xl" - }, - "path": [ - "global", - "breakpoint", - "xl" - ], - "references": [ - { - "type": "number", - "value": "75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1200 - }, - "name": "pf-t--global--breakpoint--500", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "500" - }, - "path": [ - "global", - "breakpoint", - "500" - ] - } - ] - }, - "pf-t--global--breakpoint--2xl": { - "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "90.625rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.600}" - }, - "name": "pf-t--global--breakpoint--2xl", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "2xl" - }, - "path": [ - "global", - "breakpoint", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "90.625rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1450 - }, - "name": "pf-t--global--breakpoint--600", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "600" - }, - "path": [ - "global", - "breakpoint", - "600" - ] - } - ] - }, - "pf-t--global--breakpoint--height--sm": { - "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "0rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.100}" - }, - "name": "pf-t--global--breakpoint--height--sm", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "sm" - }, - "path": [ - "global", - "breakpoint", - "height", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--breakpoint--100", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "100" - }, - "path": [ - "global", - "breakpoint", - "100" - ] - } - ] - }, - "pf-t--global--breakpoint--height--md": { - "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "40rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.250}" - }, - "name": "pf-t--global--breakpoint--height--md", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "md" - }, - "path": [ - "global", - "breakpoint", - "height", - "md" - ], - "references": [ - { - "type": "number", - "value": "40rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 640 - }, - "name": "pf-t--global--breakpoint--250", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "250" - }, - "path": [ - "global", - "breakpoint", - "250" - ] - } - ] - }, - "pf-t--global--breakpoint--height--lg": { - "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "48rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.300}" - }, - "name": "pf-t--global--breakpoint--height--lg", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "lg" - }, - "path": [ - "global", - "breakpoint", - "height", - "lg" - ], - "references": [ - { - "type": "number", - "value": "48rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 768 - }, - "name": "pf-t--global--breakpoint--300", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "300" - }, - "path": [ - "global", - "breakpoint", - "300" - ] - } - ] - }, - "pf-t--global--breakpoint--height--xl": { - "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "60rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.350}" - }, - "name": "pf-t--global--breakpoint--height--xl", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "xl" - }, - "path": [ - "global", - "breakpoint", - "height", - "xl" - ], - "references": [ - { - "type": "number", - "value": "60rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 960 - }, - "name": "pf-t--global--breakpoint--350", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "350" - }, - "path": [ - "global", - "breakpoint", - "350" - ] - } - ] - }, - "pf-t--global--breakpoint--height--2xl": { - "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "80rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.550}" - }, - "name": "pf-t--global--breakpoint--height--2xl", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "2xl" - }, - "path": [ - "global", - "breakpoint", - "height", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "80rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 1280 - }, - "name": "pf-t--global--breakpoint--550", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "550" - }, - "path": [ - "global", - "breakpoint", - "550" - ] - } - ] - }, - "pf-t--global--background--color--100": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - }, - "pf-t--global--background--color--200": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--background--color--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - }, - "pf-t--global--background--color--300": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--background--color--300", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "background", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - }, - "pf-t--global--background--color--400": { - "type": "color", - "value": "#292929", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--background--color--400", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "400" - }, - "path": [ - "global", - "background", - "color", - "400" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - }, - "pf-t--global--background--color--500": { - "type": "color", - "value": "rgba(21, 21, 21, 0.2000)", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "rgba(21, 21, 21, 0.2000)" - }, - "name": "pf-t--global--background--color--500", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "500" - }, - "path": [ - "global", - "background", - "color", - "500" - ] - }, - "pf-t--global--background--color--600": { - "type": "color", - "value": "rgba(199, 199, 199, 0.2500)", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "rgba(199, 199, 199, 0.2500)" - }, - "name": "pf-t--global--background--color--600", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "600" - }, - "path": [ - "global", - "background", - "color", - "600" - ] - }, - "pf-t--global--background--color--highlight--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--background--color--highlight--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "100" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--global--background--color--highlight--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--background--color--highlight--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "200" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - }, - "pf-t--global--background--color--highlight--default": { - "description": "Use as the background color for highlighted elements", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the background color for highlighted elements", - "type": "color", - "value": "{global.dark.background.color.highlight.100}" - }, - "name": "pf-t--global--background--color--highlight--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--background--color--highlight--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "highlight" - }, - "path": [ - "global", - "dark", - "background", - "color", - "highlight", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--highlight--clicked": { - "description": "Use as the active state for for highlighted elements", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the active state for for highlighted elements", - "type": "color", - "value": "{global.dark.background.color.highlight.200}" - }, - "name": "pf-t--global--background--color--highlight--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "clicked" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--background--color--highlight--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "highlight" - }, - "path": [ - "global", - "dark", - "background", - "color", - "highlight", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--primary--default": { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", - "type": "color", - "value": "{global.dark.background.color.200}" - }, - "name": "pf-t--global--background--color--primary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "primary", - "default" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--primary--hover": { - "description": "Use as the hover state for primary backgrounds", - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for primary backgrounds", - "type": "color", - "value": "{global.dark.background.color.300}" - }, - "name": "pf-t--global--background--color--primary--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "hover" - }, - "path": [ - "global", - "background", - "color", - "primary", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--background--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "background", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--primary--clicked": { - "description": "Use as the clicked state for primary backgrounds", - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for primary backgrounds", - "type": "color", - "value": "{global.dark.background.color.300}" - }, - "name": "pf-t--global--background--color--primary--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "clicked" - }, - "path": [ - "global", - "background", - "color", - "primary", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--background--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "background", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--secondary--default": { - "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", - "type": "color", - "value": "{global.dark.background.color.100}" - }, - "name": "pf-t--global--background--color--secondary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "secondary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "secondary", - "default" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--dark--background--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "background", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--secondary--hover": { - "description": "Use as the hover state for secondary backgrounds", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for secondary backgrounds", - "type": "color", - "value": "{global.dark.background.color.200}" - }, - "name": "pf-t--global--background--color--secondary--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "secondary", - "state": "hover" - }, - "path": [ - "global", - "background", - "color", - "secondary", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--secondary--clicked": { - "description": "Use as the clicked state for secondary backgrounds", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for secondary backgrounds", - "type": "color", - "value": "{global.dark.background.color.200}" - }, - "name": "pf-t--global--background--color--secondary--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "secondary", - "state": "clicked" - }, - "path": [ - "global", - "background", - "color", - "secondary", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--floating--default": { - "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", - "type": "color", - "value": "{global.dark.background.color.300}" - }, - "name": "pf-t--global--background--color--floating--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "floating", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "floating", - "default" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--background--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "background", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--floating--hover": { - "description": "Use as the hover state for floating backgrounds", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for floating backgrounds", - "type": "color", - "value": "{global.dark.background.color.200}" - }, - "name": "pf-t--global--background--color--floating--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "floating", - "state": "hover" - }, - "path": [ - "global", - "background", - "color", - "floating", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--floating--clicked": { - "description": "Use as the clicked state for floating backgrounds", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for floating backgrounds", - "type": "color", - "value": "{global.dark.background.color.200}" - }, - "name": "pf-t--global--background--color--floating--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "floating", - "state": "clicked" - }, - "path": [ - "global", - "background", - "color", - "floating", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--action--plain--default": { - "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", - "type": "color", - "value": "rgba(0, 0, 0, 0.0000)", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", - "type": "color", - "value": "rgba(0, 0, 0, 0.0000)" - }, - "name": "pf-t--global--background--color--action--plain--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "default" - ] - }, - "pf-t--global--background--color--action--plain--hover": { - "description": "Use as the hover state for components that use the plain action default background.", - "type": "color", - "value": "rgba(199, 199, 199, 0.1500)", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for components that use the plain action default background.", - "type": "color", - "value": "{global.dark.background.color.600}" - }, - "name": "pf-t--global--background--color--action--plain--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "hover" - ], - "references": [ - { - "type": "color", - "value": "rgba(199, 199, 199, 0.1500)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(199, 199, 199, 0.1500)" - }, - "name": "pf-t--global--dark--background--color--600", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "600" - }, - "path": [ - "global", - "dark", - "background", - "color", - "600" - ] - } - ] - }, - "pf-t--global--background--color--action--plain--clicked": { - "description": "Use as the active/pressed state for components that use the plain action default background.", - "type": "color", - "value": "rgba(199, 199, 199, 0.1500)", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the active/pressed state for components that use the plain action default background.", - "type": "color", - "value": "{global.dark.background.color.600}" - }, - "name": "pf-t--global--background--color--action--plain--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "rgba(199, 199, 199, 0.1500)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(199, 199, 199, 0.1500)" - }, - "name": "pf-t--global--dark--background--color--600", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "600" - }, - "path": [ - "global", - "dark", - "background", - "color", - "600" - ] - } - ] - }, - "pf-t--global--background--color--action--plain--alt--hover": { - "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", - "type": "color", - "value": "{global.dark.background.color.200}" - }, - "name": "pf-t--global--background--color--action--plain--alt--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "alt", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--action--plain--alt--clicked": { - "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", - "type": "color", - "value": "{global.dark.background.color.200}" - }, - "name": "pf-t--global--background--color--action--plain--alt--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "alt", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--control--default": { - "description": "Use as the default background for control elements like form inputs and menu toggles.", - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default background for control elements like form inputs and menu toggles.", - "type": "color", - "value": "{global.dark.background.color.300}" - }, - "name": "pf-t--global--background--color--control--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "control", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "control", - "default" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--background--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "background", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--inverse--default": { - "description": "Use as the background color components with inversed backgrounds like tooltips.", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the background color components with inversed backgrounds like tooltips.", - "type": "color", - "value": "{global.dark.background.color.400}" - }, - "name": "pf-t--global--background--color--inverse--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "inverse", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "inverse", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--dark--background--color--400", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "400" - }, - "path": [ - "global", - "dark", - "background", - "color", - "400" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--disabled--default": { - "description": "Use as the background color for disabled components.", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the background color for disabled components.", - "type": "color", - "value": "{global.dark.color.disabled.100}" - }, - "name": "pf-t--global--background--color--disabled--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "disabled", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "disabled", - "default" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--color--disabled--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "100" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--backdrop--default": { - "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", - "type": "color", - "value": "rgba(21, 21, 21, 0.8000)", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", - "type": "color", - "value": "{global.dark.background.color.500}" - }, - "name": "pf-t--global--background--color--backdrop--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "backdrop", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "backdrop", - "default" - ], - "references": [ - { - "type": "color", - "value": "rgba(21, 21, 21, 0.8000)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(21, 21, 21, 0.8000)" - }, - "name": "pf-t--global--dark--background--color--500", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "500" - }, - "path": [ - "global", - "dark", - "background", - "color", - "500" - ] - } - ] - }, - "pf-t--global--color--brand--100": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--brand--100", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "100" - }, - "path": [ - "global", - "color", - "brand", - "100" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - }, - "pf-t--global--color--brand--200": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - }, - "pf-t--global--color--brand--300": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - }, - "pf-t--global--color--brand--default": { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "{global.dark.color.brand.100}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--brand--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--brand--hover": { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--brand--clicked": { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--disabled--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--disabled--100", - "attributes": { - "category": "global", - "type": "color", - "item": "disabled", - "subitem": "100" - }, - "path": [ - "global", - "color", - "disabled", - "100" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, - "pf-t--global--color--disabled--200": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--disabled--200", - "attributes": { - "category": "global", - "type": "color", - "item": "disabled", - "subitem": "200" - }, - "path": [ - "global", - "color", - "disabled", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - }, - "pf-t--global--color--disabled--300": { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--global--color--disabled--300", - "attributes": { - "category": "global", - "type": "color", - "item": "disabled", - "subitem": "300" - }, - "path": [ - "global", - "color", - "disabled", - "300" - ], - "references": [ - { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] - }, - "pf-t--global--color--favorite--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--favorite--100", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "100" - }, - "path": [ - "global", - "color", - "favorite", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--global--color--favorite--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--favorite--200", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "200" - }, - "path": [ - "global", - "color", - "favorite", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - }, - "pf-t--global--color--favorite--default": { - "description": "Use as the default color for elements that have been favorited", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for elements that have been favorited", - "type": "color", - "value": "{global.dark.color.favorite.100}" - }, - "name": "pf-t--global--color--favorite--default", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "default" - }, - "path": [ - "global", - "color", - "favorite", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--favorite--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "favorite", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "favorite", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--favorite--hover": { - "description": "Use as the hover state for elements that have been favorited", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for elements that have been favorited", - "type": "color", - "value": "{global.dark.color.favorite.200}" - }, - "name": "pf-t--global--color--favorite--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "favorite", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--favorite--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "favorite", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "favorite", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--favorite--clicked": { - "description": "Use as the clicked state for elements that have been favorited", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for elements that have been favorited", - "type": "color", - "value": "{global.dark.color.favorite.200}" - }, - "name": "pf-t--global--color--favorite--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "favorite", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--favorite--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "favorite", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "favorite", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--success--100": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--global--color--status--success--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - }, - "pf-t--global--color--status--success--200": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - }, - "pf-t--global--color--status--success--default": { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "{global.dark.color.status.success.100}" - }, - "name": "pf-t--global--color--status--success--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--dark--color--status--success--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--success--hover": { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "{global.dark.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--success--clicked": { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "{global.dark.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--warning--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--status--warning--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "warning", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--global--color--status--warning--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--status--warning--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - }, - "pf-t--global--color--status--warning--300": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--global--color--status--warning--300", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "warning", - "300" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - }, - "pf-t--global--color--status--warning--default": { - "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", - "type": "color", - "value": "{global.dark.color.status.warning.100}" - }, - "name": "pf-t--global--color--status--warning--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "warning", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--status--warning--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--warning--hover": { - "description": "Use as the hover state for any element that conveys a warning status.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a warning status.", - "type": "color", - "value": "{global.dark.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--warning--clicked": { - "description": "Use as the clicked state for any element that conveys a warning status.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a warning status.", - "type": "color", - "value": "{global.dark.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--danger--100": { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--status--danger--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - }, - "pf-t--global--color--status--danger--200": { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - }, - "pf-t--global--color--status--danger--300": { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--300", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "danger", - "300" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - }, - "pf-t--global--color--status--danger--default": { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "{global.dark.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--global--dark--color--status--danger--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--danger--hover": { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "{global.dark.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--danger--clicked": { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "{global.dark.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--info--100": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--color--status--info--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - }, - "pf-t--global--color--status--info--200": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - }, - "pf-t--global--color--status--info--default": { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "{global.dark.color.status.info.100}" - }, - "name": "pf-t--global--color--status--info--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--color--status--info--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--info--hover": { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "{global.dark.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--info--clicked": { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "{global.dark.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--custom--100": { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--global--color--status--custom--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - }, - "pf-t--global--color--status--custom--200": { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - }, - "pf-t--global--color--status--custom--default": { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.dark.color.status.custom.100}" - }, - "name": "pf-t--global--color--status--custom--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--dark--color--status--custom--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--custom--hover": { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.dark.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--custom--clicked": { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.dark.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--unread--default": { - "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.color.brand.default}" - }, - "name": "pf-t--global--color--status--unread--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "unread", - "default" - ], - "references": [ - { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "{global.dark.color.brand.100}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--brand--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--color--status--unread--hover": { - "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.color.brand.hover}" - }, - "name": "pf-t--global--color--status--unread--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "unread", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--color--status--unread--clicked": { - "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.color.brand.clicked}" - }, - "name": "pf-t--global--color--status--unread--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "unread", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--color--status--unread--attention--default": { - "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.color.status.danger.default}" - }, - "name": "pf-t--global--color--status--unread--attention--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "attention" - }, - "path": [ - "global", - "color", - "status", - "unread", - "attention", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "{global.dark.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--global--dark--color--status--danger--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--color--status--unread--attention--clicked": { - "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.color.status.danger.clicked}" - }, - "name": "pf-t--global--color--status--unread--attention--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "attention" - }, - "path": [ - "global", - "color", - "status", - "unread", - "attention", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "{global.dark.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--color--status--unread--attention--hover": { - "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.color.status.danger.hover}" - }, - "name": "pf-t--global--color--status--unread--attention--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "attention" - }, - "path": [ - "global", - "color", - "status", - "unread", - "attention", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "{global.dark.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--color--status--read--on-secondary": { - "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", - "type": "color", - "value": "{global.background.color.control.default}" - }, - "name": "pf-t--global--color--status--read--on-secondary", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "read", - "state": "on-secondary" - }, - "path": [ - "global", - "color", - "status", - "read", - "on-secondary" - ], - "references": [ - { - "description": "Use as the default background for control elements like form inputs and menu toggles.", - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default background for control elements like form inputs and menu toggles.", - "type": "color", - "value": "{global.dark.background.color.300}" - }, - "name": "pf-t--global--background--color--control--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "control", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "control", - "default" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--background--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "background", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--color--status--read--on-primary": { - "description": "Use as the default color for elements that convey a read status and are placed on a primary background", - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for elements that convey a read status and are placed on a primary background", - "type": "color", - "value": "{global.background.color.secondary.default}" - }, - "name": "pf-t--global--color--status--read--on-primary", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "read", - "state": "on-primary" - }, - "path": [ - "global", - "color", - "status", - "read", - "on-primary" - ], - "references": [ - { - "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", - "type": "color", - "value": "{global.dark.background.color.100}" - }, - "name": "pf-t--global--background--color--secondary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "secondary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "secondary", - "default" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--dark--background--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "background", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--color--severity--undefined--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--severity--undefined--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "undefined", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "undefined", - "100" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, - "pf-t--global--color--severity--none--100": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--severity--none--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "none", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "none", - "100" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - }, - "pf-t--global--color--severity--minor--100": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--color--severity--minor--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "minor", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "minor", - "100" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - }, - "pf-t--global--color--severity--moderate--100": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--severity--moderate--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "moderate", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "moderate", - "100" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - }, - "pf-t--global--color--severity--important--100": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--global--color--severity--important--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "important", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "important", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - }, - "pf-t--global--color--severity--critical--100": { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--severity--critical--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "critical", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "critical", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - }, - "pf-t--global--color--nonstatus--red--100": { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red.20}" - }, - "name": "pf-t--global--color--nonstatus--red--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "100" - ], - "references": [ - { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--red--200": { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red.30}" - }, - "name": "pf-t--global--color--nonstatus--red--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--red--300": { - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red.40}" - }, - "name": "pf-t--global--color--nonstatus--red--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f56e6e" - }, - "name": "pf-t--color--red--40", - "attributes": { - "category": "color", - "type": "red", - "item": "40" - }, - "path": [ - "color", - "red", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--red--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.dark.color.nonstatus.red.100}" - }, - "name": "pf-t--global--color--nonstatus--red--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--red--hover": { - "description": "Use as the hover state color for any element that uses the non status red background color.", - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status red background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.red.200}" - }, - "name": "pf-t--global--color--nonstatus--red--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--red--clicked": { - "description": "Use as the clicked state color for any element that uses the non status red background color.", - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status red background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.red.200}" - }, - "name": "pf-t--global--color--nonstatus--red--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--orangered--100": { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--color--nonstatus--orangered--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "100" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--orangered--200": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orangered--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--orangered--300": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--color--nonstatus--orangered--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--orangered--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.dark.color.nonstatus.orangered.100}" - }, - "name": "pf-t--global--color--nonstatus--orangered--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--orangered--hover": { - "description": "Use as the hover state color for any element that uses the non status orange-red background color.", - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status orange-red background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.orangered.200}" - }, - "name": "pf-t--global--color--nonstatus--orangered--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--orangered--clicked": { - "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.orangered.200}" - }, - "name": "pf-t--global--color--nonstatus--orangered--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--orange--100": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--global--color--nonstatus--orange--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--orange--200": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orange--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--orange--300": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--global--color--nonstatus--orange--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--orange--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.dark.color.nonstatus.orange.100}" - }, - "name": "pf-t--global--color--nonstatus--orange--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--orange--hover": { - "description": "Use as the hover state color for any element that uses the non status orange background color.", - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status orange background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.orange.200}" - }, - "name": "pf-t--global--color--nonstatus--orange--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--orange--clicked": { - "description": "Use as the clicked state color for any element that uses the non status orange background color.", - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status orange background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.orange.200}" - }, - "name": "pf-t--global--color--nonstatus--orange--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--yellow--100": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--color--nonstatus--yellow--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--yellow--200": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--nonstatus--yellow--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--yellow--300": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--nonstatus--yellow--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--yellow--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.dark.color.nonstatus.yellow.100}" - }, - "name": "pf-t--global--color--nonstatus--yellow--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--yellow--hover": { - "description": "Use as the hover state color for any element that uses the non status yellow background color.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status yellow background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.yellow.200}" - }, - "name": "pf-t--global--color--nonstatus--yellow--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--yellow--clicked": { - "description": "Use as the clicked state color for any element that uses the non status yellow background color.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status yellow background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.yellow.200}" - }, - "name": "pf-t--global--color--nonstatus--yellow--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--green--100": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--color--nonstatus--green--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--green--200": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--green--300": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--color--nonstatus--green--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--green--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.dark.color.nonstatus.green.100}" - }, - "name": "pf-t--global--color--nonstatus--green--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "default" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--green--hover": { - "description": "Use as the hover state color for any element that uses the non status green background color.", - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status green background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.green.200}" - }, - "name": "pf-t--global--color--nonstatus--green--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--green--clicked": { - "description": "Use as the clicked state color for any element that uses the non status green background color.", - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status green background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.green.200}" - }, - "name": "pf-t--global--color--nonstatus--green--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--teal--100": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--color--nonstatus--teal--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--teal--200": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--color--nonstatus--teal--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--teal--300": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--color--nonstatus--teal--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--teal--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.dark.color.nonstatus.teal.100}" - }, - "name": "pf-t--global--color--nonstatus--teal--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "default" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--teal--hover": { - "description": "Use as the hover state color for any element that uses the non status teal background color.", - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status teal background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.teal.200}" - }, - "name": "pf-t--global--color--nonstatus--teal--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--teal--clicked": { - "description": "Use as the clicked state color for any element that uses the non status teal background color.", - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status teal background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.teal.200}" - }, - "name": "pf-t--global--color--nonstatus--teal--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--blue--100": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--color--nonstatus--blue--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--blue--200": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--color--nonstatus--blue--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--blue--300": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--nonstatus--blue--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--blue--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.dark.color.nonstatus.blue.100}" - }, - "name": "pf-t--global--color--nonstatus--blue--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "default" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--blue--hover": { - "description": "Use as the hover state color for any element that uses the non status blue background color.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status blue background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.blue.200}" - }, - "name": "pf-t--global--color--nonstatus--blue--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--blue--clicked": { - "description": "Use as the clicked state color for any element that uses the non status blue background color.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status blue background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.blue.200}" - }, - "name": "pf-t--global--color--nonstatus--blue--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--purple--100": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--color--nonstatus--purple--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "100" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--purple--200": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--color--nonstatus--purple--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--purple--300": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--global--color--nonstatus--purple--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "300" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--purple--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.dark.color.nonstatus.purple.100}" - }, - "name": "pf-t--global--color--nonstatus--purple--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--purple--hover": { - "description": "Use as the hover state color for any element that uses the non status purple background color.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status purple background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.purple.200}" - }, - "name": "pf-t--global--color--nonstatus--purple--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--purple--clicked": { - "description": "Use as the clicked state color for any element that uses the non status purple background color.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status purple background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.purple.200}" - }, - "name": "pf-t--global--color--nonstatus--purple--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--100": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--color--nonstatus--gray--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "100" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--200": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--300": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--nonstatus--gray--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "300" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.dark.color.nonstatus.gray.100}" - }, - "name": "pf-t--global--color--nonstatus--gray--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "default" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "100" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--hover": { - "description": "Use as the hover state color for any element that uses the non status gray background color.", - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status gray background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.gray.200}" - }, - "name": "pf-t--global--color--nonstatus--gray--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--clicked": { - "description": "Use as the clicked state color for any element that uses the non status gray background color.", - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status gray background color.", - "type": "color", - "value": "{global.dark.color.nonstatus.gray.200}" - }, - "name": "pf-t--global--color--nonstatus--gray--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--100": { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - }, - "pf-t--global--text--color--200": { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--global--text--color--200", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "text", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] - }, - "pf-t--global--text--color--300": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - }, - "pf-t--global--text--color--400": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--text--color--400", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "400" - }, - "path": [ - "global", - "text", - "color", - "400" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - }, - "pf-t--global--text--color--link--100": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--text--color--link--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "100" - }, - "path": [ - "global", - "text", - "color", - "link", - "100" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - }, - "pf-t--global--text--color--link--200": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--text--color--link--200", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "200" - }, - "path": [ - "global", - "text", - "color", - "link", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - }, - "pf-t--global--text--color--link--300": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--text--color--link--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "300" - }, - "path": [ - "global", - "text", - "color", - "link", - "300" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - }, - "pf-t--global--text--color--link--default": { - "description": "Use as the default text color for links.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default text color for links.", - "type": "color", - "value": "{global.dark.text.color.link.100}" - }, - "name": "pf-t--global--text--color--link--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "default" - }, - "path": [ - "global", - "text", - "color", - "link", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--text--color--link--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "link" - }, - "path": [ - "global", - "dark", - "text", - "color", - "link", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--link--hover": { - "description": "Use as the hover state text color for links.", - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state text color for links.", - "type": "color", - "value": "{global.dark.text.color.link.200}" - }, - "name": "pf-t--global--text--color--link--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "hover" - }, - "path": [ - "global", - "text", - "color", - "link", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--text--color--link--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "link" - }, - "path": [ - "global", - "dark", - "text", - "color", - "link", - "200" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--link--visited": { - "description": "Use as the color to indicate that a link has been visited.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color to indicate that a link has been visited.", - "type": "color", - "value": "{global.dark.text.color.link.300}" - }, - "name": "pf-t--global--text--color--link--visited", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "visited" - }, - "path": [ - "global", - "text", - "color", - "link", - "visited" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--text--color--link--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "link" - }, - "path": [ - "global", - "dark", - "text", - "color", - "link", - "300" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--brand--default": { - "description": "Use as the default color for branded text.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for branded text.", - "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--text--color--brand--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "default" - }, - "path": [ - "global", - "text", - "color", - "brand", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--brand--hover": { - "description": "Use as the hover state color for branded text.", - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for branded text.", - "type": "color", - "value": "{global.dark.color.brand.300}" - }, - "name": "pf-t--global--text--color--brand--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "hover" - }, - "path": [ - "global", - "text", - "color", - "brand", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--color--brand--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--brand--clicked": { - "description": "Use as the clicked state color for branded text.", - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for branded text.", - "type": "color", - "value": "{global.dark.color.brand.300}" - }, - "name": "pf-t--global--text--color--brand--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "clicked" - }, - "path": [ - "global", - "text", - "color", - "brand", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--color--brand--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--regular": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.dark.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--dark--text--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--subtle": { - "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", - "type": "color", - "value": "{global.dark.text.color.200}" - }, - "name": "pf-t--global--text--color--subtle", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "subtle" - }, - "path": [ - "global", - "text", - "color", - "subtle" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--dark--text--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "text", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--inverse": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--on-brand--default": { - "description": "Use as the default color for text placed on a brand-colored background.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text placed on a brand-colored background.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--on-brand--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-brand", - "state": "default" - }, - "path": [ - "global", - "text", - "color", - "on-brand", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--on-brand--hover": { - "description": "Use as the hover state color for text placed on a brand-colored background.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text placed on a brand-colored background.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--on-brand--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-brand", - "state": "hover" - }, - "path": [ - "global", - "text", - "color", - "on-brand", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--on-brand--clicked": { - "description": "Use as the clicked state color for text placed on a brand-colored background.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text placed on a brand-colored background.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--on-brand--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-brand", - "state": "clicked" - }, - "path": [ - "global", - "text", - "color", - "on-brand", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--placeholder": { - "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", - "type": "color", - "value": "{global.text.color.subtle}" - }, - "name": "pf-t--global--text--color--placeholder", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "placeholder" - }, - "path": [ - "global", - "text", - "color", - "placeholder" - ], - "references": [ - { - "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", - "type": "color", - "value": "{global.dark.text.color.200}" - }, - "name": "pf-t--global--text--color--subtle", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "subtle" - }, - "path": [ - "global", - "text", - "color", - "subtle" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--dark--text--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "text", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--disabled": { - "description": "Use as the color of text on disabled elements, like disabled menu items.", - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text on disabled elements, like disabled menu items.", - "type": "color", - "value": "{global.dark.color.disabled.200}" - }, - "name": "pf-t--global--text--color--disabled", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "disabled" - }, - "path": [ - "global", - "text", - "color", - "disabled" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--dark--color--disabled--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "200" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--on-disabled": { - "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", - "type": "color", - "value": "{global.dark.color.disabled.300}" - }, - "name": "pf-t--global--text--color--on-disabled", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-disabled" - }, - "path": [ - "global", - "text", - "color", - "on-disabled" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--color--disabled--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "300" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--required": { - "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", - "type": "color", - "value": "{global.dark.text.color.400}" - }, - "name": "pf-t--global--text--color--required", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "required" - }, - "path": [ - "global", - "text", - "color", - "required" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--dark--text--color--400", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "400" - }, - "path": [ - "global", - "dark", - "text", - "color", - "400" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--on-highlight": { - "description": "Use as the color of text that is highlighted.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is highlighted.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--on-highlight", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-highlight" - }, - "path": [ - "global", - "text", - "color", - "on-highlight" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--success--default": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.status.success.default}" - }, - "name": "pf-t--global--text--color--status--success--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "text", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "{global.dark.color.status.success.100}" - }, - "name": "pf-t--global--color--status--success--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--dark--color--status--success--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--success--hover": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.status.success.hover}" - }, - "name": "pf-t--global--text--color--status--success--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "text", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "{global.dark.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--success--clicked": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.status.success.clicked}" - }, - "name": "pf-t--global--text--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "text", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "{global.dark.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-success--default": { - "description": "Use as the default color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-success--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-success", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-success--hover": { - "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-success--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-success", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-success--clicked": { - "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-success--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-success", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--warning--default": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.status.warning.default}" - }, - "name": "pf-t--global--text--color--status--warning--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "warning", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", - "type": "color", - "value": "{global.dark.color.status.warning.100}" - }, - "name": "pf-t--global--color--status--warning--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "warning", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--status--warning--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--warning--hover": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.status.warning.hover}" - }, - "name": "pf-t--global--text--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a warning status.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a warning status.", - "type": "color", - "value": "{global.dark.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--warning--clicked": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.status.warning.clicked}" - }, - "name": "pf-t--global--text--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a warning status.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a warning status.", - "type": "color", - "value": "{global.dark.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-warning--default": { - "description": "Use as the default color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-warning--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-warning", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-warning--hover": { - "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-warning--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-warning", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-warning--clicked": { - "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-warning--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-warning", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--danger--default": { - "description": "Use as the default color for text that communicates a danger status.", - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that communicates a danger status.", - "type": "color", - "value": "{global.dark.color.status.danger.250}" - }, - "name": "pf-t--global--text--color--status--danger--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--dark--color--status--danger--250", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "250" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--danger--hover": { - "description": "Use as the hover state color for text that communicates a danger status.", - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that communicates a danger status.", - "type": "color", - "value": "{global.dark.color.status.danger.300}" - }, - "name": "pf-t--global--text--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--dark--color--status--danger--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "300" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--danger--clicked": { - "description": "Use as the clicked state color for text that communicates a danger status.", - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that communicates a danger status.", - "type": "color", - "value": "{global.dark.color.status.danger.300}" - }, - "name": "pf-t--global--text--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--dark--color--status--danger--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "300" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-danger--default": { - "description": "Use as the default color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-danger--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-danger", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-danger--hover": { - "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-danger--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-danger", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-danger--clicked": { - "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-danger--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-danger", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--info--default": { - "description": "Use as the default color for text that communicates am info status.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that communicates am info status.", - "type": "color", - "value": "{global.color.status.info.default}" - }, - "name": "pf-t--global--text--color--status--info--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "text", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "{global.dark.color.status.info.100}" - }, - "name": "pf-t--global--color--status--info--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--color--status--info--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--info--hover": { - "description": "Use as the hover state color for text that communicates an infostatus.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that communicates an infostatus.", - "type": "color", - "value": "{global.color.status.info.hover}" - }, - "name": "pf-t--global--text--color--status--info--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "text", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "{global.dark.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--info--clicked": { - "description": "Use as the clicked state color for text that communicates an info status.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that communicates an info status.", - "type": "color", - "value": "{global.color.status.info.clicked}" - }, - "name": "pf-t--global--text--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "text", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "{global.dark.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-info--default": { - "description": "Use as the default color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-info--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-info", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-info--hover": { - "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-info--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-info", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-info--clicked": { - "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-info--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-info", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--custom--default": { - "description": "Use as the default color for text that communicates a custom status.", - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that communicates a custom status.", - "type": "color", - "value": "{global.color.status.custom.default}" - }, - "name": "pf-t--global--text--color--status--custom--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.dark.color.status.custom.100}" - }, - "name": "pf-t--global--color--status--custom--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--dark--color--status--custom--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--custom--hover": { - "description": "Use as the hover state color for text that communicates a custom status.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that communicates a custom status.", - "type": "color", - "value": "{global.color.status.custom.hover}" - }, - "name": "pf-t--global--text--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.dark.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--custom--clicked": { - "description": "Use as the clicked state color for text that communicates a custom status.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that communicates a custom status.", - "type": "color", - "value": "{global.color.status.custom.clicked}" - }, - "name": "pf-t--global--text--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.dark.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-custom--default": { - "description": "Use as the default color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-custom--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-custom", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-custom--hover": { - "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-custom--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-custom", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-custom--clicked": { - "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-custom--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-custom", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--unread--on-default--default": { - "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-default--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-default", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--unread--on-default--hover": { - "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-default--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-default", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--unread--on-default--clicked": { - "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-default--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-default", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--unread--on-attention--default": { - "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-attention--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-attention", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--unread--on-attention--hover": { - "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-attention--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-attention", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--unread--on-attention--clicked": { - "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-attention--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-attention", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-red--default": { - "description": "Use as the default color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-red--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-red", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-red--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-red--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-red", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-red--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-red--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-red", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-orangered--default": { - "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orangered--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orangered", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-orangered--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orangered--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orangered", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-orangered--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orangered--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orangered", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-orange--default": { - "description": "Use as the default color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orange--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orange", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-orange--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orange--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orange", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-orange--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orange--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orange", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-yellow--default": { - "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-yellow--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-yellow", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-yellow--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-yellow--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-yellow", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-yellow--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-yellow--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-yellow", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-green--default": { - "description": "Use as the default color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-green--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-green", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-green--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-green--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-green", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-green--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-green--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-green", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-teal--default": { - "description": "Use as the default color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-teal--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-teal", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-teal--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-teal--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-teal", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-teal--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-teal--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-teal", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-blue--default": { - "description": "Use as the default color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-blue--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-blue", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-blue--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-blue--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-blue", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-blue--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-blue--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-blue", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-purple--default": { - "description": "Use as the default color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-purple--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-purple", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-purple--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-purple--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-purple", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-purple--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-purple--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-purple", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-gray--default": { - "description": "Use as the default color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-gray--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-gray", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-gray--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-gray--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-gray", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-gray--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-gray--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-gray", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--duration--50": { - "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 50 - }, - "name": "pf-t--global--duration--50", - "attributes": { - "category": "global", - "type": "duration", - "item": "50" - }, - "path": [ - "global", - "duration", - "50" - ] - }, - "pf-t--global--duration--100": { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 100 - }, - "name": "pf-t--global--duration--100", - "attributes": { - "category": "global", - "type": "duration", - "item": "100" - }, - "path": [ - "global", - "duration", - "100" - ] - }, - "pf-t--global--duration--200": { - "type": "number", - "value": "200ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 200 - }, - "name": "pf-t--global--duration--200", - "attributes": { - "category": "global", - "type": "duration", - "item": "200" - }, - "path": [ - "global", - "duration", - "200" - ] - }, - "pf-t--global--duration--300": { - "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - }, - "pf-t--global--duration--400": { - "type": "number", - "value": "400ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--duration--400", - "attributes": { - "category": "global", - "type": "duration", - "item": "400" - }, - "path": [ - "global", - "duration", - "400" - ] - }, - "pf-t--global--duration--500": { - "type": "number", - "value": "500ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 500 - }, - "name": "pf-t--global--duration--500", - "attributes": { - "category": "global", - "type": "duration", - "item": "500" - }, - "path": [ - "global", - "duration", - "500" - ] - }, - "pf-t--global--duration--600": { - "type": "number", - "value": "600ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 600 - }, - "name": "pf-t--global--duration--600", - "attributes": { - "category": "global", - "type": "duration", - "item": "600" - }, - "path": [ - "global", - "duration", - "600" - ] - }, - "pf-t--global--delay--100": { - "type": "number", - "value": "0ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--delay--100", - "attributes": { - "category": "global", - "type": "delay", - "item": "100" - }, - "path": [ - "global", - "delay", - "100" - ] - }, - "pf-t--global--delay--200": { - "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 50 - }, - "name": "pf-t--global--delay--200", - "attributes": { - "category": "global", - "type": "delay", - "item": "200" - }, - "path": [ - "global", - "delay", - "200" - ] - }, - "pf-t--global--delay--300": { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 100 - }, - "name": "pf-t--global--delay--300", - "attributes": { - "category": "global", - "type": "delay", - "item": "300" - }, - "path": [ - "global", - "delay", - "300" - ] - }, - "pf-t--global--delay--400": { - "type": "number", - "value": "7000ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 7000 - }, - "name": "pf-t--global--delay--400", - "attributes": { - "category": "global", - "type": "delay", - "item": "400" - }, - "path": [ - "global", - "delay", - "400" - ] - }, - "pf-t--global--timing-function--100": { - "type": "string", - "value": "cubic-bezier(.4, 0, .7, .2)", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "string", - "value": "cubic-bezier(.4, 0, .7, .2)" - }, - "name": "pf-t--global--timing-function--100", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "100" - }, - "path": [ - "global", - "timing-function", - "100" - ] - }, - "pf-t--global--timing-function--200": { - "type": "string", - "value": "cubic-bezier(.4, 0, .2, 1)", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "string", - "value": "cubic-bezier(.4, 0, .2, 1)" - }, - "name": "pf-t--global--timing-function--200", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "200" - }, - "path": [ - "global", - "timing-function", - "200" - ] - }, - "pf-t--global--timing-function--300": { - "type": "string", - "value": "cubic-bezier(0, 0, .2, 1)", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "string", - "value": "cubic-bezier(0, 0, .2, 1)" - }, - "name": "pf-t--global--timing-function--300", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "300" - }, - "path": [ - "global", - "timing-function", - "300" - ] - }, - "pf-t--global--motion--duration--xs": { - "description": "Use for the quickest possible duration of an animation.", - "type": "number", - "value": "50ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for the quickest possible duration of an animation.", - "type": "number", - "value": "{global.duration.50}" - }, - "name": "pf-t--global--motion--duration--xs", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xs" - }, - "path": [ - "global", - "motion", - "duration", - "xs" - ], - "references": [ - { - "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 50 - }, - "name": "pf-t--global--duration--50", - "attributes": { - "category": "global", - "type": "duration", - "item": "50" - }, - "path": [ - "global", - "duration", - "50" - ] - } - ] - }, - "pf-t--global--motion--duration--sm": { - "description": "Use for a short animation duration. Use for simple and/or small animations.", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for a short animation duration. Use for simple and/or small animations.", - "type": "number", - "value": "{global.duration.100}" - }, - "name": "pf-t--global--motion--duration--sm", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "sm" - }, - "path": [ - "global", - "motion", - "duration", - "sm" - ], - "references": [ - { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 100 - }, - "name": "pf-t--global--duration--100", - "attributes": { - "category": "global", - "type": "duration", - "item": "100" - }, - "path": [ - "global", - "duration", - "100" - ] - } - ] - }, - "pf-t--global--motion--duration--md": { - "description": "Use for a medium animation duration.", - "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for a medium animation duration.", - "type": "number", - "value": "{global.duration.200}" - }, - "name": "pf-t--global--motion--duration--md", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "md" - }, - "path": [ - "global", - "motion", - "duration", - "md" - ], - "references": [ - { - "type": "number", - "value": "200ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 200 - }, - "name": "pf-t--global--duration--200", - "attributes": { - "category": "global", - "type": "duration", - "item": "200" - }, - "path": [ - "global", - "duration", - "200" - ] - } - ] - }, - "pf-t--global--motion--duration--lg": { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "{global.duration.300}" - }, - "name": "pf-t--global--motion--duration--lg", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "lg" - }, - "path": [ - "global", - "motion", - "duration", - "lg" - ], - "references": [ - { - "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - } - ] - }, - "pf-t--global--motion--duration--xl": { - "description": "Use for extra long animation duration.", - "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for extra long animation duration.", - "type": "number", - "value": "{global.duration.400}" - }, - "name": "pf-t--global--motion--duration--xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xl" - }, - "path": [ - "global", - "motion", - "duration", - "xl" - ], - "references": [ - { - "type": "number", - "value": "400ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--duration--400", - "attributes": { - "category": "global", - "type": "duration", - "item": "400" - }, - "path": [ - "global", - "duration", - "400" - ] - } - ] - }, - "pf-t--global--motion--duration--2xl": { - "description": "Use for significantly long animation duration.", - "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for significantly long animation duration.", - "type": "number", - "value": "{global.duration.500}" - }, - "name": "pf-t--global--motion--duration--2xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "2xl" - }, - "path": [ - "global", - "motion", - "duration", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "500ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 500 - }, - "name": "pf-t--global--duration--500", - "attributes": { - "category": "global", - "type": "duration", - "item": "500" - }, - "path": [ - "global", - "duration", - "500" - ] - } - ] - }, - "pf-t--global--motion--duration--3xl": { - "description": "Use for the longest possible duration of an animation.", - "type": "number", - "value": "600ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for the longest possible duration of an animation.", - "type": "number", - "value": "{global.duration.600}" - }, - "name": "pf-t--global--motion--duration--3xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "3xl" - }, - "path": [ - "global", - "motion", - "duration", - "3xl" - ], - "references": [ - { - "type": "number", - "value": "600ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 600 - }, - "name": "pf-t--global--duration--600", - "attributes": { - "category": "global", - "type": "duration", - "item": "600" - }, - "path": [ - "global", - "duration", - "600" - ] - } - ] - }, - "pf-t--global--motion--duration--fade--short": { - "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", - "type": "number", - "value": "{global.motion.duration.sm}" - }, - "name": "pf-t--global--motion--duration--fade--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "fade", - "state": "short" - }, - "path": [ - "global", - "motion", - "duration", - "fade", - "short" - ], - "references": [ - { - "description": "Use for a short animation duration. Use for simple and/or small animations.", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for a short animation duration. Use for simple and/or small animations.", - "type": "number", - "value": "{global.duration.100}" - }, - "name": "pf-t--global--motion--duration--sm", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "sm" - }, - "path": [ - "global", - "motion", - "duration", - "sm" - ], - "references": [ - { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 100 - }, - "name": "pf-t--global--duration--100", - "attributes": { - "category": "global", - "type": "duration", - "item": "100" - }, - "path": [ - "global", - "duration", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--fade--default": { - "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", - "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", - "type": "number", - "value": "{global.motion.duration.md}" - }, - "name": "pf-t--global--motion--duration--fade--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "fade", - "state": "default" - }, - "path": [ - "global", - "motion", - "duration", - "fade", - "default" - ], - "references": [ - { - "description": "Use for a medium animation duration.", - "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for a medium animation duration.", - "type": "number", - "value": "{global.duration.200}" - }, - "name": "pf-t--global--motion--duration--md", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "md" - }, - "path": [ - "global", - "motion", - "duration", - "md" - ], - "references": [ - { - "type": "number", - "value": "200ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 200 - }, - "name": "pf-t--global--duration--200", - "attributes": { - "category": "global", - "type": "duration", - "item": "200" - }, - "path": [ - "global", - "duration", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--fade--long": { - "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", - "type": "number", - "value": "{global.motion.duration.lg}" - }, - "name": "pf-t--global--motion--duration--fade--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "fade", - "state": "long" - }, - "path": [ - "global", - "motion", - "duration", - "fade", - "long" - ], - "references": [ - { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "{global.duration.300}" - }, - "name": "pf-t--global--motion--duration--lg", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "lg" - }, - "path": [ - "global", - "motion", - "duration", - "lg" - ], - "references": [ - { - "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--slide-out--short": { - "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "{global.motion.duration.lg}" - }, - "name": "pf-t--global--motion--duration--slide-out--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-out", - "state": "short" - }, - "path": [ - "global", - "motion", - "duration", - "slide-out", - "short" - ], - "references": [ - { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "{global.duration.300}" - }, - "name": "pf-t--global--motion--duration--lg", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "lg" - }, - "path": [ - "global", - "motion", - "duration", - "lg" - ], - "references": [ - { - "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--slide-out--default": { - "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "{global.motion.duration.xl}" - }, - "name": "pf-t--global--motion--duration--slide-out--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-out", - "state": "default" - }, - "path": [ - "global", - "motion", - "duration", - "slide-out", - "default" - ], - "references": [ - { - "description": "Use for extra long animation duration.", - "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for extra long animation duration.", - "type": "number", - "value": "{global.duration.400}" - }, - "name": "pf-t--global--motion--duration--xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xl" - }, - "path": [ - "global", - "motion", - "duration", - "xl" - ], - "references": [ - { - "type": "number", - "value": "400ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--duration--400", - "attributes": { - "category": "global", - "type": "duration", - "item": "400" - }, - "path": [ - "global", - "duration", - "400" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--slide-out--long": { - "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "{global.motion.duration.2xl}" - }, - "name": "pf-t--global--motion--duration--slide-out--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-out", - "state": "long" - }, - "path": [ - "global", - "motion", - "duration", - "slide-out", - "long" - ], - "references": [ - { - "description": "Use for significantly long animation duration.", - "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for significantly long animation duration.", - "type": "number", - "value": "{global.duration.500}" - }, - "name": "pf-t--global--motion--duration--2xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "2xl" - }, - "path": [ - "global", - "motion", - "duration", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "500ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 500 - }, - "name": "pf-t--global--duration--500", - "attributes": { - "category": "global", - "type": "duration", - "item": "500" - }, - "path": [ - "global", - "duration", - "500" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--slide-in--short": { - "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "{global.motion.duration.lg}" - }, - "name": "pf-t--global--motion--duration--slide-in--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-in", - "state": "short" - }, - "path": [ - "global", - "motion", - "duration", - "slide-in", - "short" - ], - "references": [ - { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "{global.duration.300}" - }, - "name": "pf-t--global--motion--duration--lg", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "lg" - }, - "path": [ - "global", - "motion", - "duration", - "lg" - ], - "references": [ - { - "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--slide-in--default": { - "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "{global.motion.duration.xl}" - }, - "name": "pf-t--global--motion--duration--slide-in--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-in", - "state": "default" - }, - "path": [ - "global", - "motion", - "duration", - "slide-in", - "default" - ], - "references": [ - { - "description": "Use for extra long animation duration.", - "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for extra long animation duration.", - "type": "number", - "value": "{global.duration.400}" - }, - "name": "pf-t--global--motion--duration--xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xl" - }, - "path": [ - "global", - "motion", - "duration", - "xl" - ], - "references": [ - { - "type": "number", - "value": "400ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--duration--400", - "attributes": { - "category": "global", - "type": "duration", - "item": "400" - }, - "path": [ - "global", - "duration", - "400" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--slide-in--long": { - "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "{global.motion.duration.2xl}" - }, - "name": "pf-t--global--motion--duration--slide-in--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-in", - "state": "long" - }, - "path": [ - "global", - "motion", - "duration", - "slide-in", - "long" - ], - "references": [ - { - "description": "Use for significantly long animation duration.", - "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for significantly long animation duration.", - "type": "number", - "value": "{global.duration.500}" - }, - "name": "pf-t--global--motion--duration--2xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "2xl" - }, - "path": [ - "global", - "motion", - "duration", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "500ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 500 - }, - "name": "pf-t--global--duration--500", - "attributes": { - "category": "global", - "type": "duration", - "item": "500" - }, - "path": [ - "global", - "duration", - "500" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--icon--short": { - "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", - "type": "number", - "value": "50ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", - "type": "number", - "value": "{global.motion.duration.xs}" - }, - "name": "pf-t--global--motion--duration--icon--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "icon", - "state": "short" - }, - "path": [ - "global", - "motion", - "duration", - "icon", - "short" - ], - "references": [ - { - "description": "Use for the quickest possible duration of an animation.", - "type": "number", - "value": "50ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for the quickest possible duration of an animation.", - "type": "number", - "value": "{global.duration.50}" - }, - "name": "pf-t--global--motion--duration--xs", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xs" - }, - "path": [ - "global", - "motion", - "duration", - "xs" - ], - "references": [ - { - "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 50 - }, - "name": "pf-t--global--duration--50", - "attributes": { - "category": "global", - "type": "duration", - "item": "50" - }, - "path": [ - "global", - "duration", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--icon--default": { - "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", - "type": "number", - "value": "{global.motion.duration.sm}" - }, - "name": "pf-t--global--motion--duration--icon--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "icon", - "state": "default" - }, - "path": [ - "global", - "motion", - "duration", - "icon", - "default" - ], - "references": [ - { - "description": "Use for a short animation duration. Use for simple and/or small animations.", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for a short animation duration. Use for simple and/or small animations.", - "type": "number", - "value": "{global.duration.100}" - }, - "name": "pf-t--global--motion--duration--sm", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "sm" - }, - "path": [ - "global", - "motion", - "duration", - "sm" - ], - "references": [ - { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 100 - }, - "name": "pf-t--global--duration--100", - "attributes": { - "category": "global", - "type": "duration", - "item": "100" - }, - "path": [ - "global", - "duration", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--icon--long": { - "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", - "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", - "type": "number", - "value": "{global.motion.duration.md}" - }, - "name": "pf-t--global--motion--duration--icon--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "icon", - "state": "long" - }, - "path": [ - "global", - "motion", - "duration", - "icon", - "long" - ], - "references": [ - { - "description": "Use for a medium animation duration.", - "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use for a medium animation duration.", - "type": "number", - "value": "{global.duration.200}" - }, - "name": "pf-t--global--motion--duration--md", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "md" - }, - "path": [ - "global", - "motion", - "duration", - "md" - ], - "references": [ - { - "type": "number", - "value": "200ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 200 - }, - "name": "pf-t--global--duration--200", - "attributes": { - "category": "global", - "type": "duration", - "item": "200" - }, - "path": [ - "global", - "duration", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--motion--delay--none": { - "description": "Use when there should be no delay before an animation plays.", - "type": "number", - "value": "0ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use when there should be no delay before an animation plays.", - "type": "number", - "value": "{global.delay.100}" - }, - "name": "pf-t--global--motion--delay--none", - "attributes": { - "category": "global", - "type": "motion", - "item": "delay", - "subitem": "none" - }, - "path": [ - "global", - "motion", - "delay", - "none" - ], - "references": [ - { - "type": "number", - "value": "0ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--delay--100", - "attributes": { - "category": "global", - "type": "delay", - "item": "100" - }, - "path": [ - "global", - "delay", - "100" - ] - } - ] - }, - "pf-t--global--motion--delay--short": { - "description": "Use when there should be a short delay before an animation plays.", - "type": "number", - "value": "50ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use when there should be a short delay before an animation plays.", - "type": "number", - "value": "{global.delay.200}" - }, - "name": "pf-t--global--motion--delay--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "delay", - "subitem": "short" - }, - "path": [ - "global", - "motion", - "delay", - "short" - ], - "references": [ - { - "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 50 - }, - "name": "pf-t--global--delay--200", - "attributes": { - "category": "global", - "type": "delay", - "item": "200" - }, - "path": [ - "global", - "delay", - "200" - ] - } - ] - }, - "pf-t--global--motion--delay--default": { - "description": "Use when there should be the default delay length before an animation plays.", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use when there should be the default delay length before an animation plays.", - "type": "number", - "value": "{global.delay.300}" - }, - "name": "pf-t--global--motion--delay--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "delay", - "subitem": "default" - }, - "path": [ - "global", - "motion", - "delay", - "default" - ], - "references": [ - { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 100 - }, - "name": "pf-t--global--delay--300", - "attributes": { - "category": "global", - "type": "delay", - "item": "300" - }, - "path": [ - "global", - "delay", - "300" - ] - } - ] - }, - "pf-t--global--motion--delay--long": { - "description": "Use when there should be a long delay before an animation plays.", - "type": "number", - "value": "7000ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use when there should be a long delay before an animation plays.", - "type": "number", - "value": "{global.delay.400}" - }, - "name": "pf-t--global--motion--delay--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "delay", - "subitem": "long" - }, - "path": [ - "global", - "motion", - "delay", - "long" - ], - "references": [ - { - "type": "number", - "value": "7000ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "number", - "value": 7000 - }, - "name": "pf-t--global--delay--400", - "attributes": { - "category": "global", - "type": "delay", - "item": "400" - }, - "path": [ - "global", - "delay", - "400" - ] - } - ] - }, - "pf-t--global--motion--timing-function--accelerate": { - "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", - "type": "number", - "value": "cubic-bezier(.4, 0, .7, .2)", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", - "type": "number", - "value": "{global.timing-function.100}" - }, - "name": "pf-t--global--motion--timing-function--accelerate", - "attributes": { - "category": "global", - "type": "motion", - "item": "timing-function", - "subitem": "accelerate" - }, - "path": [ - "global", - "motion", - "timing-function", - "accelerate" - ], - "references": [ - { - "type": "string", - "value": "cubic-bezier(.4, 0, .7, .2)", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "string", - "value": "cubic-bezier(.4, 0, .7, .2)" - }, - "name": "pf-t--global--timing-function--100", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "100" - }, - "path": [ - "global", - "timing-function", - "100" - ] - } - ] - }, - "pf-t--global--motion--timing-function--default": { - "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", - "type": "number", - "value": "cubic-bezier(.4, 0, .2, 1)", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", - "type": "number", - "value": "{global.timing-function.200}" - }, - "name": "pf-t--global--motion--timing-function--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "timing-function", - "subitem": "default" - }, - "path": [ - "global", - "motion", - "timing-function", - "default" - ], - "references": [ - { - "type": "string", - "value": "cubic-bezier(.4, 0, .2, 1)", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "string", - "value": "cubic-bezier(.4, 0, .2, 1)" - }, - "name": "pf-t--global--timing-function--200", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "200" - }, - "path": [ - "global", - "timing-function", - "200" - ] - } - ] - }, - "pf-t--global--motion--timing-function--decelerate": { - "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", - "type": "number", - "value": "cubic-bezier(0, 0, .2, 1)", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { - "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", - "type": "number", - "value": "{global.timing-function.300}" - }, - "name": "pf-t--global--motion--timing-function--decelerate", - "attributes": { - "category": "global", - "type": "motion", - "item": "timing-function", - "subitem": "decelerate" - }, - "path": [ - "global", - "motion", - "timing-function", - "decelerate" - ], - "references": [ - { - "type": "string", - "value": "cubic-bezier(0, 0, .2, 1)", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "string", - "value": "cubic-bezier(0, 0, .2, 1)" - }, - "name": "pf-t--global--timing-function--300", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "300" - }, - "path": [ - "global", - "timing-function", - "300" - ] - } - ] - }, - "pf-t--global--dark--background--color--100": { - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--dark--background--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "background", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - }, - "pf-t--global--dark--background--color--200": { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - }, - "pf-t--global--dark--background--color--300": { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--background--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "background", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - }, - "pf-t--global--dark--background--color--400": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--dark--background--color--400", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "400" - }, - "path": [ - "global", - "dark", - "background", - "color", - "400" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - }, - "pf-t--global--dark--background--color--500": { - "type": "color", - "value": "rgba(21, 21, 21, 0.8000)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(21, 21, 21, 0.8000)" - }, - "name": "pf-t--global--dark--background--color--500", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "500" - }, - "path": [ - "global", - "dark", - "background", - "color", - "500" - ] - }, - "pf-t--global--dark--background--color--600": { - "type": "color", - "value": "rgba(199, 199, 199, 0.1500)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(199, 199, 199, 0.1500)" - }, - "name": "pf-t--global--dark--background--color--600", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "600" - }, - "path": [ - "global", - "dark", - "background", - "color", - "600" - ] - }, - "pf-t--global--dark--background--color--highlight--100": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--background--color--highlight--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "highlight" - }, - "path": [ - "global", - "dark", - "background", - "color", - "highlight", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - }, - "pf-t--global--dark--background--color--highlight--200": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--background--color--highlight--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "highlight" - }, - "path": [ - "global", - "dark", - "background", - "color", - "highlight", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--brand--100": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--brand--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--brand--200": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - }, - "pf-t--global--dark--color--brand--300": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--color--brand--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - }, - "pf-t--global--dark--color--disabled--100": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--color--disabled--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "100" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - }, - "pf-t--global--dark--color--disabled--200": { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--dark--color--disabled--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "200" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - }, - "pf-t--global--dark--color--disabled--300": { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--color--disabled--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "300" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - }, - "pf-t--global--dark--color--favorite--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--favorite--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "favorite", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "favorite", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--favorite--200": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--favorite--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "favorite", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "favorite", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - }, - "pf-t--global--dark--color--severity--undefined--100": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--color--severity--undefined--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "undefined" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "undefined", - "100" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - }, - "pf-t--global--dark--color--severity--none--100": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--severity--none--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "none" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "none", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--severity--minor--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--dark--color--severity--minor--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "minor" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "minor", - "100" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--severity--moderate--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--severity--moderate--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "moderate" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "moderate", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--severity--important--100": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--global--dark--color--severity--important--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "important" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "important", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - }, - "pf-t--global--dark--color--severity--critical--100": { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--global--dark--color--severity--critical--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "critical" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "critical", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] - }, - "pf-t--global--dark--color--status--success--100": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--dark--color--status--success--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - }, - "pf-t--global--dark--color--status--success--200": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--status--warning--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--status--warning--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--status--warning--200": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - }, - "pf-t--global--dark--color--status--danger--100": { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--global--dark--color--status--danger--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] - }, - "pf-t--global--dark--color--status--danger--200": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - }, - "pf-t--global--dark--color--status--danger--250": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--dark--color--status--danger--250", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "250" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--status--danger--300": { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--dark--color--status--danger--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "300" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - }, - "pf-t--global--dark--color--status--info--100": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--color--status--info--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--status--info--200": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - }, - "pf-t--global--dark--color--status--custom--100": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--dark--color--status--custom--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - }, - "pf-t--global--dark--color--status--custom--200": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--red--100": { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--red--200": { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--red--300": { - "type": "color", - "value": "#fce3e3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "300" - ], - "references": [ - { - "type": "color", - "value": "#fce3e3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fce3e3" - }, - "name": "pf-t--color--red--10", - "attributes": { - "category": "color", - "type": "red", - "item": "10" - }, - "path": [ - "color", - "red", - "10" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--orangered--100": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--orangered--200": { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--orangered--300": { - "type": "color", - "value": "#ffe3d9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffe3d9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe3d9" - }, - "name": "pf-t--color--red-orange--10", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "10" - }, - "path": [ - "color", - "red-orange", - "10" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--orange--100": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--orange--200": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--orange--300": { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--yellow--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--yellow--200": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--yellow--300": { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--green--100": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--green--200": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--green--300": { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--teal--100": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--teal--200": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--teal--300": { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--blue--100": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--blue--200": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--blue--300": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--purple--100": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--purple--200": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--purple--300": { - "type": "color", - "value": "#ece6ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ece6ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ece6ff" - }, - "name": "pf-t--color--purple--10", - "attributes": { - "category": "color", - "type": "purple", - "item": "10" - }, - "path": [ - "color", - "purple", - "10" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--gray--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "100" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--gray--200": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--gray--300": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - }, - "pf-t--global--dark--border--color--100": { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--dark--border--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "border", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "border", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - }, - "pf-t--global--dark--border--color--200": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--border--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "border", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "border", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - }, - "pf-t--global--dark--text--color--100": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--dark--text--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - }, - "pf-t--global--dark--text--color--200": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--dark--text--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "text", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, - "pf-t--global--dark--text--color--300": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - }, - "pf-t--global--dark--text--color--400": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--dark--text--color--400", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "400" - }, - "path": [ - "global", - "dark", - "text", - "color", - "400" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - }, - "pf-t--global--dark--text--color--link--100": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--text--color--link--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "link" - }, - "path": [ - "global", - "dark", - "text", - "color", - "link", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - }, - "pf-t--global--dark--text--color--link--200": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--text--color--link--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "link" - }, - "path": [ - "global", - "dark", - "text", - "color", - "link", - "200" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - }, - "pf-t--global--dark--text--color--link--300": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--text--color--link--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "link" - }, - "path": [ - "global", - "dark", - "text", - "color", - "link", - "300" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - }, - "pf-t--global--dark--icon--color--100": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--dark--icon--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - }, - "pf-t--global--dark--icon--color--200": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--icon--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - }, - "pf-t--global--dark--icon--color--300": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - }, - "pf-t--global--dark--box-shadow--color--100": { - "type": "color", - "value": "rgba(0, 0, 0, 0.5000)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(0, 0, 0, 0.5000)" - }, - "name": "pf-t--global--dark--box-shadow--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "box-shadow", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "box-shadow", - "color", - "100" - ] - }, - "pf-t--chart--color--blue--100": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - }, - "pf-t--chart--color--blue--200": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - }, - "pf-t--chart--color--blue--300": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--color--blue--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - }, - "pf-t--chart--color--blue--400": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--chart--color--blue--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "blue", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - }, - "pf-t--chart--color--blue--500": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--chart--color--blue--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "blue", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - }, - "pf-t--chart--color--green--100": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.50}" - }, - "name": "pf-t--chart--color--green--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } - ] - }, - "pf-t--chart--color--green--200": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--chart--color--green--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - }, - "pf-t--chart--color--green--300": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--chart--color--green--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - }, - "pf-t--chart--color--green--400": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - }, - "pf-t--chart--color--green--500": { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.10}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] - } - ] - }, - "pf-t--chart--color--teal--100": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] - }, - "pf-t--chart--color--teal--200": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - }, - "pf-t--chart--color--teal--300": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--chart--color--teal--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - }, - "pf-t--chart--color--teal--400": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--chart--color--teal--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "teal", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - }, - "pf-t--chart--color--teal--500": { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.10}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - } - ] - }, - "pf-t--chart--color--purple--100": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--chart--color--purple--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "purple", - "100" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - }, - "pf-t--chart--color--purple--200": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--chart--color--purple--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - }, - "pf-t--chart--color--purple--300": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--chart--color--purple--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "purple", - "300" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] - }, - "pf-t--chart--color--purple--400": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--chart--color--purple--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "purple", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - }, - "pf-t--chart--color--purple--500": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--chart--color--purple--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "purple", - "500" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - }, - "pf-t--chart--color--yellow--100": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - }, - "pf-t--chart--color--yellow--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--color--yellow--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - }, - "pf-t--chart--color--yellow--300": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--color--yellow--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--chart--color--yellow--400": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "yellow", - "400" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - }, - "pf-t--chart--color--yellow--500": { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.10}" - }, - "name": "pf-t--chart--color--yellow--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "yellow", - "500" - ], - "references": [ - { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] - } - ] - }, - "pf-t--chart--color--orange--100": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - }, - "pf-t--chart--color--orange--200": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--color--orange--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - }, - "pf-t--chart--color--orange--300": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--color--orange--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - }, - "pf-t--chart--color--orange--400": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--chart--color--orange--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "orange", - "400" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - }, - "pf-t--chart--color--orange--500": { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.10}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] - } - ] - }, - "pf-t--chart--color--red-orange--100": { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--chart--color--red-orange--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "red-orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] - }, - "pf-t--chart--color--red-orange--200": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--chart--color--red-orange--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "red-orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - }, - "pf-t--chart--color--red-orange--300": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--chart--color--red-orange--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "red-orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - }, - "pf-t--chart--color--red-orange--400": { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--chart--color--red-orange--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "red-orange", - "400" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - }, - "pf-t--chart--color--red-orange--500": { - "type": "color", - "value": "#ffe3d9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.10}" - }, - "name": "pf-t--chart--color--red-orange--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "red-orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#ffe3d9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe3d9" - }, - "name": "pf-t--color--red-orange--10", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "10" - }, - "path": [ - "color", - "red-orange", - "10" - ] - } - ] - }, - "pf-t--chart--color--black--100": { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--chart--color--black--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "black", - "100" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - }, - "pf-t--chart--color--black--200": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--chart--color--black--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "black", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - }, - "pf-t--chart--color--black--300": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--chart--color--black--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "black", - "300" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, - "pf-t--chart--color--black--400": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--chart--color--black--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "black", - "400" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - }, - "pf-t--chart--color--black--500": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--chart--color--black--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "black", - "500" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - }, - "pf-t--chart--global--BorderWidth--xs": { - "type": "number", - "value": 1, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--chart--global--BorderWidth--xs", - "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "xs" - }, - "path": [ - "chart", - "global", - "BorderWidth", - "xs" - ] - }, - "pf-t--chart--global--BorderWidth--sm": { - "type": "number", - "value": 2, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--chart--global--BorderWidth--sm", - "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "sm" - }, - "path": [ - "chart", - "global", - "BorderWidth", - "sm" - ] - }, - "pf-t--chart--global--BorderWidth--lg": { - "type": "number", - "value": 8, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--chart--global--BorderWidth--lg", - "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "lg" - }, - "path": [ - "chart", - "global", - "BorderWidth", - "lg" - ] - }, - "pf-t--chart--global--stroke--width--xs": { - "type": "number", - "value": 1, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--chart--global--stroke--width--xs", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke", - "subitem": "width", - "state": "xs" - }, - "path": [ - "chart", - "global", - "stroke", - "width", - "xs" - ] - }, - "pf-t--chart--global--stroke--width--sm": { - "type": "number", - "value": 2, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--chart--global--stroke--width--sm", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke", - "subitem": "width", - "state": "sm" - }, - "path": [ - "chart", - "global", - "stroke", - "width", - "sm" - ] - }, - "pf-t--chart--global--fill--color--100": { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--chart--global--fill--color--100", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "100" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] - }, - "pf-t--chart--global--fill--color--200": { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--chart--global--fill--color--200", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "200" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - }, - "pf-t--chart--global--fill--color--300": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--chart--global--fill--color--300", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "300" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - }, - "pf-t--chart--global--fill--color--400": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--chart--global--fill--color--400", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "400" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "400" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, - "pf-t--chart--global--fill--color--500": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--chart--global--fill--color--500", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "500" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - }, - "pf-t--chart--global--fill--color--700": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--chart--global--fill--color--700", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "700" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "700" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - }, - "pf-t--chart--global--fill--color--900": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--chart--global--fill--color--900", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "900" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "900" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - }, - "pf-t--chart--global--fill--color--white": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--chart--global--fill--color--white", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "white" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "white" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - }, - "pf-t--chart--global--warning--color--100": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--global--warning--color--100", - "attributes": { - "category": "chart", - "type": "global", - "item": "warning", - "subitem": "color", - "state": "100" - }, - "path": [ - "chart", - "global", - "warning", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - }, - "pf-t--chart--global--warning--color--200": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--global--warning--color--200", - "attributes": { - "category": "chart", - "type": "global", - "item": "warning", - "subitem": "color", - "state": "200" - }, - "path": [ - "chart", - "global", - "warning", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--chart--global--success--color--100": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--global--success--color--100", - "attributes": { - "category": "chart", - "type": "global", - "item": "success", - "subitem": "color", - "state": "100" - }, - "path": [ - "chart", - "global", - "success", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - }, - "pf-t--chart--global--danger--color--100": { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--chart--global--danger--color--100", - "attributes": { - "category": "chart", - "type": "global", - "item": "danger", - "subitem": "color", - "state": "100" - }, - "path": [ - "chart", - "global", - "danger", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] - }, - "pf-t--chart--global--FontSize--xs": { - "type": "number", - "value": 12, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--chart--global--FontSize--xs", - "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "xs" - }, - "path": [ - "chart", - "global", - "FontSize", - "xs" - ] - }, - "pf-t--chart--global--FontSize--sm": { - "type": "number", - "value": 14, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--chart--global--FontSize--sm", - "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "sm" - }, - "path": [ - "chart", - "global", - "FontSize", - "sm" - ] - }, - "pf-t--chart--global--FontSize--lg": { - "type": "number", - "value": 18, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "number", - "value": 18 - }, - "name": "pf-t--chart--global--FontSize--lg", - "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "lg" - }, - "path": [ - "chart", - "global", - "FontSize", - "lg" - ] - }, - "pf-t--chart--global--FontSize--2xl": { - "type": "number", - "value": 22, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--chart--global--FontSize--2xl", - "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "2xl" - }, - "path": [ - "chart", - "global", - "FontSize", - "2xl" - ] - }, - "pf-t--chart--global--letter-spacing": { - "type": "string", - "value": "normal", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "string", - "value": "normal" - }, - "name": "pf-t--chart--global--letter-spacing", - "attributes": { - "category": "chart", - "type": "global", - "item": "letter-spacing" - }, - "path": [ - "chart", - "global", - "letter-spacing" - ] - }, - "pf-t--chart--global--stroke-line-cap": { - "type": "string", - "value": "round", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "string", - "value": "round" - }, - "name": "pf-t--chart--global--stroke-line-cap", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke-line-cap" - }, - "path": [ - "chart", - "global", - "stroke-line-cap" - ] - }, - "pf-t--chart--global--label--padding": { - "type": "number", - "value": 10, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "number", - "value": 10 - }, - "name": "pf-t--chart--global--label--padding", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "padding" - }, - "path": [ - "chart", - "global", - "label", - "padding" - ] - }, - "pf-t--chart--global--label--margin": { - "type": "number", - "value": 8, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--chart--global--label--margin", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "margin" - }, - "path": [ - "chart", - "global", - "label", - "margin" - ] - }, - "pf-t--chart--global--label--stroke": { - "width": { - "type": "number", - "value": 0, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true - }, - "type": "string", - "value": "transparent", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "width": { - "type": "number", - "value": 0, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true - }, - "type": "string", - "value": "transparent" - }, - "name": "pf-t--chart--global--label--stroke", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "stroke" - }, - "path": [ - "chart", - "global", - "label", - "stroke" - ] - }, - "pf-t--chart--global--label--text-anchor": { - "type": "string", - "value": "middle", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "string", - "value": "middle" - }, - "name": "pf-t--chart--global--label--text-anchor", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "text-anchor" - }, - "path": [ - "chart", - "global", - "label", - "text-anchor" - ] - }, - "pf-t--chart--global--label--fill": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--chart--global--label--fill", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "fill" - }, - "path": [ - "chart", - "global", - "label", - "fill" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - }, - "pf-t--chart--global--layout--padding": { - "type": "number", - "value": 50, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "number", - "value": 50 - }, - "name": "pf-t--chart--global--layout--padding", - "attributes": { - "category": "chart", - "type": "global", - "item": "layout", - "subitem": "padding" - }, - "path": [ - "chart", - "global", - "layout", - "padding" - ] - }, - "pf-t--chart--global--layout--height": { - "type": "number", - "value": 300, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--chart--global--layout--height", - "attributes": { - "category": "chart", - "type": "global", - "item": "layout", - "subitem": "height" - }, - "path": [ - "chart", - "global", - "layout", - "height" - ] - }, - "pf-t--chart--global--layout--width": { - "type": "number", - "value": 450, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "number", - "value": 450 - }, - "name": "pf-t--chart--global--layout--width", - "attributes": { - "category": "chart", - "type": "global", - "item": "layout", - "subitem": "width" - }, - "path": [ - "chart", - "global", - "layout", - "width" - ] - }, - "pf-t--chart--global--stroke-line-join": { - "type": "string", - "value": "round", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "string", - "value": "round" - }, - "name": "pf-t--chart--global--stroke-line-join", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke-line-join" - }, - "path": [ - "chart", - "global", - "stroke-line-join" - ] - }, - "pf-t--chart--theme--colorscales--blue--colorscale--100": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.300}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--color--blue--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--blue--colorscale--200": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.100}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--blue--colorscale--300": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.500}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--chart--color--blue--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "blue", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--blue--colorscale--400": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.200}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--blue--colorscale--500": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.400}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--chart--color--blue--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "blue", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--teal--colorscale--100": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.300}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--chart--color--teal--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--teal--colorscale--200": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.100}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--teal--colorscale--300": { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.500}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.10}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--teal--colorscale--400": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.200}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--teal--colorscale--500": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.400}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--chart--color--teal--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "teal", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--yellow--colorscale--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.300}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--color--yellow--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--yellow--colorscale--200": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.100}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--yellow--colorscale--300": { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.500}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.10}" - }, - "name": "pf-t--chart--color--yellow--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "yellow", - "500" - ], - "references": [ - { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--yellow--colorscale--400": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.200}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--color--yellow--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--yellow--colorscale--500": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.400}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "yellow", - "400" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--gray--colorscale--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.300}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--chart--color--black--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "black", - "300" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--gray--colorscale--200": { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.100}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--chart--color--black--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "black", - "100" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--gray--colorscale--300": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.500}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--chart--color--black--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "black", - "500" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--gray--colorscale--400": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.200}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--chart--color--black--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "black", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--gray--colorscale--500": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.400}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--chart--color--black--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "black", - "400" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--green--colorscale--100": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.300}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--chart--color--green--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--green--colorscale--200": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.100}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.50}" - }, - "name": "pf-t--chart--color--green--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--green--colorscale--300": { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.500}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.10}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--green--colorscale--400": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.200}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--chart--color--green--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--green--colorscale--500": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.400}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--purple--colorscale--100": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.300}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--chart--color--purple--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "purple", - "300" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--purple--colorscale--200": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.100}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--chart--color--purple--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "purple", - "100" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--purple--colorscale--300": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.500}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--chart--color--purple--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "purple", - "500" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--purple--colorscale--400": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.200}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--chart--color--purple--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--purple--colorscale--500": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.400}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--chart--color--purple--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "purple", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--orange--colorscale--100": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.300}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--color--orange--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--orange--colorscale--200": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.100}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--orange--colorscale--300": { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.500}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.10}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--orange--colorscale--400": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.200}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--color--orange--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--orange--colorscale--500": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.400}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--chart--color--orange--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "orange", - "400" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--chart--color--green--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--color--yellow--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--color--orange--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "600" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--color--blue--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "700" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--chart--color--green--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "800" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--chart--color--teal--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "900" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--color--yellow--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1000" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--color--orange--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1100" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--chart--color--blue--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "blue", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1200" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.50}" - }, - "name": "pf-t--chart--color--green--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300": { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1300" - ], - "references": [ - { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.10}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1400" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500": { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1500" - ], - "references": [ - { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.10}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1600" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700": { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1700" - ], - "references": [ - { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.10}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1800" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900": { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1900" - ], - "references": [ - { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.10}" - }, - "name": "pf-t--chart--color--yellow--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "yellow", - "500" - ], - "references": [ - { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2000" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2100" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--chart--color--blue--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "blue", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2200" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2300" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--chart--color--teal--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "teal", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2400" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "yellow", - "400" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2500" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--chart--color--orange--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "orange", - "400" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--color--yellow--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--chart--color--green--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--chart--color--purple--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "purple", - "300" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--color--orange--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "600" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--chart--color--teal--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "700" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--chart--color--black--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "black", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "800" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--color--blue--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "900" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--color--yellow--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1000" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--chart--color--green--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1100" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--chart--color--purple--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1200" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--color--orange--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1300" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1400" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--chart--color--black--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "black", - "300" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1500" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600": { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1600" - ], - "references": [ - { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.10}" - }, - "name": "pf-t--chart--color--yellow--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "yellow", - "500" - ], - "references": [ - { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1700" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.50}" - }, - "name": "pf-t--chart--color--green--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1800" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--chart--color--purple--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "purple", - "500" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1900" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000": { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2000" - ], - "references": [ - { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.10}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100": { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2100" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--chart--color--black--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "black", - "100" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2200" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--chart--color--blue--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "blue", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2300" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400": { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2400" - ], - "references": [ - { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.10}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2500" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--chart--color--purple--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "purple", - "100" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600": { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2600" - ], - "references": [ - { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.10}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2700" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2800" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--chart--color--black--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "black", - "500" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2900" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--chart--color--blue--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "blue", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3000" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "yellow", - "400" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3100" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3200" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--chart--color--purple--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "purple", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3300" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--chart--color--orange--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "orange", - "400" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3400" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--chart--color--teal--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "teal", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3500" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--chart--color--black--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "black", - "400" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] - }, - "pf-t--color--white": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - }, - "pf-t--color--gray--10": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - }, - "pf-t--color--gray--20": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - }, - "pf-t--color--gray--30": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - }, - "pf-t--color--gray--40": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - }, - "pf-t--color--gray--50": { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - }, - "pf-t--color--gray--60": { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - }, - "pf-t--color--gray--70": { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - }, - "pf-t--color--gray--80": { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - }, - "pf-t--color--gray--90": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - }, - "pf-t--color--gray--95": { - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - }, - "pf-t--color--black": { - "type": "color", - "value": "#000000", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#000000" - }, - "name": "pf-t--color--black", - "attributes": { - "category": "color", - "type": "black" - }, - "path": [ - "color", - "black" - ] - }, - "pf-t--color--blue--10": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - }, - "pf-t--color--blue--20": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - }, - "pf-t--color--blue--30": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - }, - "pf-t--color--blue--40": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - }, - "pf-t--color--blue--50": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - }, - "pf-t--color--blue--60": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - }, - "pf-t--color--blue--70": { - "type": "color", - "value": "#003366", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#003366" - }, - "name": "pf-t--color--blue--70", - "attributes": { - "category": "color", - "type": "blue", - "item": "70" - }, - "path": [ - "color", - "blue", - "70" - ] - }, - "pf-t--color--teal--10": { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - }, - "pf-t--color--teal--20": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - }, - "pf-t--color--teal--30": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - }, - "pf-t--color--teal--40": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - }, - "pf-t--color--teal--50": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - }, - "pf-t--color--teal--60": { - "type": "color", - "value": "#147878", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - }, - "pf-t--color--teal--70": { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - }, - "pf-t--color--yellow--10": { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] - }, - "pf-t--color--yellow--20": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - }, - "pf-t--color--yellow--30": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - }, - "pf-t--color--yellow--40": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - }, - "pf-t--color--yellow--50": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - }, - "pf-t--color--yellow--60": { - "type": "color", - "value": "#96640f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#96640f" - }, - "name": "pf-t--color--yellow--60", - "attributes": { - "category": "color", - "type": "yellow", - "item": "60" - }, - "path": [ - "color", - "yellow", - "60" - ] - }, - "pf-t--color--yellow--70": { - "type": "color", - "value": "#73480b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#73480b" - }, - "name": "pf-t--color--yellow--70", - "attributes": { - "category": "color", - "type": "yellow", - "item": "70" - }, - "path": [ - "color", - "yellow", - "70" - ] - }, - "pf-t--color--green--10": { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] - }, - "pf-t--color--green--20": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - }, - "pf-t--color--green--30": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - }, - "pf-t--color--green--40": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - }, - "pf-t--color--green--50": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - }, - "pf-t--color--green--60": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - }, - "pf-t--color--green--70": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - }, - "pf-t--color--orange--10": { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] - }, - "pf-t--color--orange--20": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - }, - "pf-t--color--orange--30": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - }, - "pf-t--color--orange--40": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - }, - "pf-t--color--orange--50": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - }, - "pf-t--color--orange--60": { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9e4a06" - }, - "name": "pf-t--color--orange--60", - "attributes": { - "category": "color", - "type": "orange", - "item": "60" - }, - "path": [ - "color", - "orange", - "60" - ] - }, - "pf-t--color--orange--70": { - "type": "color", - "value": "#732e00", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#732e00" - }, - "name": "pf-t--color--orange--70", - "attributes": { - "category": "color", - "type": "orange", - "item": "70" - }, - "path": [ - "color", - "orange", - "70" - ] - }, - "pf-t--color--red-orange--10": { - "type": "color", - "value": "#ffe3d9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe3d9" - }, - "name": "pf-t--color--red-orange--10", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "10" - }, - "path": [ - "color", - "red-orange", - "10" - ] - }, - "pf-t--color--red-orange--20": { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - }, - "pf-t--color--red-orange--30": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - }, - "pf-t--color--red-orange--40": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - }, - "pf-t--color--red-orange--50": { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - }, - "pf-t--color--red-orange--60": { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - }, - "pf-t--color--red-orange--70": { - "type": "color", - "value": "#731f00", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - }, - "pf-t--color--purple--10": { - "type": "color", - "value": "#ece6ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ece6ff" - }, - "name": "pf-t--color--purple--10", - "attributes": { - "category": "color", - "type": "purple", - "item": "10" - }, - "path": [ - "color", - "purple", - "10" - ] - }, - "pf-t--color--purple--20": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - }, - "pf-t--color--purple--30": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - }, - "pf-t--color--purple--40": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - }, - "pf-t--color--purple--50": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - }, - "pf-t--color--purple--60": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - }, - "pf-t--color--purple--70": { - "type": "color", - "value": "#21134d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#21134d" - }, - "name": "pf-t--color--purple--70", - "attributes": { - "category": "color", - "type": "purple", - "item": "70" - }, - "path": [ - "color", - "purple", - "70" - ] - }, - "pf-t--color--red--10": { - "type": "color", - "value": "#fce3e3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fce3e3" - }, - "name": "pf-t--color--red--10", - "attributes": { - "category": "color", - "type": "red", - "item": "10" - }, - "path": [ - "color", - "red", - "10" - ] - }, - "pf-t--color--red--20": { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - }, - "pf-t--color--red--30": { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - }, - "pf-t--color--red--40": { - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f56e6e" - }, - "name": "pf-t--color--red--40", - "attributes": { - "category": "color", - "type": "red", - "item": "40" - }, - "path": [ - "color", - "red", - "40" - ] - }, - "pf-t--color--red--50": { - "type": "color", - "value": "#ee0000", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ee0000" - }, - "name": "pf-t--color--red--50", - "attributes": { - "category": "color", - "type": "red", - "item": "50" - }, - "path": [ - "color", - "red", - "50" - ] - }, - "pf-t--color--red--60": { - "type": "color", - "value": "#a60000", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a60000" - }, - "name": "pf-t--color--red--60", - "attributes": { - "category": "color", - "type": "red", - "item": "60" - }, - "path": [ - "color", - "red", - "60" - ] - }, - "pf-t--color--red--70": { - "type": "color", - "value": "#5f0000", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5f0000" - }, - "name": "pf-t--color--red--70", - "attributes": { - "category": "color", - "type": "red", - "item": "70" - }, - "path": [ - "color", - "red", - "70" - ] - } -} \ No newline at end of file diff --git a/packages/module/patternfly-docs/content/all-tokens-default.json b/packages/module/patternfly-docs/content/all-tokens-default.json deleted file mode 100644 index bbd4f3c..0000000 --- a/packages/module/patternfly-docs/content/all-tokens-default.json +++ /dev/null @@ -1,54088 +0,0 @@ -{ - "pf-t--global--spacer--100": { - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - }, - "pf-t--global--spacer--200": { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - }, - "pf-t--global--spacer--300": { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - }, - "pf-t--global--spacer--400": { - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - }, - "pf-t--global--spacer--500": { - "type": "number", - "value": "2rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 32 - }, - "name": "pf-t--global--spacer--500", - "attributes": { - "category": "global", - "type": "spacer", - "item": "500" - }, - "path": [ - "global", - "spacer", - "500" - ] - }, - "pf-t--global--spacer--600": { - "type": "number", - "value": "3rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 48 - }, - "name": "pf-t--global--spacer--600", - "attributes": { - "category": "global", - "type": "spacer", - "item": "600" - }, - "path": [ - "global", - "spacer", - "600" - ] - }, - "pf-t--global--spacer--700": { - "type": "number", - "value": "4rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 64 - }, - "name": "pf-t--global--spacer--700", - "attributes": { - "category": "global", - "type": "spacer", - "item": "700" - }, - "path": [ - "global", - "spacer", - "700" - ] - }, - "pf-t--global--spacer--800": { - "type": "number", - "value": "5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 80 - }, - "name": "pf-t--global--spacer--800", - "attributes": { - "category": "global", - "type": "spacer", - "item": "800" - }, - "path": [ - "global", - "spacer", - "800" - ] - }, - "pf-t--global--spacer--xs": { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - }, - "pf-t--global--spacer--sm": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - }, - "pf-t--global--spacer--md": { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - }, - "pf-t--global--spacer--lg": { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "{global.spacer.400}" - }, - "name": "pf-t--global--spacer--lg", - "attributes": { - "category": "global", - "type": "spacer", - "item": "lg" - }, - "path": [ - "global", - "spacer", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - } - ] - }, - "pf-t--global--spacer--xl": { - "description": "Use for extra large spaces between elements.", - "type": "number", - "value": "2rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for extra large spaces between elements.", - "type": "number", - "value": "{global.spacer.500}" - }, - "name": "pf-t--global--spacer--xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xl" - }, - "path": [ - "global", - "spacer", - "xl" - ], - "references": [ - { - "type": "number", - "value": "2rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 32 - }, - "name": "pf-t--global--spacer--500", - "attributes": { - "category": "global", - "type": "spacer", - "item": "500" - }, - "path": [ - "global", - "spacer", - "500" - ] - } - ] - }, - "pf-t--global--spacer--2xl": { - "description": "Use for double extra large spaces spacing between elements.", - "type": "number", - "value": "3rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for double extra large spaces spacing between elements.", - "type": "number", - "value": "{global.spacer.600}" - }, - "name": "pf-t--global--spacer--2xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "2xl" - }, - "path": [ - "global", - "spacer", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "3rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 48 - }, - "name": "pf-t--global--spacer--600", - "attributes": { - "category": "global", - "type": "spacer", - "item": "600" - }, - "path": [ - "global", - "spacer", - "600" - ] - } - ] - }, - "pf-t--global--spacer--3xl": { - "description": "Use for triple extra large spaces between elements.", - "type": "number", - "value": "4rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for triple extra large spaces between elements.", - "type": "number", - "value": "{global.spacer.700}" - }, - "name": "pf-t--global--spacer--3xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "3xl" - }, - "path": [ - "global", - "spacer", - "3xl" - ], - "references": [ - { - "type": "number", - "value": "4rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 64 - }, - "name": "pf-t--global--spacer--700", - "attributes": { - "category": "global", - "type": "spacer", - "item": "700" - }, - "path": [ - "global", - "spacer", - "700" - ] - } - ] - }, - "pf-t--global--spacer--4xl": { - "description": "Use for quadruple extra large spaces between elements.", - "type": "number", - "value": "5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for quadruple extra large spaces between elements.", - "type": "number", - "value": "{global.spacer.800}" - }, - "name": "pf-t--global--spacer--4xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "4xl" - }, - "path": [ - "global", - "spacer", - "4xl" - ], - "references": [ - { - "type": "number", - "value": "5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 80 - }, - "name": "pf-t--global--spacer--800", - "attributes": { - "category": "global", - "type": "spacer", - "item": "800" - }, - "path": [ - "global", - "spacer", - "800" - ] - } - ] - }, - "pf-t--global--spacer--control--vertical--default": { - "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", - "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--control--vertical--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "vertical", - "state": "default" - }, - "path": [ - "global", - "spacer", - "control", - "vertical", - "default" - ], - "references": [ - { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--control--vertical--compact": { - "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", - "type": "number", - "value": "{global.spacer.xs}" - }, - "name": "pf-t--global--spacer--control--vertical--compact", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "vertical", - "state": "compact" - }, - "path": [ - "global", - "spacer", - "control", - "vertical", - "compact" - ], - "references": [ - { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--control--vertical--plain": { - "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", - "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--control--vertical--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "vertical", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "control", - "vertical", - "plain" - ], - "references": [ - { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--control--horizontal--default": { - "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", - "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--control--horizontal--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "horizontal", - "state": "default" - }, - "path": [ - "global", - "spacer", - "control", - "horizontal", - "default" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--control--horizontal--plain": { - "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", - "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--control--horizontal--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "horizontal", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "control", - "horizontal", - "plain" - ], - "references": [ - { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--control--horizontal--compact": { - "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", - "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--control--horizontal--compact", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "horizontal", - "state": "compact" - }, - "path": [ - "global", - "spacer", - "control", - "horizontal", - "compact" - ], - "references": [ - { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--control--horizontal--spacious": { - "description": "Use to set the horizontal padding in large/display controls.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the horizontal padding in large/display controls.", - "type": "number", - "value": "{global.spacer.lg}" - }, - "name": "pf-t--global--spacer--control--horizontal--spacious", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "horizontal", - "state": "spacious" - }, - "path": [ - "global", - "spacer", - "control", - "horizontal", - "spacious" - ], - "references": [ - { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "{global.spacer.400}" - }, - "name": "pf-t--global--spacer--lg", - "attributes": { - "category": "global", - "type": "spacer", - "item": "lg" - }, - "path": [ - "global", - "spacer", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--gap--text-to-element--default": { - "description": "Use to space an element, like an icon or badge, inline with text", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to space an element, like an icon or badge, inline with text", - "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--gap--text-to-element--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "text-to-element", - "state": "default" - }, - "path": [ - "global", - "spacer", - "gap", - "text-to-element", - "default" - ], - "references": [ - { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--gap--control-to-control--default": { - "description": "Use to set the space between controls, like in input groups or filter groups", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the space between controls, like in input groups or filter groups", - "type": "number", - "value": "{global.spacer.xs}" - }, - "name": "pf-t--global--spacer--gap--control-to-control--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "control-to-control", - "state": "default" - }, - "path": [ - "global", - "spacer", - "gap", - "control-to-control", - "default" - ], - "references": [ - { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--gap--group--vertical": { - "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", - "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--gap--group--vertical", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "group", - "state": "vertical" - }, - "path": [ - "global", - "spacer", - "gap", - "group", - "vertical" - ], - "references": [ - { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--gap--group--horizontal": { - "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", - "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--gap--group--horizontal", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "group", - "state": "horizontal" - }, - "path": [ - "global", - "spacer", - "gap", - "group", - "horizontal" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--gap--group-to-group--horizontal": { - "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", - "type": "number", - "value": "3rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", - "type": "number", - "value": "{global.spacer.2xl}" - }, - "name": "pf-t--global--spacer--gap--group-to-group--horizontal", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "group-to-group", - "state": "horizontal" - }, - "path": [ - "global", - "spacer", - "gap", - "group-to-group", - "horizontal" - ], - "references": [ - { - "description": "Use for double extra large spaces spacing between elements.", - "type": "number", - "value": "3rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for double extra large spaces spacing between elements.", - "type": "number", - "value": "{global.spacer.600}" - }, - "name": "pf-t--global--spacer--2xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "2xl" - }, - "path": [ - "global", - "spacer", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "3rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 48 - }, - "name": "pf-t--global--spacer--600", - "attributes": { - "category": "global", - "type": "spacer", - "item": "600" - }, - "path": [ - "global", - "spacer", - "600" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--gap--group-to-group--vertical": { - "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", - "type": "number", - "value": "{global.spacer.lg}" - }, - "name": "pf-t--global--spacer--gap--group-to-group--vertical", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "group-to-group", - "state": "vertical" - }, - "path": [ - "global", - "spacer", - "gap", - "group-to-group", - "vertical" - ], - "references": [ - { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "{global.spacer.400}" - }, - "name": "pf-t--global--spacer--lg", - "attributes": { - "category": "global", - "type": "spacer", - "item": "lg" - }, - "path": [ - "global", - "spacer", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--gap--action-to-action--default": { - "description": "Use to set the space between actions, like in an action list group.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the space between actions, like in an action list group.", - "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--gap--action-to-action--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "action-to-action", - "state": "default" - }, - "path": [ - "global", - "spacer", - "gap", - "action-to-action", - "default" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--gap--action-to-action--plain": { - "description": "Use to set the space between plain actions, like in an action list group.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the space between plain actions, like in an action list group.", - "type": "number", - "value": "{global.spacer.xs}" - }, - "name": "pf-t--global--spacer--gap--action-to-action--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "action-to-action", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "gap", - "action-to-action", - "plain" - ], - "references": [ - { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--action--horizontal--default": { - "description": "Use to set the horizontal padding inside a default action, like buttons.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the horizontal padding inside a default action, like buttons.", - "type": "number", - "value": "{global.spacer.lg}" - }, - "name": "pf-t--global--spacer--action--horizontal--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "horizontal", - "state": "default" - }, - "path": [ - "global", - "spacer", - "action", - "horizontal", - "default" - ], - "references": [ - { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "{global.spacer.400}" - }, - "name": "pf-t--global--spacer--lg", - "attributes": { - "category": "global", - "type": "spacer", - "item": "lg" - }, - "path": [ - "global", - "spacer", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--action--horizontal--plain": { - "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", - "type": "number", - "value": "0.5rem", - "compact": { - "description": "Use to set the horizontal padding inside a compact, plain action/button.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true - }, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", - "type": "number", - "value": "{global.spacer.sm}", - "compact": { - "description": "Use to set the horizontal padding inside a compact, plain action/button.", - "type": "number", - "value": "{global.spacer.xs}", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true - } - }, - "name": "pf-t--global--spacer--action--horizontal--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "horizontal", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "action", - "horizontal", - "plain" - ], - "references": [ - { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--action--horizontal--compact": { - "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", - "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--action--horizontal--compact", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "horizontal", - "state": "compact" - }, - "path": [ - "global", - "spacer", - "action", - "horizontal", - "compact" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--action--horizontal--spacious": { - "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", - "type": "number", - "value": "2rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", - "type": "number", - "value": "{global.spacer.xl}" - }, - "name": "pf-t--global--spacer--action--horizontal--spacious", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "horizontal", - "state": "spacious" - }, - "path": [ - "global", - "spacer", - "action", - "horizontal", - "spacious" - ], - "references": [ - { - "description": "Use for extra large spaces between elements.", - "type": "number", - "value": "2rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for extra large spaces between elements.", - "type": "number", - "value": "{global.spacer.500}" - }, - "name": "pf-t--global--spacer--xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xl" - }, - "path": [ - "global", - "spacer", - "xl" - ], - "references": [ - { - "type": "number", - "value": "2rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 32 - }, - "name": "pf-t--global--spacer--500", - "attributes": { - "category": "global", - "type": "spacer", - "item": "500" - }, - "path": [ - "global", - "spacer", - "500" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--action--vertical--compact": { - "description": "Use to set the vertical padding inside a compact action, like compact buttons.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the vertical padding inside a compact action, like compact buttons.", - "type": "number", - "value": "{global.spacer.xs}" - }, - "name": "pf-t--global--spacer--action--vertical--compact", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "vertical", - "state": "compact" - }, - "path": [ - "global", - "spacer", - "action", - "vertical", - "compact" - ], - "references": [ - { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--spacer--action--vertical--spacious": { - "description": "Use to set the vertical padding inside a large/display action, like CTAs.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to set the vertical padding inside a large/display action, like CTAs.", - "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--action--vertical--spacious", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "vertical", - "state": "spacious" - }, - "path": [ - "global", - "spacer", - "action", - "vertical", - "spacious" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--100": { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--icon--size--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "size", - "100" - ] - }, - "pf-t--global--icon--size--200": { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--icon--size--200", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "icon", - "size", - "200" - ] - }, - "pf-t--global--icon--size--250": { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--icon--size--250", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "250" - }, - "path": [ - "global", - "icon", - "size", - "250" - ] - }, - "pf-t--global--icon--size--300": { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--icon--size--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "size", - "300" - ] - }, - "pf-t--global--icon--size--400": { - "type": "number", - "value": "3.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 56 - }, - "name": "pf-t--global--icon--size--400", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "icon", - "size", - "400" - ] - }, - "pf-t--global--icon--size--500": { - "type": "number", - "value": "6rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 96 - }, - "name": "pf-t--global--icon--size--500", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "icon", - "size", - "500" - ] - }, - "pf-t--global--icon--size--sm": { - "description": "Use for small icons.", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for small icons.", - "type": "number", - "value": "{global.icon.size.100}" - }, - "name": "pf-t--global--icon--size--sm", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "icon", - "size", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--icon--size--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "size", - "100" - ] - } - ] - }, - "pf-t--global--icon--size--md": { - "description": "Use for medium icons.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for medium icons.", - "type": "number", - "value": "{global.icon.size.200}" - }, - "name": "pf-t--global--icon--size--md", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "icon", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--icon--size--200", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "icon", - "size", - "200" - ] - } - ] - }, - "pf-t--global--icon--size--lg": { - "description": "Use for large icons.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for large icons.", - "type": "number", - "value": "{global.icon.size.250}" - }, - "name": "pf-t--global--icon--size--lg", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "icon", - "size", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--icon--size--250", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "250" - }, - "path": [ - "global", - "icon", - "size", - "250" - ] - } - ] - }, - "pf-t--global--icon--size--xl": { - "description": "Use for extra large icons.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for extra large icons.", - "type": "number", - "value": "{global.icon.size.300}" - }, - "name": "pf-t--global--icon--size--xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "icon", - "size", - "xl" - ], - "references": [ - { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--icon--size--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "size", - "300" - ] - } - ] - }, - "pf-t--global--icon--size--2xl": { - "description": "Use for double extra large icons.", - "type": "number", - "value": "3.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for double extra large icons.", - "type": "number", - "value": "{global.icon.size.400}" - }, - "name": "pf-t--global--icon--size--2xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "icon", - "size", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "3.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 56 - }, - "name": "pf-t--global--icon--size--400", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "icon", - "size", - "400" - ] - } - ] - }, - "pf-t--global--icon--size--3xl": { - "description": "Use for triple extra large icons.", - "type": "number", - "value": "6rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for triple extra large icons.", - "type": "number", - "value": "{global.icon.size.500}" - }, - "name": "pf-t--global--icon--size--3xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "3xl" - }, - "path": [ - "global", - "icon", - "size", - "3xl" - ], - "references": [ - { - "type": "number", - "value": "6rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 96 - }, - "name": "pf-t--global--icon--size--500", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "icon", - "size", - "500" - ] - } - ] - }, - "pf-t--global--icon--size--font--heading--h1": { - "description": "Use for icons that are placed inline with first level headings", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with first level headings", - "type": "number", - "value": "{global.font.size.heading.h1}" - }, - "name": "pf-t--global--icon--size--font--heading--h1", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h1" - ], - "references": [ - { - "description": "Use as the font size for first level headings.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for first level headings.", - "type": "number", - "value": "{global.font.size.2xl}" - }, - "name": "pf-t--global--font--size--heading--h1", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h1" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h1" - ], - "references": [ - { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--heading--h2": { - "description": "Use for icons that are placed inline with second level headings", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with second level headings", - "type": "number", - "value": "{global.font.size.heading.h2}" - }, - "name": "pf-t--global--icon--size--font--heading--h2", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h2" - ], - "references": [ - { - "description": "Use as the font size for second level headings.", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for second level headings.", - "type": "number", - "value": "{global.font.size.xl}" - }, - "name": "pf-t--global--font--size--heading--h2", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h2" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h2" - ], - "references": [ - { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.500}" - }, - "name": "pf-t--global--font--size--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "font", - "size", - "xl" - ], - "references": [ - { - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--heading--h3": { - "description": "Use for icons that are placed inline with third level headings", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with third level headings", - "type": "number", - "value": "{global.font.size.heading.h3}" - }, - "name": "pf-t--global--icon--size--font--heading--h3", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h3" - ], - "references": [ - { - "description": "Use as the font size for third level headings.", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for third level headings.", - "type": "number", - "value": "{global.font.size.lg}" - }, - "name": "pf-t--global--font--size--heading--h3", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h3" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h3" - ], - "references": [ - { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.400}" - }, - "name": "pf-t--global--font--size--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "font", - "size", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--heading--h4": { - "description": "Use for icons that are placed inline with fourth level headings", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with fourth level headings", - "type": "number", - "value": "{global.font.size.heading.h4}" - }, - "name": "pf-t--global--icon--size--font--heading--h4", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h4" - ], - "references": [ - { - "description": "Use as the font size for fourth-level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for fourth-level headings.", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h4", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h4" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h4" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--heading--h5": { - "description": "Use for icons that are placed inline with fifth level headings", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with fifth level headings", - "type": "number", - "value": "{global.font.size.heading.h5}" - }, - "name": "pf-t--global--icon--size--font--heading--h5", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h5" - ], - "references": [ - { - "description": "Use as the font size for fifth level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for fifth level headings.", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h5", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h5" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h5" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--heading--h6": { - "description": "Use for icons that are placed inline with sixth level headings", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with sixth level headings", - "type": "number", - "value": "{global.font.size.heading.h6}" - }, - "name": "pf-t--global--icon--size--font--heading--h6", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h6" - ], - "references": [ - { - "description": "Use as the font size for sixth level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for sixth level headings.", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h6", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h6" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h6" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--body--sm": { - "description": "Use for icons that are placed inline with small body text", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with small body text", - "type": "number", - "value": "{global.font.size.body.sm}" - }, - "name": "pf-t--global--icon--size--font--body--sm", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "body" - }, - "path": [ - "global", - "icon", - "size", - "font", - "body", - "sm" - ], - "references": [ - { - "description": "Use for a smaller font size in body sections.", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for a smaller font size in body sections.", - "type": "number", - "value": "{global.font.size.xs}" - }, - "name": "pf-t--global--font--size--body--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "sm" - }, - "path": [ - "global", - "font", - "size", - "body", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--body--default": { - "description": "Use for icons that are placed inline with default body text", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with default body text", - "type": "number", - "value": "{global.font.size.body.default}" - }, - "name": "pf-t--global--icon--size--font--body--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "body" - }, - "path": [ - "global", - "icon", - "size", - "font", - "body", - "default" - ], - "references": [ - { - "description": "Use as the default font size in body sections.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the default font size in body sections.", - "type": "number", - "value": "{global.font.size.sm}" - }, - "name": "pf-t--global--font--size--body--default", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "default" - }, - "path": [ - "global", - "font", - "size", - "body", - "default" - ], - "references": [ - { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--body--lg": { - "description": "Use for icons that are placed inline with large body text", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with large body text", - "type": "number", - "value": "{global.font.size.body.lg}" - }, - "name": "pf-t--global--icon--size--font--body--lg", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "body" - }, - "path": [ - "global", - "icon", - "size", - "font", - "body", - "lg" - ], - "references": [ - { - "description": "Use for a larger font size in body sections.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for a larger font size in body sections.", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--body--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "lg" - }, - "path": [ - "global", - "font", - "size", - "body", - "lg" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--xs": { - "description": "Use for icons that are placed inline with font–size–xs text", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with font–size–xs text", - "type": "number", - "value": "{global.font.size.xs}" - }, - "name": "pf-t--global--icon--size--font--xs", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "xs" - }, - "path": [ - "global", - "icon", - "size", - "font", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--sm": { - "description": "Use for icons that are placed inline with font–size–sm text", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with font–size–sm text", - "type": "number", - "value": "{global.font.size.sm}" - }, - "name": "pf-t--global--icon--size--font--sm", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "sm" - }, - "path": [ - "global", - "icon", - "size", - "font", - "sm" - ], - "references": [ - { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--md": { - "description": "Use for icons that are placed inline with font–size–md text", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with font–size–md text", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--icon--size--font--md", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "md" - }, - "path": [ - "global", - "icon", - "size", - "font", - "md" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--lg": { - "description": "Use for icons that are placed inline with font–size–lg text", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with font–size–lg text", - "type": "number", - "value": "{global.font.size.lg}" - }, - "name": "pf-t--global--icon--size--font--lg", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "lg" - }, - "path": [ - "global", - "icon", - "size", - "font", - "lg" - ], - "references": [ - { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.400}" - }, - "name": "pf-t--global--font--size--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "font", - "size", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--xl": { - "description": "Use for icons that are placed inline with font–size–xl text", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with font–size–xl text", - "type": "number", - "value": "{global.font.size.xl}" - }, - "name": "pf-t--global--icon--size--font--xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "xl" - }, - "path": [ - "global", - "icon", - "size", - "font", - "xl" - ], - "references": [ - { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.500}" - }, - "name": "pf-t--global--font--size--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "font", - "size", - "xl" - ], - "references": [ - { - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--2xl": { - "description": "Use for icons that are placed inline with font–size–2xl text", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with font–size–2xl text", - "type": "number", - "value": "{global.font.size.2xl}" - }, - "name": "pf-t--global--icon--size--font--2xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "2xl" - }, - "path": [ - "global", - "icon", - "size", - "font", - "2xl" - ], - "references": [ - { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--3xl": { - "description": "Use for icons that are placed inline with font–size–3xl text", - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with font–size–3xl text", - "type": "number", - "value": "{global.font.size.3xl}" - }, - "name": "pf-t--global--icon--size--font--3xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "3xl" - }, - "path": [ - "global", - "icon", - "size", - "font", - "3xl" - ], - "references": [ - { - "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.700}" - }, - "name": "pf-t--global--font--size--3xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "3xl" - }, - "path": [ - "global", - "font", - "size", - "3xl" - ], - "references": [ - { - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 28 - }, - "name": "pf-t--global--font--size--700", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "700" - }, - "path": [ - "global", - "font", - "size", - "700" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--4xl": { - "description": "Use for icons that are placed inline with font–size–3xl text", - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for icons that are placed inline with font–size–3xl text", - "type": "number", - "value": "{global.font.size.4xl}" - }, - "name": "pf-t--global--icon--size--font--4xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "4xl" - }, - "path": [ - "global", - "icon", - "size", - "font", - "4xl" - ], - "references": [ - { - "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.800}" - }, - "name": "pf-t--global--font--size--4xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "4xl" - }, - "path": [ - "global", - "font", - "size", - "4xl" - ], - "references": [ - { - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 36 - }, - "name": "pf-t--global--font--size--800", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "800" - }, - "path": [ - "global", - "font", - "size", - "800" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--100": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - }, - "pf-t--global--icon--color--200": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--icon--color--200", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "icon", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - }, - "pf-t--global--icon--color--300": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - }, - "pf-t--global--icon--color--brand--default": { - "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "{global.color.brand.default}" - }, - "name": "pf-t--global--icon--color--brand--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "brand", - "state": "default" - }, - "path": [ - "global", - "icon", - "color", - "brand", - "default" - ], - "references": [ - { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "{global.color.brand.200}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--brand--hover": { - "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "{global.color.brand.hover}" - }, - "name": "pf-t--global--icon--color--brand--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "brand", - "state": "hover" - }, - "path": [ - "global", - "icon", - "color", - "brand", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--brand--clicked": { - "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "{global.color.brand.clicked}" - }, - "name": "pf-t--global--icon--color--brand--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "brand", - "state": "clicked" - }, - "path": [ - "global", - "icon", - "color", - "brand", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--on-brand--default": { - "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--on-brand--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "on-brand", - "state": "default" - }, - "path": [ - "global", - "icon", - "color", - "on-brand", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--on-brand--hover": { - "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--on-brand--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "on-brand", - "state": "hover" - }, - "path": [ - "global", - "icon", - "color", - "on-brand", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--on-brand--clicked": { - "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--on-brand--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "on-brand", - "state": "clicked" - }, - "path": [ - "global", - "icon", - "color", - "on-brand", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--favorite--default": { - "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "{global.color.favorite.default}" - }, - "name": "pf-t--global--icon--color--favorite--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "favorite", - "state": "default" - }, - "path": [ - "global", - "icon", - "color", - "favorite", - "default" - ], - "references": [ - { - "description": "Use as the default color for elements that have been favorited", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for elements that have been favorited", - "type": "color", - "value": "{global.color.favorite.100}" - }, - "name": "pf-t--global--color--favorite--default", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "default" - }, - "path": [ - "global", - "color", - "favorite", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--favorite--100", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "100" - }, - "path": [ - "global", - "color", - "favorite", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--favorite--hover": { - "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "{global.color.favorite.hover}" - }, - "name": "pf-t--global--icon--color--favorite--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "favorite", - "state": "hover" - }, - "path": [ - "global", - "icon", - "color", - "favorite", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for elements that have been favorited", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for elements that have been favorited", - "type": "color", - "value": "{global.color.favorite.200}" - }, - "name": "pf-t--global--color--favorite--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "favorite", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--favorite--200", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "200" - }, - "path": [ - "global", - "color", - "favorite", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--favorite--clicked": { - "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "{global.color.favorite.clicked}" - }, - "name": "pf-t--global--icon--color--favorite--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "favorite", - "state": "clicked" - }, - "path": [ - "global", - "icon", - "color", - "favorite", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for elements that have been favorited", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for elements that have been favorited", - "type": "color", - "value": "{global.color.favorite.200}" - }, - "name": "pf-t--global--color--favorite--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "favorite", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--favorite--200", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "200" - }, - "path": [ - "global", - "color", - "favorite", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--success--default": { - "description": "Use as the default color for text that communicates a success status.", - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that communicates a success status.", - "type": "color", - "value": "{global.color.status.success.default}" - }, - "name": "pf-t--global--icon--color--status--success--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "{global.color.status.success.100}" - }, - "name": "pf-t--global--color--status--success--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--global--color--status--success--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--success--hover": { - "description": "Use as the hover state color for text that communicates a success status.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that communicates a success status.", - "type": "color", - "value": "{global.color.status.success.hover}" - }, - "name": "pf-t--global--icon--color--status--success--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "{global.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--success--clicked": { - "description": "Use as the clicked state color for text that communicates a success status.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that communicates a success status.", - "type": "color", - "value": "{global.color.status.success.clicked}" - }, - "name": "pf-t--global--icon--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "{global.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-success--default": { - "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-success--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-success", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-success--hover": { - "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-success--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-success", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-success--clicked": { - "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-success--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-success", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--warning--default": { - "description": "Use as the default color for text that communicates a warning status.", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that communicates a warning status.", - "type": "color", - "value": "{global.color.status.warning.200}" - }, - "name": "pf-t--global--icon--color--status--warning--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "warning", - "default" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--status--warning--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--warning--hover": { - "description": "Use as the hover state color for text that communicates a warning status.", - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that communicates a warning status.", - "type": "color", - "value": "{global.color.status.warning.300}" - }, - "name": "pf-t--global--icon--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--global--color--status--warning--300", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "warning", - "300" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--warning--clicked": { - "description": "Use as the clicked state color for text that communicates a warning status.", - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that communicates a warning status.", - "type": "color", - "value": "{global.color.status.warning.300}" - }, - "name": "pf-t--global--icon--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--global--color--status--warning--300", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "warning", - "300" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-warning--default": { - "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--status--on-warning--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-warning", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-warning--hover": { - "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--status--on-warning--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-warning", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-warning--clicked": { - "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--status--on-warning--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-warning", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--danger--default": { - "description": "Use as the default color for icons that convey danger, like in alerts or banners.", - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that convey danger, like in alerts or banners.", - "type": "color", - "value": "{global.color.status.danger.default}" - }, - "name": "pf-t--global--icon--color--status--danger--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "{global.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--status--danger--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--danger--hover": { - "description": "Use as the hover state for icons that indicate danger.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for icons that indicate danger.", - "type": "color", - "value": "{global.color.status.danger.hover}" - }, - "name": "pf-t--global--icon--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--danger--clicked": { - "description": "Use as the clicked state for icons that indicate danger.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for icons that indicate danger.", - "type": "color", - "value": "{global.color.status.danger.clicked}" - }, - "name": "pf-t--global--icon--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-danger--default": { - "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-danger--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-danger", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-danger--hover": { - "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-danger--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-danger", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-danger--clicked": { - "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-danger--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-danger", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--info--default": { - "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", - "type": "color", - "value": "{global.color.status.info.default}" - }, - "name": "pf-t--global--icon--color--status--info--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "{global.color.status.info.100}" - }, - "name": "pf-t--global--color--status--info--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--color--status--info--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--info--hover": { - "description": "Use as the hover state for icons that identify informational messages.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for icons that identify informational messages.", - "type": "color", - "value": "{global.color.status.info.hover}" - }, - "name": "pf-t--global--icon--color--status--info--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "{global.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--info--clicked": { - "description": "Use as the clicked state for icons that identify informational messages.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for icons that identify informational messages.", - "type": "color", - "value": "{global.color.status.info.clicked}" - }, - "name": "pf-t--global--icon--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "{global.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-info--default": { - "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-info--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-info", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-info--hover": { - "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-info--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-info", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-info--clicked": { - "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-info--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-info", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--custom--default": { - "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#147878", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.color.status.custom.default}" - }, - "name": "pf-t--global--icon--color--status--custom--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#147878", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.color.status.custom.100}" - }, - "name": "pf-t--global--color--status--custom--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--global--color--status--custom--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--custom--hover": { - "description": "Use as the hover state for icons that convey generic status with no associated severity.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for icons that convey generic status with no associated severity.", - "type": "color", - "value": "{global.color.status.custom.hover}" - }, - "name": "pf-t--global--icon--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--custom--clicked": { - "description": "Use as the clicked state for icons that convey generic status with no associated severity.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for icons that convey generic status with no associated severity.", - "type": "color", - "value": "{global.color.status.custom.clicked}" - }, - "name": "pf-t--global--icon--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-custom--default": { - "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-custom--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-custom", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-custom--hover": { - "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-custom--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-custom", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-custom--clicked": { - "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-custom--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-custom", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--unread--on-default--default": { - "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-default--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-default", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--unread--on-default--hover": { - "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-default--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-default", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--unread--on-default--clicked": { - "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-default--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-default", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--unread--on-attention--default": { - "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-attention--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-attention", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--unread--on-attention--hover": { - "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-attention--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-attention", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--unread--on-attention--clicked": { - "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-attention--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-attention", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--regular": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--subtle": { - "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", - "type": "color", - "value": "#707070", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", - "type": "color", - "value": "{global.icon.color.200}" - }, - "name": "pf-t--global--icon--color--subtle", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "subtle" - }, - "path": [ - "global", - "icon", - "color", - "subtle" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--icon--color--200", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "icon", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--inverse": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--disabled": { - "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", - "type": "color", - "value": "{global.color.disabled.200}" - }, - "name": "pf-t--global--icon--color--disabled", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "disabled" - }, - "path": [ - "global", - "icon", - "color", - "disabled" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--disabled--200", - "attributes": { - "category": "global", - "type": "color", - "item": "disabled", - "subitem": "200" - }, - "path": [ - "global", - "color", - "disabled", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--on-disabled": { - "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", - "type": "color", - "value": "{global.color.disabled.300}" - }, - "name": "pf-t--global--icon--color--on-disabled", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "on-disabled" - }, - "path": [ - "global", - "icon", - "color", - "on-disabled" - ], - "references": [ - { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--global--color--disabled--300", - "attributes": { - "category": "global", - "type": "color", - "item": "disabled", - "subitem": "300" - }, - "path": [ - "global", - "color", - "disabled", - "300" - ], - "references": [ - { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--severity--undefined--default": { - "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", - "type": "color", - "value": "{global.color.severity.undefined.100}" - }, - "name": "pf-t--global--icon--color--severity--undefined--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "undefined" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "undefined", - "default" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--severity--undefined--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "undefined", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "undefined", - "100" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--severity--none--default": { - "description": "Use as the default color for severity icons that identify no issues.", - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for severity icons that identify no issues.", - "type": "color", - "value": "{global.color.severity.none.100}" - }, - "name": "pf-t--global--icon--color--severity--none--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "none" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "none", - "default" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--severity--none--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "none", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "none", - "100" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--severity--minor--default": { - "description": "Use as the default color for severity icons that identify issues of minor severity.", - "type": "color", - "value": "#707070", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for severity icons that identify issues of minor severity.", - "type": "color", - "value": "{global.color.severity.minor.100}" - }, - "name": "pf-t--global--icon--color--severity--minor--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "minor" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "minor", - "default" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--color--severity--minor--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "minor", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "minor", - "100" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--severity--moderate--default": { - "description": "Use as the default color for severity icons that identify issues of moderate severity.", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for severity icons that identify issues of moderate severity.", - "type": "color", - "value": "{global.color.severity.moderate.100}" - }, - "name": "pf-t--global--icon--color--severity--moderate--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "moderate" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "moderate", - "default" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--severity--moderate--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "moderate", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "moderate", - "100" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--severity--important--default": { - "description": "Use as the default color for severity icons that identify issues of important severity.", - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for severity icons that identify issues of important severity.", - "type": "color", - "value": "{global.color.severity.important.100}" - }, - "name": "pf-t--global--icon--color--severity--important--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "important" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "important", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--global--color--severity--important--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "important", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "important", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--severity--critical--default": { - "description": "Use as the default color for severity icons that identify issues of critical severity.", - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for severity icons that identify issues of critical severity.", - "type": "color", - "value": "{global.color.severity.critical.100}" - }, - "name": "pf-t--global--icon--color--severity--critical--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "critical" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "critical", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--severity--critical--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "critical", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "critical", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-red--default": { - "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-red--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-red", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-red--hover": { - "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-red--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-red", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-red--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-red--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-red", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-orangered--default": { - "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orangered--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orangered", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-orangered--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orangered--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orangered", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-orangered--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orangered--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orangered", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-orange--default": { - "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orange--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orange", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-orange--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orange--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orange", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-orange--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orange--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orange", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-yellow--default": { - "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-yellow--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-yellow", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-yellow--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-yellow--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-yellow", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-yellow--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-yellow--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-yellow", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-green--default": { - "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-green--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-green", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-green--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-green--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-green", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-green--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-green--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-green", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-teal--default": { - "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-teal--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-teal", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-teal--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-teal--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-teal", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-teal--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-teal--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-teal", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-blue--default": { - "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-blue--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-blue", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-blue--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-blue--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-blue", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-blue--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-blue--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-blue", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-purple--default": { - "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-purple--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-purple", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-purple--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-purple--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-purple", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-purple--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-purple--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-purple", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-gray--default": { - "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-gray--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-gray", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-gray--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-gray--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-gray", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-gray--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-gray--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-gray", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--width--100": { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - }, - "pf-t--global--border--width--200": { - "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - }, - "pf-t--global--border--width--300": { - "type": "number", - "value": "3px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 3 - }, - "name": "pf-t--global--border--width--300", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "300" - }, - "path": [ - "global", - "border", - "width", - "300" - ] - }, - "pf-t--global--border--width--regular": { - "description": "Use as the default border width for elements.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the default border width for elements.", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--regular", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "regular" - }, - "path": [ - "global", - "border", - "width", - "regular" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--divider--default": { - "description": "Use as the default border width for dividers.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the default border width for dividers.", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--divider--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "divider", - "state": "default" - }, - "path": [ - "global", - "border", - "width", - "divider", - "default" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--divider--hover": { - "description": "Use as the border width hover state for dividers.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the border width hover state for dividers.", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--divider--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "divider", - "state": "hover" - }, - "path": [ - "global", - "border", - "width", - "divider", - "hover" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--divider--clicked": { - "description": "Use as the border width clicked state for dividers.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the border width clicked state for dividers.", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--divider--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "divider", - "state": "clicked" - }, - "path": [ - "global", - "border", - "width", - "divider", - "clicked" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--strong": { - "description": "Use as a stronger/wider border width for elements.", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as a stronger/wider border width for elements.", - "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--strong", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "strong" - }, - "path": [ - "global", - "border", - "width", - "strong" - ], - "references": [ - { - "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] - }, - "pf-t--global--border--width--extra-strong": { - "description": "Use as the strongest/widest border width for elements.", - "type": "number", - "value": "3px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the strongest/widest border width for elements.", - "type": "number", - "value": "{global.border.width.300}" - }, - "name": "pf-t--global--border--width--extra-strong", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "extra-strong" - }, - "path": [ - "global", - "border", - "width", - "extra-strong" - ], - "references": [ - { - "type": "number", - "value": "3px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 3 - }, - "name": "pf-t--global--border--width--300", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "300" - }, - "path": [ - "global", - "border", - "width", - "300" - ] - } - ] - }, - "pf-t--global--border--width--box--default": { - "description": "Use as the default border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the default border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--box--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "default" - }, - "path": [ - "global", - "border", - "width", - "box", - "default" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--box--hover": { - "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--box--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "hover" - }, - "path": [ - "global", - "border", - "width", - "box", - "hover" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--box--clicked": { - "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--box--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "clicked" - }, - "path": [ - "global", - "border", - "width", - "box", - "clicked" - ], - "references": [ - { - "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] - }, - "pf-t--global--border--width--box--status--default": { - "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", - "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--box--status--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "status" - }, - "path": [ - "global", - "border", - "width", - "box", - "status", - "default" - ], - "references": [ - { - "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] - }, - "pf-t--global--border--width--box--status--read": { - "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--box--status--read", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "status" - }, - "path": [ - "global", - "border", - "width", - "box", - "status", - "read" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--action--default": { - "description": "Use as the default border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the default border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--action--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "action", - "state": "default" - }, - "path": [ - "global", - "border", - "width", - "action", - "default" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--action--hover": { - "description": "Use as the hover state border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the hover state border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--action--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "action", - "state": "hover" - }, - "path": [ - "global", - "border", - "width", - "action", - "hover" - ], - "references": [ - { - "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] - }, - "pf-t--global--border--width--action--clicked": { - "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--action--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "action", - "state": "clicked" - }, - "path": [ - "global", - "border", - "width", - "action", - "clicked" - ], - "references": [ - { - "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] - }, - "pf-t--global--border--width--control--default": { - "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--control--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "control", - "state": "default" - }, - "path": [ - "global", - "border", - "width", - "control", - "default" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--control--hover": { - "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--control--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "control", - "state": "hover" - }, - "path": [ - "global", - "border", - "width", - "control", - "hover" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] - }, - "pf-t--global--border--width--control--clicked": { - "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--control--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "control", - "state": "clicked" - }, - "path": [ - "global", - "border", - "width", - "control", - "clicked" - ], - "references": [ - { - "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] - }, - "pf-t--global--border--radius--0": { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--border--radius--0", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "0" - }, - "path": [ - "global", - "border", - "radius", - "0" - ] - }, - "pf-t--global--border--radius--100": { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--border--radius--100", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "100" - }, - "path": [ - "global", - "border", - "radius", - "100" - ] - }, - "pf-t--global--border--radius--200": { - "type": "number", - "value": "6px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 6 - }, - "name": "pf-t--global--border--radius--200", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "200" - }, - "path": [ - "global", - "border", - "radius", - "200" - ] - }, - "pf-t--global--border--radius--300": { - "type": "number", - "value": "16px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--border--radius--300", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "300" - }, - "path": [ - "global", - "border", - "radius", - "300" - ] - }, - "pf-t--global--border--radius--400": { - "type": "number", - "value": "24px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--border--radius--400", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "400" - }, - "path": [ - "global", - "border", - "radius", - "400" - ] - }, - "pf-t--global--border--radius--500": { - "type": "number", - "value": "999px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 999 - }, - "name": "pf-t--global--border--radius--500", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "500" - }, - "path": [ - "global", - "border", - "radius", - "500" - ] - }, - "pf-t--global--border--radius--sharp": { - "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", - "type": "number", - "value": "{global.border.radius.0}" - }, - "name": "pf-t--global--border--radius--sharp", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "sharp" - }, - "path": [ - "global", - "border", - "radius", - "sharp" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--border--radius--0", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "0" - }, - "path": [ - "global", - "border", - "radius", - "0" - ] - } - ] - }, - "pf-t--global--border--radius--tiny": { - "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", - "type": "number", - "value": "{global.border.radius.100}" - }, - "name": "pf-t--global--border--radius--tiny", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "tiny" - }, - "path": [ - "global", - "border", - "radius", - "tiny" - ], - "references": [ - { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--border--radius--100", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "100" - }, - "path": [ - "global", - "border", - "radius", - "100" - ] - } - ] - }, - "pf-t--global--border--radius--small": { - "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", - "type": "number", - "value": "6px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", - "type": "number", - "value": "{global.border.radius.200}" - }, - "name": "pf-t--global--border--radius--small", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "small" - }, - "path": [ - "global", - "border", - "radius", - "small" - ], - "references": [ - { - "type": "number", - "value": "6px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 6 - }, - "name": "pf-t--global--border--radius--200", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "200" - }, - "path": [ - "global", - "border", - "radius", - "200" - ] - } - ] - }, - "pf-t--global--border--radius--medium": { - "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", - "type": "number", - "value": "16px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", - "type": "number", - "value": "{global.border.radius.300}" - }, - "name": "pf-t--global--border--radius--medium", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "medium" - }, - "path": [ - "global", - "border", - "radius", - "medium" - ], - "references": [ - { - "type": "number", - "value": "16px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--border--radius--300", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "300" - }, - "path": [ - "global", - "border", - "radius", - "300" - ] - } - ] - }, - "pf-t--global--border--radius--large": { - "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", - "type": "number", - "value": "24px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", - "type": "number", - "value": "{global.border.radius.400}" - }, - "name": "pf-t--global--border--radius--large", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "large" - }, - "path": [ - "global", - "border", - "radius", - "large" - ], - "references": [ - { - "type": "number", - "value": "24px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--border--radius--400", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "400" - }, - "path": [ - "global", - "border", - "radius", - "400" - ] - } - ] - }, - "pf-t--global--border--radius--pill": { - "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", - "type": "number", - "value": "999px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", - "type": "number", - "value": "{global.border.radius.500}" - }, - "name": "pf-t--global--border--radius--pill", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "pill" - }, - "path": [ - "global", - "border", - "radius", - "pill" - ], - "references": [ - { - "type": "number", - "value": "999px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 999 - }, - "name": "pf-t--global--border--radius--500", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "500" - }, - "path": [ - "global", - "border", - "radius", - "500" - ] - } - ] - }, - "pf-t--global--border--color--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--border--color--100", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "border", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, - "pf-t--global--border--color--200": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--border--color--200", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "border", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - }, - "pf-t--global--border--color--300": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--border--color--300", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "border", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - }, - "pf-t--global--border--color--brand--default": { - "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "{global.color.brand.default}" - }, - "name": "pf-t--global--border--color--brand--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "brand", - "state": "default" - }, - "path": [ - "global", - "border", - "color", - "brand", - "default" - ], - "references": [ - { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "{global.color.brand.200}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--brand--hover": { - "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "{global.color.brand.hover}" - }, - "name": "pf-t--global--border--color--brand--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "brand", - "state": "hover" - }, - "path": [ - "global", - "border", - "color", - "brand", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--brand--clicked": { - "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "{global.color.brand.clicked}" - }, - "name": "pf-t--global--border--color--brand--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "brand", - "state": "clicked" - }, - "path": [ - "global", - "border", - "color", - "brand", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--success--default": { - "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.success.default}" - }, - "name": "pf-t--global--border--color--status--success--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "border", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "{global.color.status.success.100}" - }, - "name": "pf-t--global--color--status--success--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--global--color--status--success--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--success--hover": { - "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", - "type": "color", - "value": "{global.color.status.success.hover}" - }, - "name": "pf-t--global--border--color--status--success--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "border", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "{global.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--success--clicked": { - "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", - "type": "color", - "value": "{global.color.status.success.clicked}" - }, - "name": "pf-t--global--border--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "border", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "{global.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--warning--default": { - "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.warning.200}" - }, - "name": "pf-t--global--border--color--status--warning--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "border", - "color", - "status", - "warning", - "default" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--status--warning--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--warning--hover": { - "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.warning.300}" - }, - "name": "pf-t--global--border--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "border", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--global--color--status--warning--300", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "warning", - "300" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--warning--clicked": { - "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.warning.300}" - }, - "name": "pf-t--global--border--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "border", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--global--color--status--warning--300", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "warning", - "300" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--danger--default": { - "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.danger.default}" - }, - "name": "pf-t--global--border--color--status--danger--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "border", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "{global.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--status--danger--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--danger--hover": { - "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.danger.hover}" - }, - "name": "pf-t--global--border--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "border", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--danger--clicked": { - "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.danger.clicked}" - }, - "name": "pf-t--global--border--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "border", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--info--default": { - "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.info.default}" - }, - "name": "pf-t--global--border--color--status--info--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "border", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "{global.color.status.info.100}" - }, - "name": "pf-t--global--color--status--info--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--color--status--info--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--info--hover": { - "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.info.hover}" - }, - "name": "pf-t--global--border--color--status--info--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "border", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "{global.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--info--clicked": { - "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.info.clicked}" - }, - "name": "pf-t--global--border--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "border", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "{global.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--custom--default": { - "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#147878", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.custom.default}" - }, - "name": "pf-t--global--border--color--status--custom--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "border", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#147878", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.color.status.custom.100}" - }, - "name": "pf-t--global--color--status--custom--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--global--color--status--custom--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--custom--hover": { - "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.custom.hover}" - }, - "name": "pf-t--global--border--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "border", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--status--custom--clicked": { - "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "{global.color.status.custom.clicked}" - }, - "name": "pf-t--global--border--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "border", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--default": { - "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "{global.border.color.100}" - }, - "name": "pf-t--global--border--color--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "default" - }, - "path": [ - "global", - "border", - "color", - "default" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--border--color--100", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "border", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--hover": { - "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "{global.color.brand.100}" - }, - "name": "pf-t--global--border--color--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "hover" - }, - "path": [ - "global", - "border", - "color", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--brand--100", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "100" - }, - "path": [ - "global", - "color", - "brand", - "100" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--clicked": { - "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "{global.color.brand.200}" - }, - "name": "pf-t--global--border--color--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "clicked" - }, - "path": [ - "global", - "border", - "color", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--disabled": { - "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "{global.color.disabled.200}" - }, - "name": "pf-t--global--border--color--disabled", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "disabled" - }, - "path": [ - "global", - "border", - "color", - "disabled" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--disabled--200", - "attributes": { - "category": "global", - "type": "color", - "item": "disabled", - "subitem": "200" - }, - "path": [ - "global", - "color", - "disabled", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--alt": { - "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", - "type": "color", - "value": "{global.background.color.primary.default}" - }, - "name": "pf-t--global--border--color--alt", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "alt" - }, - "path": [ - "global", - "border", - "color", - "alt" - ], - "references": [ - { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", - "type": "color", - "value": "{global.background.color.100}" - }, - "name": "pf-t--global--background--color--primary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "primary", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--border--color--on-secondary": { - "description": "Use on borders/dividers that are placed on a secondary bkg color.", - "type": "color", - "value": "#707070", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use on borders/dividers that are placed on a secondary bkg color.", - "type": "color", - "value": "{global.border.color.300}" - }, - "name": "pf-t--global--border--color--on-secondary", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "on-secondary" - }, - "path": [ - "global", - "border", - "color", - "on-secondary" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--border--color--300", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "border", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--red--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.color.nonstatus.red.200}" - }, - "name": "pf-t--global--border--color--nonstatus--red--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "red", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.30}" - }, - "name": "pf-t--global--color--nonstatus--red--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--red--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.red.300}" - }, - "name": "pf-t--global--border--color--nonstatus--red--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "red", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.40}" - }, - "name": "pf-t--global--color--nonstatus--red--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f56e6e" - }, - "name": "pf-t--color--red--40", - "attributes": { - "category": "color", - "type": "red", - "item": "40" - }, - "path": [ - "color", - "red", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--red--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.red.300}" - }, - "name": "pf-t--global--border--color--nonstatus--red--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "red", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.40}" - }, - "name": "pf-t--global--color--nonstatus--red--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f56e6e" - }, - "name": "pf-t--color--red--40", - "attributes": { - "category": "color", - "type": "red", - "item": "40" - }, - "path": [ - "color", - "red", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--orangered--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.orangered.200}" - }, - "name": "pf-t--global--border--color--nonstatus--orangered--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orangered", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orangered--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--orangered--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.orangered.300}" - }, - "name": "pf-t--global--border--color--nonstatus--orangered--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orangered", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--color--nonstatus--orangered--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--orangered--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.orangered.300}" - }, - "name": "pf-t--global--border--color--nonstatus--orangered--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orangered", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--color--nonstatus--orangered--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--orange--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.orange.200}" - }, - "name": "pf-t--global--border--color--nonstatus--orange--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orange", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orange--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--orange--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.orange.300}" - }, - "name": "pf-t--global--border--color--nonstatus--orange--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orange", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--global--color--nonstatus--orange--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--orange--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.orange.300}" - }, - "name": "pf-t--global--border--color--nonstatus--orange--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orange", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--global--color--nonstatus--orange--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--yellow--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.yellow.200}" - }, - "name": "pf-t--global--border--color--nonstatus--yellow--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "yellow", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--nonstatus--yellow--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--yellow--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.yellow.300}" - }, - "name": "pf-t--global--border--color--nonstatus--yellow--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "yellow", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--nonstatus--yellow--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--yellow--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.yellow.300}" - }, - "name": "pf-t--global--border--color--nonstatus--yellow--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "yellow", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--nonstatus--yellow--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--green--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.green.200}" - }, - "name": "pf-t--global--border--color--nonstatus--green--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "green", - "default" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--green--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.green.300}" - }, - "name": "pf-t--global--border--color--nonstatus--green--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "green", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--color--nonstatus--green--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--green--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.green.300}" - }, - "name": "pf-t--global--border--color--nonstatus--green--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "green", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--color--nonstatus--green--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--teal--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.teal.200}" - }, - "name": "pf-t--global--border--color--nonstatus--teal--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "teal", - "default" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--color--nonstatus--teal--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--teal--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.teal.300}" - }, - "name": "pf-t--global--border--color--nonstatus--teal--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "teal", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--color--nonstatus--teal--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--teal--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.teal.300}" - }, - "name": "pf-t--global--border--color--nonstatus--teal--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "teal", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--color--nonstatus--teal--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--blue--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.blue.200}" - }, - "name": "pf-t--global--border--color--nonstatus--blue--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "blue", - "default" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--color--nonstatus--blue--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--blue--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.blue.300}" - }, - "name": "pf-t--global--border--color--nonstatus--blue--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "blue", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--nonstatus--blue--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--blue--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.blue.300}" - }, - "name": "pf-t--global--border--color--nonstatus--blue--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "blue", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--nonstatus--blue--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--purple--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.purple.200}" - }, - "name": "pf-t--global--border--color--nonstatus--purple--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "purple", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--color--nonstatus--purple--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--purple--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.purple.300}" - }, - "name": "pf-t--global--border--color--nonstatus--purple--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "purple", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--global--color--nonstatus--purple--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "300" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--purple--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.purple.300}" - }, - "name": "pf-t--global--border--color--nonstatus--purple--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "purple", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--global--color--nonstatus--purple--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "300" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--gray--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.gray.200}" - }, - "name": "pf-t--global--border--color--nonstatus--gray--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "gray", - "default" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--gray--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.gray.300}" - }, - "name": "pf-t--global--border--color--nonstatus--gray--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "gray", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--nonstatus--gray--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "300" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--gray--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "{global.color.nonstatus.gray.300}" - }, - "name": "pf-t--global--border--color--nonstatus--gray--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "gray", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--nonstatus--gray--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "300" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--font--family--100": { - "type": "string", - "value": "Red Hat Text VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "string", - "value": "Red Hat Text VF" - }, - "name": "pf-t--global--font--family--100", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "100" - }, - "path": [ - "global", - "font", - "family", - "100" - ] - }, - "pf-t--global--font--family--200": { - "type": "string", - "value": "Red Hat Display VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "string", - "value": "Red Hat Display VF" - }, - "name": "pf-t--global--font--family--200", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "200" - }, - "path": [ - "global", - "font", - "family", - "200" - ] - }, - "pf-t--global--font--family--300": { - "type": "string", - "value": "Red Hat Mono VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "string", - "value": "Red Hat Mono VF" - }, - "name": "pf-t--global--font--family--300", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "300" - }, - "path": [ - "global", - "font", - "family", - "300" - ] - }, - "pf-t--global--font--family--body": { - "description": "Use to define the font family for body text", - "type": "number", - "value": "Red Hat Text VF", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the font family for body text", - "type": "number", - "value": "{global.font.family.100}" - }, - "name": "pf-t--global--font--family--body", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "body" - }, - "path": [ - "global", - "font", - "family", - "body" - ], - "references": [ - { - "type": "string", - "value": "Red Hat Text VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "string", - "value": "Red Hat Text VF" - }, - "name": "pf-t--global--font--family--100", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "100" - }, - "path": [ - "global", - "font", - "family", - "100" - ] - } - ] - }, - "pf-t--global--font--family--heading": { - "description": "Use to define the font family for heading text", - "type": "number", - "value": "Red Hat Display VF", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the font family for heading text", - "type": "number", - "value": "{global.font.family.200}" - }, - "name": "pf-t--global--font--family--heading", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "heading" - }, - "path": [ - "global", - "font", - "family", - "heading" - ], - "references": [ - { - "type": "string", - "value": "Red Hat Display VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "string", - "value": "Red Hat Display VF" - }, - "name": "pf-t--global--font--family--200", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "200" - }, - "path": [ - "global", - "font", - "family", - "200" - ] - } - ] - }, - "pf-t--global--font--family--mono": { - "description": "Use to define the font family for mono text", - "type": "number", - "value": "Red Hat Mono VF", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the font family for mono text", - "type": "number", - "value": "{global.font.family.300}" - }, - "name": "pf-t--global--font--family--mono", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "mono" - }, - "path": [ - "global", - "font", - "family", - "mono" - ], - "references": [ - { - "type": "string", - "value": "Red Hat Mono VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "string", - "value": "Red Hat Mono VF" - }, - "name": "pf-t--global--font--family--300", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "300" - }, - "path": [ - "global", - "font", - "family", - "300" - ] - } - ] - }, - "pf-t--global--font--weight--100": { - "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--font--weight--100", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "100" - }, - "path": [ - "global", - "font", - "weight", - "100" - ] - }, - "pf-t--global--font--weight--200": { - "type": "number", - "value": 500, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 500 - }, - "name": "pf-t--global--font--weight--200", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "200" - }, - "path": [ - "global", - "font", - "weight", - "200" - ] - }, - "pf-t--global--font--weight--300": { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 700 - }, - "name": "pf-t--global--font--weight--300", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "300" - }, - "path": [ - "global", - "font", - "weight", - "300" - ] - }, - "pf-t--global--font--weight--400": { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 700 - }, - "name": "pf-t--global--font--weight--400", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "400" - }, - "path": [ - "global", - "font", - "weight", - "400" - ] - }, - "pf-t--global--font--weight--body": { - "description": "Use to define the default weight for body text", - "type": "number", - "value": 400, - "bold": { - "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", - "type": "number", - "value": 500, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true - }, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the default weight for body text", - "type": "number", - "value": "{global.font.weight.100}", - "bold": { - "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", - "type": "number", - "value": "{global.font.weight.200}", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true - } - }, - "name": "pf-t--global--font--weight--body", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "body" - }, - "path": [ - "global", - "font", - "weight", - "body" - ], - "references": [ - { - "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--font--weight--100", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "100" - }, - "path": [ - "global", - "font", - "weight", - "100" - ] - } - ] - }, - "pf-t--global--font--weight--heading": { - "description": "Use to define the default weight for heading text", - "type": "number", - "value": 700, - "bold": { - "description": "Use to define the bold weight for heading text, often used to add emphasis.", - "type": "number", - "value": 700, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true - }, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the default weight for heading text", - "type": "number", - "value": "{global.font.weight.300}", - "bold": { - "description": "Use to define the bold weight for heading text, often used to add emphasis.", - "type": "number", - "value": "{global.font.weight.400}", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true - } - }, - "name": "pf-t--global--font--weight--heading", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "heading" - }, - "path": [ - "global", - "font", - "weight", - "heading" - ], - "references": [ - { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 700 - }, - "name": "pf-t--global--font--weight--300", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "300" - }, - "path": [ - "global", - "font", - "weight", - "300" - ] - } - ] - }, - "pf-t--global--font--line-height--100": { - "type": "number", - "value": 1.2999999523162842, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1.2999999523162842 - }, - "name": "pf-t--global--font--line-height--100", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "100" - }, - "path": [ - "global", - "font", - "line-height", - "100" - ] - }, - "pf-t--global--font--line-height--200": { - "type": "number", - "value": 1.5, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1.5 - }, - "name": "pf-t--global--font--line-height--200", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "200" - }, - "path": [ - "global", - "font", - "line-height", - "200" - ] - }, - "pf-t--global--font--line-height--body": { - "description": "Use to define the line height for body text", - "type": "number", - "value": 1.2999999523162842, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the line height for body text", - "type": "number", - "value": "{global.font.line-height.100}" - }, - "name": "pf-t--global--font--line-height--body", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "body" - }, - "path": [ - "global", - "font", - "line-height", - "body" - ], - "references": [ - { - "type": "number", - "value": 1.2999999523162842, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1.2999999523162842 - }, - "name": "pf-t--global--font--line-height--100", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "100" - }, - "path": [ - "global", - "font", - "line-height", - "100" - ] - } - ] - }, - "pf-t--global--font--line-height--heading": { - "description": "Use to define the line height for heading text", - "type": "number", - "value": 1.5, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the line height for heading text", - "type": "number", - "value": "{global.font.line-height.200}" - }, - "name": "pf-t--global--font--line-height--heading", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "heading" - }, - "path": [ - "global", - "font", - "line-height", - "heading" - ], - "references": [ - { - "type": "number", - "value": 1.5, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1.5 - }, - "name": "pf-t--global--font--line-height--200", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "200" - }, - "path": [ - "global", - "font", - "line-height", - "200" - ] - } - ] - }, - "pf-t--global--font--size--100": { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - }, - "pf-t--global--font--size--200": { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - }, - "pf-t--global--font--size--300": { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - }, - "pf-t--global--font--size--400": { - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - }, - "pf-t--global--font--size--500": { - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - }, - "pf-t--global--font--size--600": { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - }, - "pf-t--global--font--size--700": { - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 28 - }, - "name": "pf-t--global--font--size--700", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "700" - }, - "path": [ - "global", - "font", - "size", - "700" - ] - }, - "pf-t--global--font--size--800": { - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 36 - }, - "name": "pf-t--global--font--size--800", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "800" - }, - "path": [ - "global", - "font", - "size", - "800" - ] - }, - "pf-t--global--font--size--body--sm": { - "description": "Use for a smaller font size in body sections.", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for a smaller font size in body sections.", - "type": "number", - "value": "{global.font.size.xs}" - }, - "name": "pf-t--global--font--size--body--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "sm" - }, - "path": [ - "global", - "font", - "size", - "body", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--body--default": { - "description": "Use as the default font size in body sections.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the default font size in body sections.", - "type": "number", - "value": "{global.font.size.sm}" - }, - "name": "pf-t--global--font--size--body--default", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "default" - }, - "path": [ - "global", - "font", - "size", - "body", - "default" - ], - "references": [ - { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--body--lg": { - "description": "Use for a larger font size in body sections.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use for a larger font size in body sections.", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--body--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "lg" - }, - "path": [ - "global", - "font", - "size", - "body", - "lg" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--heading--h1": { - "description": "Use as the font size for first level headings.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for first level headings.", - "type": "number", - "value": "{global.font.size.2xl}" - }, - "name": "pf-t--global--font--size--heading--h1", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h1" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h1" - ], - "references": [ - { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--heading--h2": { - "description": "Use as the font size for second level headings.", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for second level headings.", - "type": "number", - "value": "{global.font.size.xl}" - }, - "name": "pf-t--global--font--size--heading--h2", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h2" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h2" - ], - "references": [ - { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.500}" - }, - "name": "pf-t--global--font--size--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "font", - "size", - "xl" - ], - "references": [ - { - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--heading--h3": { - "description": "Use as the font size for third level headings.", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for third level headings.", - "type": "number", - "value": "{global.font.size.lg}" - }, - "name": "pf-t--global--font--size--heading--h3", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h3" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h3" - ], - "references": [ - { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.400}" - }, - "name": "pf-t--global--font--size--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "font", - "size", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--heading--h4": { - "description": "Use as the font size for fourth-level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for fourth-level headings.", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h4", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h4" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h4" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--heading--h5": { - "description": "Use as the font size for fifth level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for fifth level headings.", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h5", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h5" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h5" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--heading--h6": { - "description": "Use as the font size for sixth level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for sixth level headings.", - "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h6", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h6" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h6" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--font--size--xs": { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] - }, - "pf-t--global--font--size--sm": { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] - }, - "pf-t--global--font--size--md": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - }, - "pf-t--global--font--size--lg": { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.400}" - }, - "name": "pf-t--global--font--size--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "font", - "size", - "lg" - ], - "references": [ - { - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - } - ] - }, - "pf-t--global--font--size--xl": { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.500}" - }, - "name": "pf-t--global--font--size--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "font", - "size", - "xl" - ], - "references": [ - { - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - } - ] - }, - "pf-t--global--font--size--2xl": { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] - }, - "pf-t--global--font--size--3xl": { - "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.700}" - }, - "name": "pf-t--global--font--size--3xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "3xl" - }, - "path": [ - "global", - "font", - "size", - "3xl" - ], - "references": [ - { - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 28 - }, - "name": "pf-t--global--font--size--700", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "700" - }, - "path": [ - "global", - "font", - "size", - "700" - ] - } - ] - }, - "pf-t--global--font--size--4xl": { - "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "{global.font.size.800}" - }, - "name": "pf-t--global--font--size--4xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "4xl" - }, - "path": [ - "global", - "font", - "size", - "4xl" - ], - "references": [ - { - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 36 - }, - "name": "pf-t--global--font--size--800", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "800" - }, - "path": [ - "global", - "font", - "size", - "800" - ] - } - ] - }, - "pf-t--global--z-index--100": { - "type": "number", - "value": 100, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 100 - }, - "name": "pf-t--global--z-index--100", - "attributes": { - "category": "global", - "type": "z-index", - "item": "100" - }, - "path": [ - "global", - "z-index", - "100" - ] - }, - "pf-t--global--z-index--200": { - "type": "number", - "value": 200, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 200 - }, - "name": "pf-t--global--z-index--200", - "attributes": { - "category": "global", - "type": "z-index", - "item": "200" - }, - "path": [ - "global", - "z-index", - "200" - ] - }, - "pf-t--global--z-index--300": { - "type": "number", - "value": 300, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--global--z-index--300", - "attributes": { - "category": "global", - "type": "z-index", - "item": "300" - }, - "path": [ - "global", - "z-index", - "300" - ] - }, - "pf-t--global--z-index--400": { - "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--z-index--400", - "attributes": { - "category": "global", - "type": "z-index", - "item": "400" - }, - "path": [ - "global", - "z-index", - "400" - ] - }, - "pf-t--global--z-index--500": { - "type": "number", - "value": 500, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 500 - }, - "name": "pf-t--global--z-index--500", - "attributes": { - "category": "global", - "type": "z-index", - "item": "500" - }, - "path": [ - "global", - "z-index", - "500" - ] - }, - "pf-t--global--z-index--600": { - "type": "number", - "value": 600, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 600 - }, - "name": "pf-t--global--z-index--600", - "attributes": { - "category": "global", - "type": "z-index", - "item": "600" - }, - "path": [ - "global", - "z-index", - "600" - ] - }, - "pf-t--global--z-index--xs": { - "type": "number", - "value": 100, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.z-index.100}" - }, - "name": "pf-t--global--z-index--xs", - "attributes": { - "category": "global", - "type": "z-index", - "item": "xs" - }, - "path": [ - "global", - "z-index", - "xs" - ], - "references": [ - { - "type": "number", - "value": 100, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 100 - }, - "name": "pf-t--global--z-index--100", - "attributes": { - "category": "global", - "type": "z-index", - "item": "100" - }, - "path": [ - "global", - "z-index", - "100" - ] - } - ] - }, - "pf-t--global--z-index--sm": { - "type": "number", - "value": 200, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.z-index.200}" - }, - "name": "pf-t--global--z-index--sm", - "attributes": { - "category": "global", - "type": "z-index", - "item": "sm" - }, - "path": [ - "global", - "z-index", - "sm" - ], - "references": [ - { - "type": "number", - "value": 200, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 200 - }, - "name": "pf-t--global--z-index--200", - "attributes": { - "category": "global", - "type": "z-index", - "item": "200" - }, - "path": [ - "global", - "z-index", - "200" - ] - } - ] - }, - "pf-t--global--z-index--md": { - "type": "number", - "value": 300, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.z-index.300}" - }, - "name": "pf-t--global--z-index--md", - "attributes": { - "category": "global", - "type": "z-index", - "item": "md" - }, - "path": [ - "global", - "z-index", - "md" - ], - "references": [ - { - "type": "number", - "value": 300, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--global--z-index--300", - "attributes": { - "category": "global", - "type": "z-index", - "item": "300" - }, - "path": [ - "global", - "z-index", - "300" - ] - } - ] - }, - "pf-t--global--z-index--lg": { - "type": "number", - "value": 400, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.z-index.400}" - }, - "name": "pf-t--global--z-index--lg", - "attributes": { - "category": "global", - "type": "z-index", - "item": "lg" - }, - "path": [ - "global", - "z-index", - "lg" - ], - "references": [ - { - "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--z-index--400", - "attributes": { - "category": "global", - "type": "z-index", - "item": "400" - }, - "path": [ - "global", - "z-index", - "400" - ] - } - ] - }, - "pf-t--global--z-index--xl": { - "type": "number", - "value": 500, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.z-index.500}" - }, - "name": "pf-t--global--z-index--xl", - "attributes": { - "category": "global", - "type": "z-index", - "item": "xl" - }, - "path": [ - "global", - "z-index", - "xl" - ], - "references": [ - { - "type": "number", - "value": 500, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 500 - }, - "name": "pf-t--global--z-index--500", - "attributes": { - "category": "global", - "type": "z-index", - "item": "500" - }, - "path": [ - "global", - "z-index", - "500" - ] - } - ] - }, - "pf-t--global--z-index--2xl": { - "type": "number", - "value": 600, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": "{global.z-index.600}" - }, - "name": "pf-t--global--z-index--2xl", - "attributes": { - "category": "global", - "type": "z-index", - "item": "2xl" - }, - "path": [ - "global", - "z-index", - "2xl" - ], - "references": [ - { - "type": "number", - "value": 600, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 600 - }, - "name": "pf-t--global--z-index--600", - "attributes": { - "category": "global", - "type": "z-index", - "item": "600" - }, - "path": [ - "global", - "z-index", - "600" - ] - } - ] - }, - "pf-t--global--box-shadow--X--100": { - "type": "number", - "value": "-8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": -8 - }, - "name": "pf-t--global--box-shadow--X--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "X", - "100" - ] - }, - "pf-t--global--box-shadow--X--200": { - "type": "number", - "value": "-4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": -4 - }, - "name": "pf-t--global--box-shadow--X--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "X", - "200" - ] - }, - "pf-t--global--box-shadow--X--300": { - "type": "number", - "value": "-1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": -1 - }, - "name": "pf-t--global--box-shadow--X--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "X", - "300" - ] - }, - "pf-t--global--box-shadow--X--400": { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - }, - "pf-t--global--box-shadow--X--500": { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--X--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "X", - "500" - ] - }, - "pf-t--global--box-shadow--X--600": { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--X--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "X", - "600" - ] - }, - "pf-t--global--box-shadow--X--700": { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--X--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "X", - "700" - ] - }, - "pf-t--global--box-shadow--X--sm--default": { - "description": "Use to define the X value for a default small box-shadow, like in sticky sections", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the X value for a default small box-shadow, like in sticky sections", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--sm--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "default" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--sm--top": { - "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--sm--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "top" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--sm--bottom": { - "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--sm--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "bottom" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--sm--left": { - "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", - "type": "number", - "value": "-1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", - "type": "number", - "value": "{global.box-shadow.X.300}" - }, - "name": "pf-t--global--box-shadow--X--sm--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "left" - ], - "references": [ - { - "type": "number", - "value": "-1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": -1 - }, - "name": "pf-t--global--box-shadow--X--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "X", - "300" - ] - } - ] - }, - "pf-t--global--box-shadow--X--sm--right": { - "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", - "type": "number", - "value": "{global.box-shadow.X.500}" - }, - "name": "pf-t--global--box-shadow--X--sm--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "right" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--X--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "X", - "500" - ] - } - ] - }, - "pf-t--global--box-shadow--X--md--default": { - "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--md--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "default" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--md--top": { - "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--md--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "top" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--md--bottom": { - "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--md--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "bottom" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--md--left": { - "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", - "type": "number", - "value": "-4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", - "type": "number", - "value": "{global.box-shadow.X.200}" - }, - "name": "pf-t--global--box-shadow--X--md--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "left" - ], - "references": [ - { - "type": "number", - "value": "-4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": -4 - }, - "name": "pf-t--global--box-shadow--X--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "X", - "200" - ] - } - ] - }, - "pf-t--global--box-shadow--X--md--right": { - "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", - "type": "number", - "value": "{global.box-shadow.X.600}" - }, - "name": "pf-t--global--box-shadow--X--md--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "right" - ], - "references": [ - { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--X--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "X", - "600" - ] - } - ] - }, - "pf-t--global--box-shadow--X--lg--default": { - "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--lg--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "default" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--lg--top": { - "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--lg--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "top" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--lg--bottom": { - "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--lg--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "bottom" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--lg--left": { - "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", - "type": "number", - "value": "-8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", - "type": "number", - "value": "{global.box-shadow.X.100}" - }, - "name": "pf-t--global--box-shadow--X--lg--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "left" - ], - "references": [ - { - "type": "number", - "value": "-8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": -8 - }, - "name": "pf-t--global--box-shadow--X--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "X", - "100" - ] - } - ] - }, - "pf-t--global--box-shadow--X--lg--right": { - "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", - "type": "number", - "value": "{global.box-shadow.X.700}" - }, - "name": "pf-t--global--box-shadow--X--lg--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "right" - ], - "references": [ - { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--X--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "X", - "700" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--100": { - "type": "number", - "value": "-8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": -8 - }, - "name": "pf-t--global--box-shadow--Y--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "Y", - "100" - ] - }, - "pf-t--global--box-shadow--Y--200": { - "type": "number", - "value": "-4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": -4 - }, - "name": "pf-t--global--box-shadow--Y--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "Y", - "200" - ] - }, - "pf-t--global--box-shadow--Y--300": { - "type": "number", - "value": "-1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": -1 - }, - "name": "pf-t--global--box-shadow--Y--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "Y", - "300" - ] - }, - "pf-t--global--box-shadow--Y--400": { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - }, - "pf-t--global--box-shadow--Y--500": { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--Y--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "Y", - "500" - ] - }, - "pf-t--global--box-shadow--Y--600": { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--Y--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "Y", - "600" - ] - }, - "pf-t--global--box-shadow--Y--700": { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--Y--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "Y", - "700" - ] - }, - "pf-t--global--box-shadow--Y--sm--default": { - "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", - "type": "number", - "value": "{global.box-shadow.Y.500}" - }, - "name": "pf-t--global--box-shadow--Y--sm--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "default" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--Y--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "Y", - "500" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--sm--top": { - "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", - "type": "number", - "value": "-1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", - "type": "number", - "value": "{global.box-shadow.Y.300}" - }, - "name": "pf-t--global--box-shadow--Y--sm--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "top" - ], - "references": [ - { - "type": "number", - "value": "-1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": -1 - }, - "name": "pf-t--global--box-shadow--Y--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "Y", - "300" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--sm--bottom": { - "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", - "type": "number", - "value": "{global.box-shadow.Y.500}" - }, - "name": "pf-t--global--box-shadow--Y--sm--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "bottom" - ], - "references": [ - { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--Y--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "Y", - "500" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--sm--left": { - "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", - "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--sm--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "left" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--sm--right": { - "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", - "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--sm--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "right" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--md--default": { - "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", - "type": "number", - "value": "{global.box-shadow.Y.600}" - }, - "name": "pf-t--global--box-shadow--Y--md--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "default" - ], - "references": [ - { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--Y--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "Y", - "600" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--md--top": { - "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", - "type": "number", - "value": "-4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", - "type": "number", - "value": "{global.box-shadow.Y.200}" - }, - "name": "pf-t--global--box-shadow--Y--md--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "top" - ], - "references": [ - { - "type": "number", - "value": "-4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": -4 - }, - "name": "pf-t--global--box-shadow--Y--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "Y", - "200" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--md--bottom": { - "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "{global.box-shadow.Y.600}" - }, - "name": "pf-t--global--box-shadow--Y--md--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "bottom" - ], - "references": [ - { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--Y--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "Y", - "600" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--md--left": { - "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", - "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--md--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "left" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--md--right": { - "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", - "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--md--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "right" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--lg--default": { - "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", - "type": "number", - "value": "{global.box-shadow.Y.700}" - }, - "name": "pf-t--global--box-shadow--Y--lg--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "default" - ], - "references": [ - { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--Y--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "Y", - "700" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--lg--top": { - "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", - "type": "number", - "value": "-8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", - "type": "number", - "value": "{global.box-shadow.Y.100}" - }, - "name": "pf-t--global--box-shadow--Y--lg--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "top" - ], - "references": [ - { - "type": "number", - "value": "-8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": -8 - }, - "name": "pf-t--global--box-shadow--Y--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "Y", - "100" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--lg--bottom": { - "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "{global.box-shadow.Y.700}" - }, - "name": "pf-t--global--box-shadow--Y--lg--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "bottom" - ], - "references": [ - { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--Y--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "Y", - "700" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--lg--left": { - "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", - "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--lg--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "left" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--lg--right": { - "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", - "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--lg--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "right" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--blur--100": { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--blur--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "blur", - "100" - ] - }, - "pf-t--global--box-shadow--blur--200": { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--blur--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "blur", - "200" - ] - }, - "pf-t--global--box-shadow--blur--300": { - "type": "number", - "value": "24px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--box-shadow--blur--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "blur", - "300" - ] - }, - "pf-t--global--box-shadow--blur--sm": { - "description": "Use to define the blur for a small box-shadow", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the blur for a small box-shadow", - "type": "number", - "value": "{global.box-shadow.blur.100}" - }, - "name": "pf-t--global--box-shadow--blur--sm", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "sm" - }, - "path": [ - "global", - "box-shadow", - "blur", - "sm" - ], - "references": [ - { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--blur--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "blur", - "100" - ] - } - ] - }, - "pf-t--global--box-shadow--blur--md": { - "description": "Use to define the blur for a medium box-shadow", - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the blur for a medium box-shadow", - "type": "number", - "value": "{global.box-shadow.blur.200}" - }, - "name": "pf-t--global--box-shadow--blur--md", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "md" - }, - "path": [ - "global", - "box-shadow", - "blur", - "md" - ], - "references": [ - { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--blur--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "blur", - "200" - ] - } - ] - }, - "pf-t--global--box-shadow--blur--lg": { - "description": "Use to define the blue for a large box-shadow", - "type": "number", - "value": "24px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the blue for a large box-shadow", - "type": "number", - "value": "{global.box-shadow.blur.300}" - }, - "name": "pf-t--global--box-shadow--blur--lg", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "lg" - }, - "path": [ - "global", - "box-shadow", - "blur", - "lg" - ], - "references": [ - { - "type": "number", - "value": "24px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 24 - }, - "name": "pf-t--global--box-shadow--blur--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "blur", - "300" - ] - } - ] - }, - "pf-t--global--box-shadow--spread--100": { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--spread--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "spread", - "100" - ] - }, - "pf-t--global--box-shadow--spread--sm": { - "description": "Use to define the spread for a small box-shadow", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the spread for a small box-shadow", - "type": "number", - "value": "{global.box-shadow.spread.100}" - }, - "name": "pf-t--global--box-shadow--spread--sm", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "sm" - }, - "path": [ - "global", - "box-shadow", - "spread", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--spread--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "spread", - "100" - ] - } - ] - }, - "pf-t--global--box-shadow--spread--md": { - "description": "Use to define the spread of a medium box-shadow", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the spread of a medium box-shadow", - "type": "number", - "value": "{global.box-shadow.spread.100}" - }, - "name": "pf-t--global--box-shadow--spread--md", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "md" - }, - "path": [ - "global", - "box-shadow", - "spread", - "md" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--spread--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "spread", - "100" - ] - } - ] - }, - "pf-t--global--box-shadow--spread--lg": { - "description": "Use to define the spread of a large box-shadow", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define the spread of a large box-shadow", - "type": "number", - "value": "{global.box-shadow.spread.100}" - }, - "name": "pf-t--global--box-shadow--spread--lg", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "lg" - }, - "path": [ - "global", - "box-shadow", - "spread", - "lg" - ], - "references": [ - { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--spread--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "spread", - "100" - ] - } - ] - }, - "pf-t--global--box-shadow--color--100": { - "type": "color", - "value": "rgba(0, 0, 0, 0.1600)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(0, 0, 0, 0.1600)" - }, - "name": "pf-t--global--box-shadow--color--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "color", - "100" - ] - }, - "pf-t--global--box-shadow--color--200": { - "type": "color", - "value": "rgba(0, 0, 0, 0.1200)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(0, 0, 0, 0.1200)" - }, - "name": "pf-t--global--box-shadow--color--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "color", - "200" - ] - }, - "pf-t--global--box-shadow--color--sm": { - "description": "Use as the color of small box-shadows.", - "type": "color", - "value": "rgba(0, 0, 0, 0.1600)", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of small box-shadows.", - "type": "color", - "value": "{global.box-shadow.color.100}" - }, - "name": "pf-t--global--box-shadow--color--sm", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "sm" - }, - "path": [ - "global", - "box-shadow", - "color", - "sm" - ], - "references": [ - { - "type": "color", - "value": "rgba(0, 0, 0, 0.1600)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(0, 0, 0, 0.1600)" - }, - "name": "pf-t--global--box-shadow--color--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "color", - "100" - ] - } - ] - }, - "pf-t--global--box-shadow--color--md": { - "description": "Use as the color of medium box-shadows.", - "type": "color", - "value": "rgba(0, 0, 0, 0.1200)", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of medium box-shadows.", - "type": "color", - "value": "{global.box-shadow.color.200}" - }, - "name": "pf-t--global--box-shadow--color--md", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "md" - }, - "path": [ - "global", - "box-shadow", - "color", - "md" - ], - "references": [ - { - "type": "color", - "value": "rgba(0, 0, 0, 0.1200)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(0, 0, 0, 0.1200)" - }, - "name": "pf-t--global--box-shadow--color--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "color", - "200" - ] - } - ] - }, - "pf-t--global--box-shadow--color--lg": { - "description": "Use as the color of large box-shadows.", - "type": "color", - "value": "rgba(0, 0, 0, 0.1200)", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of large box-shadows.", - "type": "color", - "value": "{global.box-shadow.color.200}" - }, - "name": "pf-t--global--box-shadow--color--lg", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "lg" - }, - "path": [ - "global", - "box-shadow", - "color", - "lg" - ], - "references": [ - { - "type": "color", - "value": "rgba(0, 0, 0, 0.1200)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(0, 0, 0, 0.1200)" - }, - "name": "pf-t--global--box-shadow--color--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "color", - "200" - ] - } - ] - }, - "pf-t--global--breakpoint--100": { - "type": "number", - "value": "0rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--breakpoint--100", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "100" - }, - "path": [ - "global", - "breakpoint", - "100" - ] - }, - "pf-t--global--breakpoint--200": { - "type": "number", - "value": "36rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 576 - }, - "name": "pf-t--global--breakpoint--200", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "200" - }, - "path": [ - "global", - "breakpoint", - "200" - ] - }, - "pf-t--global--breakpoint--250": { - "type": "number", - "value": "40rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 640 - }, - "name": "pf-t--global--breakpoint--250", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "250" - }, - "path": [ - "global", - "breakpoint", - "250" - ] - }, - "pf-t--global--breakpoint--300": { - "type": "number", - "value": "48rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 768 - }, - "name": "pf-t--global--breakpoint--300", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "300" - }, - "path": [ - "global", - "breakpoint", - "300" - ] - }, - "pf-t--global--breakpoint--350": { - "type": "number", - "value": "60rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 960 - }, - "name": "pf-t--global--breakpoint--350", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "350" - }, - "path": [ - "global", - "breakpoint", - "350" - ] - }, - "pf-t--global--breakpoint--400": { - "type": "number", - "value": "62rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 992 - }, - "name": "pf-t--global--breakpoint--400", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "400" - }, - "path": [ - "global", - "breakpoint", - "400" - ] - }, - "pf-t--global--breakpoint--500": { - "type": "number", - "value": "75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1200 - }, - "name": "pf-t--global--breakpoint--500", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "500" - }, - "path": [ - "global", - "breakpoint", - "500" - ] - }, - "pf-t--global--breakpoint--550": { - "type": "number", - "value": "80rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1280 - }, - "name": "pf-t--global--breakpoint--550", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "550" - }, - "path": [ - "global", - "breakpoint", - "550" - ] - }, - "pf-t--global--breakpoint--600": { - "type": "number", - "value": "90.625rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1450 - }, - "name": "pf-t--global--breakpoint--600", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "600" - }, - "path": [ - "global", - "breakpoint", - "600" - ] - }, - "pf-t--global--breakpoint--xs": { - "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "0rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.100}" - }, - "name": "pf-t--global--breakpoint--xs", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "xs" - }, - "path": [ - "global", - "breakpoint", - "xs" - ], - "references": [ - { - "type": "number", - "value": "0rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--breakpoint--100", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "100" - }, - "path": [ - "global", - "breakpoint", - "100" - ] - } - ] - }, - "pf-t--global--breakpoint--sm": { - "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "36rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.200}" - }, - "name": "pf-t--global--breakpoint--sm", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "sm" - }, - "path": [ - "global", - "breakpoint", - "sm" - ], - "references": [ - { - "type": "number", - "value": "36rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 576 - }, - "name": "pf-t--global--breakpoint--200", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "200" - }, - "path": [ - "global", - "breakpoint", - "200" - ] - } - ] - }, - "pf-t--global--breakpoint--md": { - "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "48rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.300}" - }, - "name": "pf-t--global--breakpoint--md", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "md" - }, - "path": [ - "global", - "breakpoint", - "md" - ], - "references": [ - { - "type": "number", - "value": "48rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 768 - }, - "name": "pf-t--global--breakpoint--300", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "300" - }, - "path": [ - "global", - "breakpoint", - "300" - ] - } - ] - }, - "pf-t--global--breakpoint--lg": { - "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "62rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.400}" - }, - "name": "pf-t--global--breakpoint--lg", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "lg" - }, - "path": [ - "global", - "breakpoint", - "lg" - ], - "references": [ - { - "type": "number", - "value": "62rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 992 - }, - "name": "pf-t--global--breakpoint--400", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "400" - }, - "path": [ - "global", - "breakpoint", - "400" - ] - } - ] - }, - "pf-t--global--breakpoint--xl": { - "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.500}" - }, - "name": "pf-t--global--breakpoint--xl", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "xl" - }, - "path": [ - "global", - "breakpoint", - "xl" - ], - "references": [ - { - "type": "number", - "value": "75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1200 - }, - "name": "pf-t--global--breakpoint--500", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "500" - }, - "path": [ - "global", - "breakpoint", - "500" - ] - } - ] - }, - "pf-t--global--breakpoint--2xl": { - "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "90.625rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.600}" - }, - "name": "pf-t--global--breakpoint--2xl", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "2xl" - }, - "path": [ - "global", - "breakpoint", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "90.625rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1450 - }, - "name": "pf-t--global--breakpoint--600", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "600" - }, - "path": [ - "global", - "breakpoint", - "600" - ] - } - ] - }, - "pf-t--global--breakpoint--height--sm": { - "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "0rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.100}" - }, - "name": "pf-t--global--breakpoint--height--sm", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "sm" - }, - "path": [ - "global", - "breakpoint", - "height", - "sm" - ], - "references": [ - { - "type": "number", - "value": "0rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--breakpoint--100", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "100" - }, - "path": [ - "global", - "breakpoint", - "100" - ] - } - ] - }, - "pf-t--global--breakpoint--height--md": { - "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "40rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.250}" - }, - "name": "pf-t--global--breakpoint--height--md", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "md" - }, - "path": [ - "global", - "breakpoint", - "height", - "md" - ], - "references": [ - { - "type": "number", - "value": "40rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 640 - }, - "name": "pf-t--global--breakpoint--250", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "250" - }, - "path": [ - "global", - "breakpoint", - "250" - ] - } - ] - }, - "pf-t--global--breakpoint--height--lg": { - "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "48rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.300}" - }, - "name": "pf-t--global--breakpoint--height--lg", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "lg" - }, - "path": [ - "global", - "breakpoint", - "height", - "lg" - ], - "references": [ - { - "type": "number", - "value": "48rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 768 - }, - "name": "pf-t--global--breakpoint--300", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "300" - }, - "path": [ - "global", - "breakpoint", - "300" - ] - } - ] - }, - "pf-t--global--breakpoint--height--xl": { - "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "60rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.350}" - }, - "name": "pf-t--global--breakpoint--height--xl", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "xl" - }, - "path": [ - "global", - "breakpoint", - "height", - "xl" - ], - "references": [ - { - "type": "number", - "value": "60rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 960 - }, - "name": "pf-t--global--breakpoint--350", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "350" - }, - "path": [ - "global", - "breakpoint", - "350" - ] - } - ] - }, - "pf-t--global--breakpoint--height--2xl": { - "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "80rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.550}" - }, - "name": "pf-t--global--breakpoint--height--2xl", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "2xl" - }, - "path": [ - "global", - "breakpoint", - "height", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "80rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 1280 - }, - "name": "pf-t--global--breakpoint--550", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "550" - }, - "path": [ - "global", - "breakpoint", - "550" - ] - } - ] - }, - "pf-t--global--background--color--100": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - }, - "pf-t--global--background--color--200": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--background--color--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - }, - "pf-t--global--background--color--300": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--background--color--300", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "background", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - }, - "pf-t--global--background--color--400": { - "type": "color", - "value": "#292929", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--background--color--400", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "400" - }, - "path": [ - "global", - "background", - "color", - "400" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - }, - "pf-t--global--background--color--500": { - "type": "color", - "value": "rgba(21, 21, 21, 0.2000)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(21, 21, 21, 0.2000)" - }, - "name": "pf-t--global--background--color--500", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "500" - }, - "path": [ - "global", - "background", - "color", - "500" - ] - }, - "pf-t--global--background--color--600": { - "type": "color", - "value": "rgba(199, 199, 199, 0.2500)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(199, 199, 199, 0.2500)" - }, - "name": "pf-t--global--background--color--600", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "600" - }, - "path": [ - "global", - "background", - "color", - "600" - ] - }, - "pf-t--global--background--color--highlight--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--background--color--highlight--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "100" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--global--background--color--highlight--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--background--color--highlight--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "200" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - }, - "pf-t--global--background--color--highlight--default": { - "description": "Use as the background color for highlighted elements", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the background color for highlighted elements", - "type": "color", - "value": "{global.background.color.highlight.100}" - }, - "name": "pf-t--global--background--color--highlight--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--background--color--highlight--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "100" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--highlight--clicked": { - "description": "Use as the active state for for highlighted elements", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the active state for for highlighted elements", - "type": "color", - "value": "{global.background.color.highlight.200}" - }, - "name": "pf-t--global--background--color--highlight--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "clicked" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--background--color--highlight--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "200" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--primary--default": { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", - "type": "color", - "value": "{global.background.color.100}" - }, - "name": "pf-t--global--background--color--primary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "primary", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--primary--hover": { - "description": "Use as the hover state for primary backgrounds", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for primary backgrounds", - "type": "color", - "value": "{global.background.color.200}" - }, - "name": "pf-t--global--background--color--primary--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "hover" - }, - "path": [ - "global", - "background", - "color", - "primary", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--background--color--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--primary--clicked": { - "description": "Use as the clicked state for primary backgrounds", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for primary backgrounds", - "type": "color", - "value": "{global.background.color.200}" - }, - "name": "pf-t--global--background--color--primary--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "clicked" - }, - "path": [ - "global", - "background", - "color", - "primary", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--background--color--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--secondary--default": { - "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", - "type": "color", - "value": "{global.background.color.200}" - }, - "name": "pf-t--global--background--color--secondary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "secondary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "secondary", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--background--color--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--secondary--hover": { - "description": "Use as the hover state for secondary backgrounds", - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for secondary backgrounds", - "type": "color", - "value": "{global.background.color.300}" - }, - "name": "pf-t--global--background--color--secondary--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "secondary", - "state": "hover" - }, - "path": [ - "global", - "background", - "color", - "secondary", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--background--color--300", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "background", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--secondary--clicked": { - "description": "Use as the clicked state for secondary backgrounds", - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for secondary backgrounds", - "type": "color", - "value": "{global.background.color.300}" - }, - "name": "pf-t--global--background--color--secondary--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "secondary", - "state": "clicked" - }, - "path": [ - "global", - "background", - "color", - "secondary", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--background--color--300", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "background", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--floating--default": { - "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", - "type": "color", - "value": "{global.background.color.100}" - }, - "name": "pf-t--global--background--color--floating--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "floating", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "floating", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--floating--hover": { - "description": "Use as the hover state for floating backgrounds", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for floating backgrounds", - "type": "color", - "value": "{global.background.color.200}" - }, - "name": "pf-t--global--background--color--floating--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "floating", - "state": "hover" - }, - "path": [ - "global", - "background", - "color", - "floating", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--background--color--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--floating--clicked": { - "description": "Use as the clicked state for floating backgrounds", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for floating backgrounds", - "type": "color", - "value": "{global.background.color.200}" - }, - "name": "pf-t--global--background--color--floating--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "floating", - "state": "clicked" - }, - "path": [ - "global", - "background", - "color", - "floating", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--background--color--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--action--plain--default": { - "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", - "type": "color", - "value": "rgba(255, 255, 255, 0.0000)", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", - "type": "color", - "value": "rgba(255, 255, 255, 0.0000)" - }, - "name": "pf-t--global--background--color--action--plain--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "default" - ] - }, - "pf-t--global--background--color--action--plain--hover": { - "description": "Use as the hover state for components that use the plain action default background.", - "type": "color", - "value": "rgba(199, 199, 199, 0.2500)", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for components that use the plain action default background.", - "type": "color", - "value": "{global.background.color.600}" - }, - "name": "pf-t--global--background--color--action--plain--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "hover" - ], - "references": [ - { - "type": "color", - "value": "rgba(199, 199, 199, 0.2500)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(199, 199, 199, 0.2500)" - }, - "name": "pf-t--global--background--color--600", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "600" - }, - "path": [ - "global", - "background", - "color", - "600" - ] - } - ] - }, - "pf-t--global--background--color--action--plain--clicked": { - "description": "Use as the active/pressed state for components that use the plain action default background.", - "type": "color", - "value": "rgba(199, 199, 199, 0.2500)", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the active/pressed state for components that use the plain action default background.", - "type": "color", - "value": "{global.background.color.600}" - }, - "name": "pf-t--global--background--color--action--plain--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "rgba(199, 199, 199, 0.2500)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(199, 199, 199, 0.2500)" - }, - "name": "pf-t--global--background--color--600", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "600" - }, - "path": [ - "global", - "background", - "color", - "600" - ] - } - ] - }, - "pf-t--global--background--color--action--plain--alt--hover": { - "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", - "type": "color", - "value": "{global.background.color.100}" - }, - "name": "pf-t--global--background--color--action--plain--alt--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "alt", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--action--plain--alt--clicked": { - "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", - "type": "color", - "value": "{global.background.color.100}" - }, - "name": "pf-t--global--background--color--action--plain--alt--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "alt", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--control--default": { - "description": "Use as the default background for control elements like form inputs and menu toggles.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default background for control elements like form inputs and menu toggles.", - "type": "color", - "value": "{global.background.color.primary.default}" - }, - "name": "pf-t--global--background--color--control--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "control", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "control", - "default" - ], - "references": [ - { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", - "type": "color", - "value": "{global.background.color.100}" - }, - "name": "pf-t--global--background--color--primary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "primary", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--background--color--inverse--default": { - "description": "Use as the background color components with inversed backgrounds like tooltips.", - "type": "color", - "value": "#292929", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the background color components with inversed backgrounds like tooltips.", - "type": "color", - "value": "{global.background.color.400}" - }, - "name": "pf-t--global--background--color--inverse--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "inverse", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "inverse", - "default" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--background--color--400", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "400" - }, - "path": [ - "global", - "background", - "color", - "400" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--disabled--default": { - "description": "Use as the background color for disabled components.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the background color for disabled components.", - "type": "color", - "value": "{global.color.disabled.100}" - }, - "name": "pf-t--global--background--color--disabled--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "disabled", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "disabled", - "default" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--disabled--100", - "attributes": { - "category": "global", - "type": "color", - "item": "disabled", - "subitem": "100" - }, - "path": [ - "global", - "color", - "disabled", - "100" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--backdrop--default": { - "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", - "type": "color", - "value": "rgba(21, 21, 21, 0.2000)", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", - "type": "color", - "value": "{global.background.color.500}" - }, - "name": "pf-t--global--background--color--backdrop--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "backdrop", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "backdrop", - "default" - ], - "references": [ - { - "type": "color", - "value": "rgba(21, 21, 21, 0.2000)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(21, 21, 21, 0.2000)" - }, - "name": "pf-t--global--background--color--500", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "500" - }, - "path": [ - "global", - "background", - "color", - "500" - ] - } - ] - }, - "pf-t--global--color--brand--100": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--brand--100", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "100" - }, - "path": [ - "global", - "color", - "brand", - "100" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - }, - "pf-t--global--color--brand--200": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - }, - "pf-t--global--color--brand--300": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - }, - "pf-t--global--color--brand--default": { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "{global.color.brand.200}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--color--brand--hover": { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - }, - "pf-t--global--color--brand--clicked": { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - }, - "pf-t--global--color--disabled--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--disabled--100", - "attributes": { - "category": "global", - "type": "color", - "item": "disabled", - "subitem": "100" - }, - "path": [ - "global", - "color", - "disabled", - "100" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, - "pf-t--global--color--disabled--200": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--disabled--200", - "attributes": { - "category": "global", - "type": "color", - "item": "disabled", - "subitem": "200" - }, - "path": [ - "global", - "color", - "disabled", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - }, - "pf-t--global--color--disabled--300": { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--global--color--disabled--300", - "attributes": { - "category": "global", - "type": "color", - "item": "disabled", - "subitem": "300" - }, - "path": [ - "global", - "color", - "disabled", - "300" - ], - "references": [ - { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] - }, - "pf-t--global--color--favorite--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--favorite--100", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "100" - }, - "path": [ - "global", - "color", - "favorite", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--global--color--favorite--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--favorite--200", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "200" - }, - "path": [ - "global", - "color", - "favorite", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - }, - "pf-t--global--color--favorite--default": { - "description": "Use as the default color for elements that have been favorited", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for elements that have been favorited", - "type": "color", - "value": "{global.color.favorite.100}" - }, - "name": "pf-t--global--color--favorite--default", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "default" - }, - "path": [ - "global", - "color", - "favorite", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--favorite--100", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "100" - }, - "path": [ - "global", - "color", - "favorite", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--favorite--hover": { - "description": "Use as the hover state for elements that have been favorited", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for elements that have been favorited", - "type": "color", - "value": "{global.color.favorite.200}" - }, - "name": "pf-t--global--color--favorite--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "favorite", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--favorite--200", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "200" - }, - "path": [ - "global", - "color", - "favorite", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--color--favorite--clicked": { - "description": "Use as the clicked state for elements that have been favorited", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for elements that have been favorited", - "type": "color", - "value": "{global.color.favorite.200}" - }, - "name": "pf-t--global--color--favorite--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "favorite", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--favorite--200", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "200" - }, - "path": [ - "global", - "color", - "favorite", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--success--100": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--global--color--status--success--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - }, - "pf-t--global--color--status--success--200": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - }, - "pf-t--global--color--status--success--default": { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "{global.color.status.success.100}" - }, - "name": "pf-t--global--color--status--success--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--global--color--status--success--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--success--hover": { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "{global.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--success--clicked": { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "{global.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--warning--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--status--warning--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "warning", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--global--color--status--warning--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--status--warning--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - }, - "pf-t--global--color--status--warning--300": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--global--color--status--warning--300", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "warning", - "300" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - }, - "pf-t--global--color--status--warning--default": { - "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", - "type": "color", - "value": "{global.color.status.warning.100}" - }, - "name": "pf-t--global--color--status--warning--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "warning", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--status--warning--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "warning", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--warning--hover": { - "description": "Use as the hover state for any element that conveys a warning status.", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a warning status.", - "type": "color", - "value": "{global.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--status--warning--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--warning--clicked": { - "description": "Use as the clicked state for any element that conveys a warning status.", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a warning status.", - "type": "color", - "value": "{global.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--status--warning--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--danger--100": { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--status--danger--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - }, - "pf-t--global--color--status--danger--200": { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - }, - "pf-t--global--color--status--danger--300": { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--300", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "danger", - "300" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - }, - "pf-t--global--color--status--danger--default": { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "{global.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--status--danger--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--danger--hover": { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--danger--clicked": { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--info--100": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--color--status--info--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - }, - "pf-t--global--color--status--info--200": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - }, - "pf-t--global--color--status--info--default": { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "{global.color.status.info.100}" - }, - "name": "pf-t--global--color--status--info--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--color--status--info--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--info--hover": { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "{global.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--info--clicked": { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "{global.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--custom--100": { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--global--color--status--custom--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - }, - "pf-t--global--color--status--custom--200": { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - }, - "pf-t--global--color--status--custom--default": { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#147878", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.color.status.custom.100}" - }, - "name": "pf-t--global--color--status--custom--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--global--color--status--custom--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--custom--hover": { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--custom--clicked": { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--unread--default": { - "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.color.brand.default}" - }, - "name": "pf-t--global--color--status--unread--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "unread", - "default" - ], - "references": [ - { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "{global.color.brand.200}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--color--status--unread--hover": { - "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.color.brand.hover}" - }, - "name": "pf-t--global--color--status--unread--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "unread", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--color--status--unread--clicked": { - "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.color.brand.clicked}" - }, - "name": "pf-t--global--color--status--unread--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "unread", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--color--status--unread--attention--default": { - "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.color.status.danger.default}" - }, - "name": "pf-t--global--color--status--unread--attention--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "attention" - }, - "path": [ - "global", - "color", - "status", - "unread", - "attention", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "{global.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--status--danger--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--color--status--unread--attention--clicked": { - "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.color.status.danger.clicked}" - }, - "name": "pf-t--global--color--status--unread--attention--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "attention" - }, - "path": [ - "global", - "color", - "status", - "unread", - "attention", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--color--status--unread--attention--hover": { - "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.color.status.danger.hover}" - }, - "name": "pf-t--global--color--status--unread--attention--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "attention" - }, - "path": [ - "global", - "color", - "status", - "unread", - "attention", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--color--status--read--on-secondary": { - "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", - "type": "color", - "value": "{global.background.color.control.default}" - }, - "name": "pf-t--global--color--status--read--on-secondary", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "read", - "state": "on-secondary" - }, - "path": [ - "global", - "color", - "status", - "read", - "on-secondary" - ], - "references": [ - { - "description": "Use as the default background for control elements like form inputs and menu toggles.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default background for control elements like form inputs and menu toggles.", - "type": "color", - "value": "{global.background.color.primary.default}" - }, - "name": "pf-t--global--background--color--control--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "control", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "control", - "default" - ], - "references": [ - { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", - "type": "color", - "value": "{global.background.color.100}" - }, - "name": "pf-t--global--background--color--primary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "primary", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--color--status--read--on-primary": { - "description": "Use as the default color for elements that convey a read status and are placed on a primary background", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for elements that convey a read status and are placed on a primary background", - "type": "color", - "value": "{global.background.color.secondary.default}" - }, - "name": "pf-t--global--color--status--read--on-primary", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "read", - "state": "on-primary" - }, - "path": [ - "global", - "color", - "status", - "read", - "on-primary" - ], - "references": [ - { - "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", - "type": "color", - "value": "{global.background.color.200}" - }, - "name": "pf-t--global--background--color--secondary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "secondary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "secondary", - "default" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--background--color--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--color--severity--undefined--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--severity--undefined--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "undefined", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "undefined", - "100" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, - "pf-t--global--color--severity--none--100": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--severity--none--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "none", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "none", - "100" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - }, - "pf-t--global--color--severity--minor--100": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--color--severity--minor--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "minor", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "minor", - "100" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - }, - "pf-t--global--color--severity--moderate--100": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--severity--moderate--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "moderate", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "moderate", - "100" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - }, - "pf-t--global--color--severity--important--100": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--global--color--severity--important--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "important", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "important", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - }, - "pf-t--global--color--severity--critical--100": { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--severity--critical--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "critical", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "critical", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - }, - "pf-t--global--color--nonstatus--red--100": { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.20}" - }, - "name": "pf-t--global--color--nonstatus--red--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "100" - ], - "references": [ - { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--red--200": { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.30}" - }, - "name": "pf-t--global--color--nonstatus--red--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--red--300": { - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.40}" - }, - "name": "pf-t--global--color--nonstatus--red--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f56e6e" - }, - "name": "pf-t--color--red--40", - "attributes": { - "category": "color", - "type": "red", - "item": "40" - }, - "path": [ - "color", - "red", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--red--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.color.nonstatus.red.100}" - }, - "name": "pf-t--global--color--nonstatus--red--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "default" - ], - "references": [ - { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.20}" - }, - "name": "pf-t--global--color--nonstatus--red--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "100" - ], - "references": [ - { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--red--hover": { - "description": "Use as the hover state color for any element that uses the non status red background color.", - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status red background color.", - "type": "color", - "value": "{global.color.nonstatus.red.200}" - }, - "name": "pf-t--global--color--nonstatus--red--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.30}" - }, - "name": "pf-t--global--color--nonstatus--red--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--red--clicked": { - "description": "Use as the clicked state color for any element that uses the non status red background color.", - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status red background color.", - "type": "color", - "value": "{global.color.nonstatus.red.200}" - }, - "name": "pf-t--global--color--nonstatus--red--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.30}" - }, - "name": "pf-t--global--color--nonstatus--red--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--orangered--100": { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--color--nonstatus--orangered--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "100" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--orangered--200": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orangered--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--orangered--300": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--color--nonstatus--orangered--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--orangered--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.color.nonstatus.orangered.100}" - }, - "name": "pf-t--global--color--nonstatus--orangered--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "default" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--color--nonstatus--orangered--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "100" - ], - "references": [ - { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--orangered--hover": { - "description": "Use as the hover state color for any element that uses the non status orange-red background color.", - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status orange-red background color.", - "type": "color", - "value": "{global.color.nonstatus.orangered.200}" - }, - "name": "pf-t--global--color--nonstatus--orangered--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orangered--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--orangered--clicked": { - "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", - "type": "color", - "value": "{global.color.nonstatus.orangered.200}" - }, - "name": "pf-t--global--color--nonstatus--orangered--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orangered--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--orange--100": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--global--color--nonstatus--orange--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--orange--200": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orange--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--orange--300": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--global--color--nonstatus--orange--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--orange--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.color.nonstatus.orange.100}" - }, - "name": "pf-t--global--color--nonstatus--orange--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "default" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--global--color--nonstatus--orange--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--orange--hover": { - "description": "Use as the hover state color for any element that uses the non status orange background color.", - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status orange background color.", - "type": "color", - "value": "{global.color.nonstatus.orange.200}" - }, - "name": "pf-t--global--color--nonstatus--orange--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orange--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--orange--clicked": { - "description": "Use as the clicked state color for any element that uses the non status orange background color.", - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status orange background color.", - "type": "color", - "value": "{global.color.nonstatus.orange.200}" - }, - "name": "pf-t--global--color--nonstatus--orange--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orange--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--yellow--100": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--color--nonstatus--yellow--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--yellow--200": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--nonstatus--yellow--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--yellow--300": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--nonstatus--yellow--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--yellow--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.color.nonstatus.yellow.100}" - }, - "name": "pf-t--global--color--nonstatus--yellow--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--color--nonstatus--yellow--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--yellow--hover": { - "description": "Use as the hover state color for any element that uses the non status yellow background color.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status yellow background color.", - "type": "color", - "value": "{global.color.nonstatus.yellow.200}" - }, - "name": "pf-t--global--color--nonstatus--yellow--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--nonstatus--yellow--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--yellow--clicked": { - "description": "Use as the clicked state color for any element that uses the non status yellow background color.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status yellow background color.", - "type": "color", - "value": "{global.color.nonstatus.yellow.200}" - }, - "name": "pf-t--global--color--nonstatus--yellow--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--nonstatus--yellow--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--green--100": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--color--nonstatus--green--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--green--200": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--green--300": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--color--nonstatus--green--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--green--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.color.nonstatus.green.100}" - }, - "name": "pf-t--global--color--nonstatus--green--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "default" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--color--nonstatus--green--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--green--hover": { - "description": "Use as the hover state color for any element that uses the non status green background color.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status green background color.", - "type": "color", - "value": "{global.color.nonstatus.green.200}" - }, - "name": "pf-t--global--color--nonstatus--green--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--green--clicked": { - "description": "Use as the clicked state color for any element that uses the non status green background color.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status green background color.", - "type": "color", - "value": "{global.color.nonstatus.green.200}" - }, - "name": "pf-t--global--color--nonstatus--green--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--teal--100": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--color--nonstatus--teal--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--teal--200": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--color--nonstatus--teal--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--teal--300": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--color--nonstatus--teal--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--teal--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.color.nonstatus.teal.100}" - }, - "name": "pf-t--global--color--nonstatus--teal--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--color--nonstatus--teal--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--teal--hover": { - "description": "Use as the hover state color for any element that uses the non status teal background color.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status teal background color.", - "type": "color", - "value": "{global.color.nonstatus.teal.200}" - }, - "name": "pf-t--global--color--nonstatus--teal--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--color--nonstatus--teal--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--teal--clicked": { - "description": "Use as the clicked state color for any element that uses the non status teal background color.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status teal background color.", - "type": "color", - "value": "{global.color.nonstatus.teal.200}" - }, - "name": "pf-t--global--color--nonstatus--teal--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--color--nonstatus--teal--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--blue--100": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--color--nonstatus--blue--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--blue--200": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--color--nonstatus--blue--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--blue--300": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--nonstatus--blue--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--blue--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.color.nonstatus.blue.100}" - }, - "name": "pf-t--global--color--nonstatus--blue--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--color--nonstatus--blue--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--blue--hover": { - "description": "Use as the hover state color for any element that uses the non status blue background color.", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status blue background color.", - "type": "color", - "value": "{global.color.nonstatus.blue.200}" - }, - "name": "pf-t--global--color--nonstatus--blue--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--color--nonstatus--blue--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--blue--clicked": { - "description": "Use as the clicked state color for any element that uses the non status blue background color.", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status blue background color.", - "type": "color", - "value": "{global.color.nonstatus.blue.200}" - }, - "name": "pf-t--global--color--nonstatus--blue--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--color--nonstatus--blue--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--purple--100": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--color--nonstatus--purple--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "100" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--purple--200": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--color--nonstatus--purple--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--purple--300": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--global--color--nonstatus--purple--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "300" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--purple--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.color.nonstatus.purple.100}" - }, - "name": "pf-t--global--color--nonstatus--purple--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "default" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--color--nonstatus--purple--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "100" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--purple--hover": { - "description": "Use as the hover state color for any element that uses the non status purple background color.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status purple background color.", - "type": "color", - "value": "{global.color.nonstatus.purple.200}" - }, - "name": "pf-t--global--color--nonstatus--purple--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--color--nonstatus--purple--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--purple--clicked": { - "description": "Use as the clicked state color for any element that uses the non status purple background color.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status purple background color.", - "type": "color", - "value": "{global.color.nonstatus.purple.200}" - }, - "name": "pf-t--global--color--nonstatus--purple--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--color--nonstatus--purple--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--100": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--color--nonstatus--gray--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "100" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--200": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--300": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--nonstatus--gray--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "300" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.color.nonstatus.gray.100}" - }, - "name": "pf-t--global--color--nonstatus--gray--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "default" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--color--nonstatus--gray--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "100" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--hover": { - "description": "Use as the hover state color for any element that uses the non status gray background color.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for any element that uses the non status gray background color.", - "type": "color", - "value": "{global.color.nonstatus.gray.200}" - }, - "name": "pf-t--global--color--nonstatus--gray--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--clicked": { - "description": "Use as the clicked state color for any element that uses the non status gray background color.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that uses the non status gray background color.", - "type": "color", - "value": "{global.color.nonstatus.gray.200}" - }, - "name": "pf-t--global--color--nonstatus--gray--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--100": { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - }, - "pf-t--global--text--color--200": { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--global--text--color--200", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "text", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] - }, - "pf-t--global--text--color--300": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - }, - "pf-t--global--text--color--400": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--text--color--400", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "400" - }, - "path": [ - "global", - "text", - "color", - "400" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - }, - "pf-t--global--text--color--link--100": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--text--color--link--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "100" - }, - "path": [ - "global", - "text", - "color", - "link", - "100" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - }, - "pf-t--global--text--color--link--200": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--text--color--link--200", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "200" - }, - "path": [ - "global", - "text", - "color", - "link", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - }, - "pf-t--global--text--color--link--300": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--text--color--link--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "300" - }, - "path": [ - "global", - "text", - "color", - "link", - "300" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - }, - "pf-t--global--text--color--link--default": { - "description": "Use as the default text color for links.", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default text color for links.", - "type": "color", - "value": "{global.text.color.link.100}" - }, - "name": "pf-t--global--text--color--link--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "default" - }, - "path": [ - "global", - "text", - "color", - "link", - "default" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--text--color--link--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "100" - }, - "path": [ - "global", - "text", - "color", - "link", - "100" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--link--hover": { - "description": "Use as the hover state text color for links.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state text color for links.", - "type": "color", - "value": "{global.text.color.link.200}" - }, - "name": "pf-t--global--text--color--link--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "hover" - }, - "path": [ - "global", - "text", - "color", - "link", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--text--color--link--200", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "200" - }, - "path": [ - "global", - "text", - "color", - "link", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--link--visited": { - "description": "Use as the color to indicate that a link has been visited.", - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color to indicate that a link has been visited.", - "type": "color", - "value": "{global.text.color.link.300}" - }, - "name": "pf-t--global--text--color--link--visited", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "visited" - }, - "path": [ - "global", - "text", - "color", - "link", - "visited" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--text--color--link--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "300" - }, - "path": [ - "global", - "text", - "color", - "link", - "300" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--brand--default": { - "description": "Use as the default color for branded text.", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for branded text.", - "type": "color", - "value": "{global.color.brand.default}" - }, - "name": "pf-t--global--text--color--brand--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "default" - }, - "path": [ - "global", - "text", - "color", - "brand", - "default" - ], - "references": [ - { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "{global.color.brand.200}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--brand--hover": { - "description": "Use as the hover state color for branded text.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for branded text.", - "type": "color", - "value": "{global.color.brand.hover}" - }, - "name": "pf-t--global--text--color--brand--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "hover" - }, - "path": [ - "global", - "text", - "color", - "brand", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--brand--clicked": { - "description": "Use as the clicked state color for branded text.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for branded text.", - "type": "color", - "value": "{global.color.brand.clicked}" - }, - "name": "pf-t--global--text--color--brand--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "clicked" - }, - "path": [ - "global", - "text", - "color", - "brand", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--regular": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--subtle": { - "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", - "type": "color", - "value": "{global.text.color.200}" - }, - "name": "pf-t--global--text--color--subtle", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "subtle" - }, - "path": [ - "global", - "text", - "color", - "subtle" - ], - "references": [ - { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--global--text--color--200", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "text", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--inverse": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--on-brand--default": { - "description": "Use as the default color for text placed on a brand-colored background.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text placed on a brand-colored background.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--on-brand--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-brand", - "state": "default" - }, - "path": [ - "global", - "text", - "color", - "on-brand", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--on-brand--hover": { - "description": "Use as the hover state color for text placed on a brand-colored background.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text placed on a brand-colored background.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--on-brand--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-brand", - "state": "hover" - }, - "path": [ - "global", - "text", - "color", - "on-brand", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--on-brand--clicked": { - "description": "Use as the clicked state color for text placed on a brand-colored background.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text placed on a brand-colored background.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--on-brand--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-brand", - "state": "clicked" - }, - "path": [ - "global", - "text", - "color", - "on-brand", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--placeholder": { - "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", - "type": "color", - "value": "{global.text.color.subtle}" - }, - "name": "pf-t--global--text--color--placeholder", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "placeholder" - }, - "path": [ - "global", - "text", - "color", - "placeholder" - ], - "references": [ - { - "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", - "type": "color", - "value": "{global.text.color.200}" - }, - "name": "pf-t--global--text--color--subtle", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "subtle" - }, - "path": [ - "global", - "text", - "color", - "subtle" - ], - "references": [ - { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--global--text--color--200", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "text", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--disabled": { - "description": "Use as the color of text on disabled elements, like disabled menu items.", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text on disabled elements, like disabled menu items.", - "type": "color", - "value": "{global.color.disabled.200}" - }, - "name": "pf-t--global--text--color--disabled", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "disabled" - }, - "path": [ - "global", - "text", - "color", - "disabled" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--disabled--200", - "attributes": { - "category": "global", - "type": "color", - "item": "disabled", - "subitem": "200" - }, - "path": [ - "global", - "color", - "disabled", - "200" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--on-disabled": { - "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", - "type": "color", - "value": "{global.color.disabled.300}" - }, - "name": "pf-t--global--text--color--on-disabled", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-disabled" - }, - "path": [ - "global", - "text", - "color", - "on-disabled" - ], - "references": [ - { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--global--color--disabled--300", - "attributes": { - "category": "global", - "type": "color", - "item": "disabled", - "subitem": "300" - }, - "path": [ - "global", - "color", - "disabled", - "300" - ], - "references": [ - { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--required": { - "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", - "type": "color", - "value": "{global.text.color.400}" - }, - "name": "pf-t--global--text--color--required", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "required" - }, - "path": [ - "global", - "text", - "color", - "required" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--text--color--400", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "400" - }, - "path": [ - "global", - "text", - "color", - "400" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--on-highlight": { - "description": "Use as the color of text that is highlighted.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is highlighted.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--on-highlight", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-highlight" - }, - "path": [ - "global", - "text", - "color", - "on-highlight" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--success--default": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.status.success.default}" - }, - "name": "pf-t--global--text--color--status--success--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "text", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "{global.color.status.success.100}" - }, - "name": "pf-t--global--color--status--success--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--global--color--status--success--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--success--hover": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.status.success.hover}" - }, - "name": "pf-t--global--text--color--status--success--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "text", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "{global.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--success--clicked": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.status.success.clicked}" - }, - "name": "pf-t--global--text--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "text", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "{global.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-success--default": { - "description": "Use as the default color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-success--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-success", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-success--hover": { - "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-success--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-success", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-success--clicked": { - "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-success--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-success", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--warning--default": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.status.warning.200}" - }, - "name": "pf-t--global--text--color--status--warning--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "warning", - "default" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--status--warning--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--warning--hover": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.status.warning.300}" - }, - "name": "pf-t--global--text--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--global--color--status--warning--300", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "warning", - "300" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--warning--clicked": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "type": "color", - "value": "{global.color.status.warning.300}" - }, - "name": "pf-t--global--text--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--global--color--status--warning--300", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "warning", - "300" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-warning--default": { - "description": "Use as the default color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--status--on-warning--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-warning", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-warning--hover": { - "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--status--on-warning--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-warning", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-warning--clicked": { - "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--status--on-warning--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-warning", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--danger--default": { - "description": "Use as the default color for text that communicates a danger status.", - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that communicates a danger status.", - "type": "color", - "value": "{global.color.status.danger.default}" - }, - "name": "pf-t--global--text--color--status--danger--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "{global.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--status--danger--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--danger--hover": { - "description": "Use as the hover state color for text that communicates a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that communicates a danger status.", - "type": "color", - "value": "{global.color.status.danger.hover}" - }, - "name": "pf-t--global--text--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--danger--clicked": { - "description": "Use as the clicked state color for text that communicates a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that communicates a danger status.", - "type": "color", - "value": "{global.color.status.danger.clicked}" - }, - "name": "pf-t--global--text--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-danger--default": { - "description": "Use as the default color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-danger--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-danger", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-danger--hover": { - "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-danger--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-danger", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-danger--clicked": { - "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-danger--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-danger", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--info--default": { - "description": "Use as the default color for text that communicates am info status.", - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that communicates am info status.", - "type": "color", - "value": "{global.color.status.info.default}" - }, - "name": "pf-t--global--text--color--status--info--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "text", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "{global.color.status.info.100}" - }, - "name": "pf-t--global--color--status--info--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--color--status--info--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--info--hover": { - "description": "Use as the hover state color for text that communicates an infostatus.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that communicates an infostatus.", - "type": "color", - "value": "{global.color.status.info.hover}" - }, - "name": "pf-t--global--text--color--status--info--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "text", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "{global.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--info--clicked": { - "description": "Use as the clicked state color for text that communicates an info status.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that communicates an info status.", - "type": "color", - "value": "{global.color.status.info.clicked}" - }, - "name": "pf-t--global--text--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "text", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "{global.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-info--default": { - "description": "Use as the default color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-info--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-info", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-info--hover": { - "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-info--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-info", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-info--clicked": { - "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-info--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-info", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--custom--default": { - "description": "Use as the default color for text that communicates a custom status.", - "type": "color", - "value": "#147878", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that communicates a custom status.", - "type": "color", - "value": "{global.color.status.custom.default}" - }, - "name": "pf-t--global--text--color--status--custom--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#147878", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.color.status.custom.100}" - }, - "name": "pf-t--global--color--status--custom--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--global--color--status--custom--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--custom--hover": { - "description": "Use as the hover state color for text that communicates a custom status.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that communicates a custom status.", - "type": "color", - "value": "{global.color.status.custom.hover}" - }, - "name": "pf-t--global--text--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--custom--clicked": { - "description": "Use as the clicked state color for text that communicates a custom status.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that communicates a custom status.", - "type": "color", - "value": "{global.color.status.custom.clicked}" - }, - "name": "pf-t--global--text--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "{global.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-custom--default": { - "description": "Use as the default color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-custom--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-custom", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-custom--hover": { - "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-custom--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-custom", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--on-custom--clicked": { - "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-custom--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-custom", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--unread--on-default--default": { - "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-default--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-default", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--unread--on-default--hover": { - "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-default--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-default", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--unread--on-default--clicked": { - "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-default--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-default", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--unread--on-attention--default": { - "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-attention--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-attention", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--unread--on-attention--hover": { - "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-attention--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-attention", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--status--unread--on-attention--clicked": { - "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-attention--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-attention", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-red--default": { - "description": "Use as the default color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-red--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-red", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-red--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-red--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-red", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-red--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-red--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-red", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-orangered--default": { - "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orangered--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orangered", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-orangered--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orangered--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orangered", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-orangered--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orangered--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orangered", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-orange--default": { - "description": "Use as the default color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orange--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orange", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-orange--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orange--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orange", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-orange--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orange--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orange", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-yellow--default": { - "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-yellow--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-yellow", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-yellow--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-yellow--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-yellow", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-yellow--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-yellow--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-yellow", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-green--default": { - "description": "Use as the default color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-green--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-green", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-green--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-green--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-green", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-green--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-green--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-green", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-teal--default": { - "description": "Use as the default color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-teal--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-teal", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-teal--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-teal--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-teal", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-teal--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-teal--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-teal", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-blue--default": { - "description": "Use as the default color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-blue--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-blue", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-blue--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-blue--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-blue", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-blue--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-blue--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-blue", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-purple--default": { - "description": "Use as the default color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-purple--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-purple", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-purple--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-purple--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-purple", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-purple--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-purple--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-purple", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-gray--default": { - "description": "Use as the default color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-gray--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-gray", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-gray--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-gray--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-gray", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--text--color--nonstatus--on-gray--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-gray--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-gray", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--duration--50": { - "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 50 - }, - "name": "pf-t--global--duration--50", - "attributes": { - "category": "global", - "type": "duration", - "item": "50" - }, - "path": [ - "global", - "duration", - "50" - ] - }, - "pf-t--global--duration--100": { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 100 - }, - "name": "pf-t--global--duration--100", - "attributes": { - "category": "global", - "type": "duration", - "item": "100" - }, - "path": [ - "global", - "duration", - "100" - ] - }, - "pf-t--global--duration--200": { - "type": "number", - "value": "200ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 200 - }, - "name": "pf-t--global--duration--200", - "attributes": { - "category": "global", - "type": "duration", - "item": "200" - }, - "path": [ - "global", - "duration", - "200" - ] - }, - "pf-t--global--duration--300": { - "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - }, - "pf-t--global--duration--400": { - "type": "number", - "value": "400ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--duration--400", - "attributes": { - "category": "global", - "type": "duration", - "item": "400" - }, - "path": [ - "global", - "duration", - "400" - ] - }, - "pf-t--global--duration--500": { - "type": "number", - "value": "500ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 500 - }, - "name": "pf-t--global--duration--500", - "attributes": { - "category": "global", - "type": "duration", - "item": "500" - }, - "path": [ - "global", - "duration", - "500" - ] - }, - "pf-t--global--duration--600": { - "type": "number", - "value": "600ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 600 - }, - "name": "pf-t--global--duration--600", - "attributes": { - "category": "global", - "type": "duration", - "item": "600" - }, - "path": [ - "global", - "duration", - "600" - ] - }, - "pf-t--global--delay--100": { - "type": "number", - "value": "0ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--delay--100", - "attributes": { - "category": "global", - "type": "delay", - "item": "100" - }, - "path": [ - "global", - "delay", - "100" - ] - }, - "pf-t--global--delay--200": { - "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 50 - }, - "name": "pf-t--global--delay--200", - "attributes": { - "category": "global", - "type": "delay", - "item": "200" - }, - "path": [ - "global", - "delay", - "200" - ] - }, - "pf-t--global--delay--300": { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 100 - }, - "name": "pf-t--global--delay--300", - "attributes": { - "category": "global", - "type": "delay", - "item": "300" - }, - "path": [ - "global", - "delay", - "300" - ] - }, - "pf-t--global--delay--400": { - "type": "number", - "value": "7000ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 7000 - }, - "name": "pf-t--global--delay--400", - "attributes": { - "category": "global", - "type": "delay", - "item": "400" - }, - "path": [ - "global", - "delay", - "400" - ] - }, - "pf-t--global--timing-function--100": { - "type": "string", - "value": "cubic-bezier(.4, 0, .7, .2)", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "string", - "value": "cubic-bezier(.4, 0, .7, .2)" - }, - "name": "pf-t--global--timing-function--100", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "100" - }, - "path": [ - "global", - "timing-function", - "100" - ] - }, - "pf-t--global--timing-function--200": { - "type": "string", - "value": "cubic-bezier(.4, 0, .2, 1)", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "string", - "value": "cubic-bezier(.4, 0, .2, 1)" - }, - "name": "pf-t--global--timing-function--200", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "200" - }, - "path": [ - "global", - "timing-function", - "200" - ] - }, - "pf-t--global--timing-function--300": { - "type": "string", - "value": "cubic-bezier(0, 0, .2, 1)", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "string", - "value": "cubic-bezier(0, 0, .2, 1)" - }, - "name": "pf-t--global--timing-function--300", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "300" - }, - "path": [ - "global", - "timing-function", - "300" - ] - }, - "pf-t--global--motion--duration--xs": { - "description": "Use for the quickest possible duration of an animation.", - "type": "number", - "value": "50ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for the quickest possible duration of an animation.", - "type": "number", - "value": "{global.duration.50}" - }, - "name": "pf-t--global--motion--duration--xs", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xs" - }, - "path": [ - "global", - "motion", - "duration", - "xs" - ], - "references": [ - { - "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 50 - }, - "name": "pf-t--global--duration--50", - "attributes": { - "category": "global", - "type": "duration", - "item": "50" - }, - "path": [ - "global", - "duration", - "50" - ] - } - ] - }, - "pf-t--global--motion--duration--sm": { - "description": "Use for a short animation duration. Use for simple and/or small animations.", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for a short animation duration. Use for simple and/or small animations.", - "type": "number", - "value": "{global.duration.100}" - }, - "name": "pf-t--global--motion--duration--sm", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "sm" - }, - "path": [ - "global", - "motion", - "duration", - "sm" - ], - "references": [ - { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 100 - }, - "name": "pf-t--global--duration--100", - "attributes": { - "category": "global", - "type": "duration", - "item": "100" - }, - "path": [ - "global", - "duration", - "100" - ] - } - ] - }, - "pf-t--global--motion--duration--md": { - "description": "Use for a medium animation duration.", - "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for a medium animation duration.", - "type": "number", - "value": "{global.duration.200}" - }, - "name": "pf-t--global--motion--duration--md", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "md" - }, - "path": [ - "global", - "motion", - "duration", - "md" - ], - "references": [ - { - "type": "number", - "value": "200ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 200 - }, - "name": "pf-t--global--duration--200", - "attributes": { - "category": "global", - "type": "duration", - "item": "200" - }, - "path": [ - "global", - "duration", - "200" - ] - } - ] - }, - "pf-t--global--motion--duration--lg": { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "{global.duration.300}" - }, - "name": "pf-t--global--motion--duration--lg", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "lg" - }, - "path": [ - "global", - "motion", - "duration", - "lg" - ], - "references": [ - { - "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - } - ] - }, - "pf-t--global--motion--duration--xl": { - "description": "Use for extra long animation duration.", - "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for extra long animation duration.", - "type": "number", - "value": "{global.duration.400}" - }, - "name": "pf-t--global--motion--duration--xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xl" - }, - "path": [ - "global", - "motion", - "duration", - "xl" - ], - "references": [ - { - "type": "number", - "value": "400ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--duration--400", - "attributes": { - "category": "global", - "type": "duration", - "item": "400" - }, - "path": [ - "global", - "duration", - "400" - ] - } - ] - }, - "pf-t--global--motion--duration--2xl": { - "description": "Use for significantly long animation duration.", - "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for significantly long animation duration.", - "type": "number", - "value": "{global.duration.500}" - }, - "name": "pf-t--global--motion--duration--2xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "2xl" - }, - "path": [ - "global", - "motion", - "duration", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "500ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 500 - }, - "name": "pf-t--global--duration--500", - "attributes": { - "category": "global", - "type": "duration", - "item": "500" - }, - "path": [ - "global", - "duration", - "500" - ] - } - ] - }, - "pf-t--global--motion--duration--3xl": { - "description": "Use for the longest possible duration of an animation.", - "type": "number", - "value": "600ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for the longest possible duration of an animation.", - "type": "number", - "value": "{global.duration.600}" - }, - "name": "pf-t--global--motion--duration--3xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "3xl" - }, - "path": [ - "global", - "motion", - "duration", - "3xl" - ], - "references": [ - { - "type": "number", - "value": "600ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 600 - }, - "name": "pf-t--global--duration--600", - "attributes": { - "category": "global", - "type": "duration", - "item": "600" - }, - "path": [ - "global", - "duration", - "600" - ] - } - ] - }, - "pf-t--global--motion--duration--fade--short": { - "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", - "type": "number", - "value": "{global.motion.duration.sm}" - }, - "name": "pf-t--global--motion--duration--fade--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "fade", - "state": "short" - }, - "path": [ - "global", - "motion", - "duration", - "fade", - "short" - ], - "references": [ - { - "description": "Use for a short animation duration. Use for simple and/or small animations.", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for a short animation duration. Use for simple and/or small animations.", - "type": "number", - "value": "{global.duration.100}" - }, - "name": "pf-t--global--motion--duration--sm", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "sm" - }, - "path": [ - "global", - "motion", - "duration", - "sm" - ], - "references": [ - { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 100 - }, - "name": "pf-t--global--duration--100", - "attributes": { - "category": "global", - "type": "duration", - "item": "100" - }, - "path": [ - "global", - "duration", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--fade--default": { - "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", - "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", - "type": "number", - "value": "{global.motion.duration.md}" - }, - "name": "pf-t--global--motion--duration--fade--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "fade", - "state": "default" - }, - "path": [ - "global", - "motion", - "duration", - "fade", - "default" - ], - "references": [ - { - "description": "Use for a medium animation duration.", - "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for a medium animation duration.", - "type": "number", - "value": "{global.duration.200}" - }, - "name": "pf-t--global--motion--duration--md", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "md" - }, - "path": [ - "global", - "motion", - "duration", - "md" - ], - "references": [ - { - "type": "number", - "value": "200ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 200 - }, - "name": "pf-t--global--duration--200", - "attributes": { - "category": "global", - "type": "duration", - "item": "200" - }, - "path": [ - "global", - "duration", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--fade--long": { - "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", - "type": "number", - "value": "{global.motion.duration.lg}" - }, - "name": "pf-t--global--motion--duration--fade--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "fade", - "state": "long" - }, - "path": [ - "global", - "motion", - "duration", - "fade", - "long" - ], - "references": [ - { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "{global.duration.300}" - }, - "name": "pf-t--global--motion--duration--lg", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "lg" - }, - "path": [ - "global", - "motion", - "duration", - "lg" - ], - "references": [ - { - "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--slide-out--short": { - "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "{global.motion.duration.lg}" - }, - "name": "pf-t--global--motion--duration--slide-out--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-out", - "state": "short" - }, - "path": [ - "global", - "motion", - "duration", - "slide-out", - "short" - ], - "references": [ - { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "{global.duration.300}" - }, - "name": "pf-t--global--motion--duration--lg", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "lg" - }, - "path": [ - "global", - "motion", - "duration", - "lg" - ], - "references": [ - { - "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--slide-out--default": { - "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "{global.motion.duration.xl}" - }, - "name": "pf-t--global--motion--duration--slide-out--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-out", - "state": "default" - }, - "path": [ - "global", - "motion", - "duration", - "slide-out", - "default" - ], - "references": [ - { - "description": "Use for extra long animation duration.", - "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for extra long animation duration.", - "type": "number", - "value": "{global.duration.400}" - }, - "name": "pf-t--global--motion--duration--xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xl" - }, - "path": [ - "global", - "motion", - "duration", - "xl" - ], - "references": [ - { - "type": "number", - "value": "400ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--duration--400", - "attributes": { - "category": "global", - "type": "duration", - "item": "400" - }, - "path": [ - "global", - "duration", - "400" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--slide-out--long": { - "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "{global.motion.duration.2xl}" - }, - "name": "pf-t--global--motion--duration--slide-out--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-out", - "state": "long" - }, - "path": [ - "global", - "motion", - "duration", - "slide-out", - "long" - ], - "references": [ - { - "description": "Use for significantly long animation duration.", - "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for significantly long animation duration.", - "type": "number", - "value": "{global.duration.500}" - }, - "name": "pf-t--global--motion--duration--2xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "2xl" - }, - "path": [ - "global", - "motion", - "duration", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "500ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 500 - }, - "name": "pf-t--global--duration--500", - "attributes": { - "category": "global", - "type": "duration", - "item": "500" - }, - "path": [ - "global", - "duration", - "500" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--slide-in--short": { - "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "{global.motion.duration.lg}" - }, - "name": "pf-t--global--motion--duration--slide-in--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-in", - "state": "short" - }, - "path": [ - "global", - "motion", - "duration", - "slide-in", - "short" - ], - "references": [ - { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "{global.duration.300}" - }, - "name": "pf-t--global--motion--duration--lg", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "lg" - }, - "path": [ - "global", - "motion", - "duration", - "lg" - ], - "references": [ - { - "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--slide-in--default": { - "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "{global.motion.duration.xl}" - }, - "name": "pf-t--global--motion--duration--slide-in--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-in", - "state": "default" - }, - "path": [ - "global", - "motion", - "duration", - "slide-in", - "default" - ], - "references": [ - { - "description": "Use for extra long animation duration.", - "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for extra long animation duration.", - "type": "number", - "value": "{global.duration.400}" - }, - "name": "pf-t--global--motion--duration--xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xl" - }, - "path": [ - "global", - "motion", - "duration", - "xl" - ], - "references": [ - { - "type": "number", - "value": "400ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--duration--400", - "attributes": { - "category": "global", - "type": "duration", - "item": "400" - }, - "path": [ - "global", - "duration", - "400" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--slide-in--long": { - "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "{global.motion.duration.2xl}" - }, - "name": "pf-t--global--motion--duration--slide-in--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-in", - "state": "long" - }, - "path": [ - "global", - "motion", - "duration", - "slide-in", - "long" - ], - "references": [ - { - "description": "Use for significantly long animation duration.", - "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for significantly long animation duration.", - "type": "number", - "value": "{global.duration.500}" - }, - "name": "pf-t--global--motion--duration--2xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "2xl" - }, - "path": [ - "global", - "motion", - "duration", - "2xl" - ], - "references": [ - { - "type": "number", - "value": "500ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 500 - }, - "name": "pf-t--global--duration--500", - "attributes": { - "category": "global", - "type": "duration", - "item": "500" - }, - "path": [ - "global", - "duration", - "500" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--icon--short": { - "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", - "type": "number", - "value": "50ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", - "type": "number", - "value": "{global.motion.duration.xs}" - }, - "name": "pf-t--global--motion--duration--icon--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "icon", - "state": "short" - }, - "path": [ - "global", - "motion", - "duration", - "icon", - "short" - ], - "references": [ - { - "description": "Use for the quickest possible duration of an animation.", - "type": "number", - "value": "50ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for the quickest possible duration of an animation.", - "type": "number", - "value": "{global.duration.50}" - }, - "name": "pf-t--global--motion--duration--xs", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xs" - }, - "path": [ - "global", - "motion", - "duration", - "xs" - ], - "references": [ - { - "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 50 - }, - "name": "pf-t--global--duration--50", - "attributes": { - "category": "global", - "type": "duration", - "item": "50" - }, - "path": [ - "global", - "duration", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--icon--default": { - "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", - "type": "number", - "value": "{global.motion.duration.sm}" - }, - "name": "pf-t--global--motion--duration--icon--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "icon", - "state": "default" - }, - "path": [ - "global", - "motion", - "duration", - "icon", - "default" - ], - "references": [ - { - "description": "Use for a short animation duration. Use for simple and/or small animations.", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for a short animation duration. Use for simple and/or small animations.", - "type": "number", - "value": "{global.duration.100}" - }, - "name": "pf-t--global--motion--duration--sm", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "sm" - }, - "path": [ - "global", - "motion", - "duration", - "sm" - ], - "references": [ - { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 100 - }, - "name": "pf-t--global--duration--100", - "attributes": { - "category": "global", - "type": "duration", - "item": "100" - }, - "path": [ - "global", - "duration", - "100" - ] - } - ] - } - ] - }, - "pf-t--global--motion--duration--icon--long": { - "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", - "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", - "type": "number", - "value": "{global.motion.duration.md}" - }, - "name": "pf-t--global--motion--duration--icon--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "icon", - "state": "long" - }, - "path": [ - "global", - "motion", - "duration", - "icon", - "long" - ], - "references": [ - { - "description": "Use for a medium animation duration.", - "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use for a medium animation duration.", - "type": "number", - "value": "{global.duration.200}" - }, - "name": "pf-t--global--motion--duration--md", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "md" - }, - "path": [ - "global", - "motion", - "duration", - "md" - ], - "references": [ - { - "type": "number", - "value": "200ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 200 - }, - "name": "pf-t--global--duration--200", - "attributes": { - "category": "global", - "type": "duration", - "item": "200" - }, - "path": [ - "global", - "duration", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--motion--delay--none": { - "description": "Use when there should be no delay before an animation plays.", - "type": "number", - "value": "0ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use when there should be no delay before an animation plays.", - "type": "number", - "value": "{global.delay.100}" - }, - "name": "pf-t--global--motion--delay--none", - "attributes": { - "category": "global", - "type": "motion", - "item": "delay", - "subitem": "none" - }, - "path": [ - "global", - "motion", - "delay", - "none" - ], - "references": [ - { - "type": "number", - "value": "0ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--delay--100", - "attributes": { - "category": "global", - "type": "delay", - "item": "100" - }, - "path": [ - "global", - "delay", - "100" - ] - } - ] - }, - "pf-t--global--motion--delay--short": { - "description": "Use when there should be a short delay before an animation plays.", - "type": "number", - "value": "50ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use when there should be a short delay before an animation plays.", - "type": "number", - "value": "{global.delay.200}" - }, - "name": "pf-t--global--motion--delay--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "delay", - "subitem": "short" - }, - "path": [ - "global", - "motion", - "delay", - "short" - ], - "references": [ - { - "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 50 - }, - "name": "pf-t--global--delay--200", - "attributes": { - "category": "global", - "type": "delay", - "item": "200" - }, - "path": [ - "global", - "delay", - "200" - ] - } - ] - }, - "pf-t--global--motion--delay--default": { - "description": "Use when there should be the default delay length before an animation plays.", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use when there should be the default delay length before an animation plays.", - "type": "number", - "value": "{global.delay.300}" - }, - "name": "pf-t--global--motion--delay--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "delay", - "subitem": "default" - }, - "path": [ - "global", - "motion", - "delay", - "default" - ], - "references": [ - { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 100 - }, - "name": "pf-t--global--delay--300", - "attributes": { - "category": "global", - "type": "delay", - "item": "300" - }, - "path": [ - "global", - "delay", - "300" - ] - } - ] - }, - "pf-t--global--motion--delay--long": { - "description": "Use when there should be a long delay before an animation plays.", - "type": "number", - "value": "7000ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use when there should be a long delay before an animation plays.", - "type": "number", - "value": "{global.delay.400}" - }, - "name": "pf-t--global--motion--delay--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "delay", - "subitem": "long" - }, - "path": [ - "global", - "motion", - "delay", - "long" - ], - "references": [ - { - "type": "number", - "value": "7000ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "number", - "value": 7000 - }, - "name": "pf-t--global--delay--400", - "attributes": { - "category": "global", - "type": "delay", - "item": "400" - }, - "path": [ - "global", - "delay", - "400" - ] - } - ] - }, - "pf-t--global--motion--timing-function--accelerate": { - "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", - "type": "number", - "value": "cubic-bezier(.4, 0, .7, .2)", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", - "type": "number", - "value": "{global.timing-function.100}" - }, - "name": "pf-t--global--motion--timing-function--accelerate", - "attributes": { - "category": "global", - "type": "motion", - "item": "timing-function", - "subitem": "accelerate" - }, - "path": [ - "global", - "motion", - "timing-function", - "accelerate" - ], - "references": [ - { - "type": "string", - "value": "cubic-bezier(.4, 0, .7, .2)", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "string", - "value": "cubic-bezier(.4, 0, .7, .2)" - }, - "name": "pf-t--global--timing-function--100", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "100" - }, - "path": [ - "global", - "timing-function", - "100" - ] - } - ] - }, - "pf-t--global--motion--timing-function--default": { - "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", - "type": "number", - "value": "cubic-bezier(.4, 0, .2, 1)", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", - "type": "number", - "value": "{global.timing-function.200}" - }, - "name": "pf-t--global--motion--timing-function--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "timing-function", - "subitem": "default" - }, - "path": [ - "global", - "motion", - "timing-function", - "default" - ], - "references": [ - { - "type": "string", - "value": "cubic-bezier(.4, 0, .2, 1)", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "string", - "value": "cubic-bezier(.4, 0, .2, 1)" - }, - "name": "pf-t--global--timing-function--200", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "200" - }, - "path": [ - "global", - "timing-function", - "200" - ] - } - ] - }, - "pf-t--global--motion--timing-function--decelerate": { - "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", - "type": "number", - "value": "cubic-bezier(0, 0, .2, 1)", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { - "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", - "type": "number", - "value": "{global.timing-function.300}" - }, - "name": "pf-t--global--motion--timing-function--decelerate", - "attributes": { - "category": "global", - "type": "motion", - "item": "timing-function", - "subitem": "decelerate" - }, - "path": [ - "global", - "motion", - "timing-function", - "decelerate" - ], - "references": [ - { - "type": "string", - "value": "cubic-bezier(0, 0, .2, 1)", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { - "type": "string", - "value": "cubic-bezier(0, 0, .2, 1)" - }, - "name": "pf-t--global--timing-function--300", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "300" - }, - "path": [ - "global", - "timing-function", - "300" - ] - } - ] - }, - "pf-t--chart--color--blue--100": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - }, - "pf-t--chart--color--blue--200": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - }, - "pf-t--chart--color--blue--300": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - }, - "pf-t--chart--color--blue--400": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--chart--color--blue--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "blue", - "400" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - }, - "pf-t--chart--color--blue--500": { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.70}" - }, - "name": "pf-t--chart--color--blue--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "blue", - "500" - ], - "references": [ - { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#003366" - }, - "name": "pf-t--color--blue--70", - "attributes": { - "category": "color", - "type": "blue", - "item": "70" - }, - "path": [ - "color", - "blue", - "70" - ] - } - ] - }, - "pf-t--chart--color--green--100": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--chart--color--green--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - }, - "pf-t--chart--color--green--200": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--chart--color--green--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - }, - "pf-t--chart--color--green--300": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.50}" - }, - "name": "pf-t--chart--color--green--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } - ] - }, - "pf-t--chart--color--green--400": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - }, - "pf-t--chart--color--green--500": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - }, - "pf-t--chart--color--teal--100": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - }, - "pf-t--chart--color--teal--200": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - }, - "pf-t--chart--color--teal--300": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] - }, - "pf-t--chart--color--teal--400": { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--chart--color--teal--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "teal", - "400" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - }, - "pf-t--chart--color--teal--500": { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - }, - "pf-t--chart--color--purple--100": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--chart--color--purple--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "purple", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - }, - "pf-t--chart--color--purple--200": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--chart--color--purple--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] - }, - "pf-t--chart--color--purple--300": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--chart--color--purple--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "purple", - "300" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - }, - "pf-t--chart--color--purple--400": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--chart--color--purple--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "purple", - "400" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - }, - "pf-t--chart--color--purple--500": { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.70}" - }, - "name": "pf-t--chart--color--purple--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "purple", - "500" - ], - "references": [ - { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#21134d" - }, - "name": "pf-t--color--purple--70", - "attributes": { - "category": "color", - "type": "purple", - "item": "70" - }, - "path": [ - "color", - "purple", - "70" - ] - } - ] - }, - "pf-t--chart--color--yellow--100": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - }, - "pf-t--chart--color--yellow--200": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--color--yellow--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--chart--color--yellow--300": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--color--yellow--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - }, - "pf-t--chart--color--yellow--400": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "yellow", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - }, - "pf-t--chart--color--yellow--500": { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.60}" - }, - "name": "pf-t--chart--color--yellow--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "yellow", - "500" - ], - "references": [ - { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#96640f" - }, - "name": "pf-t--color--yellow--60", - "attributes": { - "category": "color", - "type": "yellow", - "item": "60" - }, - "path": [ - "color", - "yellow", - "60" - ] - } - ] - }, - "pf-t--chart--color--orange--100": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - }, - "pf-t--chart--color--orange--200": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--color--orange--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - }, - "pf-t--chart--color--orange--300": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - }, - "pf-t--chart--color--orange--400": { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.60}" - }, - "name": "pf-t--chart--color--orange--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "orange", - "400" - ], - "references": [ - { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9e4a06" - }, - "name": "pf-t--color--orange--60", - "attributes": { - "category": "color", - "type": "orange", - "item": "60" - }, - "path": [ - "color", - "orange", - "60" - ] - } - ] - }, - "pf-t--chart--color--orange--500": { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.70}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#732e00" - }, - "name": "pf-t--color--orange--70", - "attributes": { - "category": "color", - "type": "orange", - "item": "70" - }, - "path": [ - "color", - "orange", - "70" - ] - } - ] - }, - "pf-t--chart--color--red-orange--100": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--chart--color--red-orange--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "red-orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - }, - "pf-t--chart--color--red-orange--200": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--chart--color--red-orange--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "red-orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - }, - "pf-t--chart--color--red-orange--300": { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--chart--color--red-orange--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "red-orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] - }, - "pf-t--chart--color--red-orange--400": { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--chart--color--red-orange--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "red-orange", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - }, - "pf-t--chart--color--red-orange--500": { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--chart--color--red-orange--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "red-orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - }, - "pf-t--chart--color--black--100": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--chart--color--black--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "black", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - }, - "pf-t--chart--color--black--200": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--chart--color--black--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "black", - "200" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - }, - "pf-t--chart--color--black--300": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--chart--color--black--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "black", - "300" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, - "pf-t--chart--color--black--400": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--chart--color--black--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "black", - "400" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - }, - "pf-t--chart--color--black--500": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--chart--color--black--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "black", - "500" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - }, - "pf-t--chart--global--BorderWidth--xs": { - "type": "number", - "value": 1, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--chart--global--BorderWidth--xs", - "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "xs" - }, - "path": [ - "chart", - "global", - "BorderWidth", - "xs" - ] - }, - "pf-t--chart--global--BorderWidth--sm": { - "type": "number", - "value": 2, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--chart--global--BorderWidth--sm", - "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "sm" - }, - "path": [ - "chart", - "global", - "BorderWidth", - "sm" - ] - }, - "pf-t--chart--global--BorderWidth--lg": { - "type": "number", - "value": 8, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--chart--global--BorderWidth--lg", - "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "lg" - }, - "path": [ - "chart", - "global", - "BorderWidth", - "lg" - ] - }, - "pf-t--chart--global--stroke--width--xs": { - "type": "number", - "value": 1, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "number", - "value": 1 - }, - "name": "pf-t--chart--global--stroke--width--xs", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke", - "subitem": "width", - "state": "xs" - }, - "path": [ - "chart", - "global", - "stroke", - "width", - "xs" - ] - }, - "pf-t--chart--global--stroke--width--sm": { - "type": "number", - "value": 2, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "number", - "value": 2 - }, - "name": "pf-t--chart--global--stroke--width--sm", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke", - "subitem": "width", - "state": "sm" - }, - "path": [ - "chart", - "global", - "stroke", - "width", - "sm" - ] - }, - "pf-t--chart--global--fill--color--100": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--chart--global--fill--color--100", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "100" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - }, - "pf-t--chart--global--fill--color--200": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--chart--global--fill--color--200", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "200" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - }, - "pf-t--chart--global--fill--color--300": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--chart--global--fill--color--300", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "300" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, - "pf-t--chart--global--fill--color--400": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--chart--global--fill--color--400", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "400" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "400" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - }, - "pf-t--chart--global--fill--color--500": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--chart--global--fill--color--500", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "500" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "500" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - }, - "pf-t--chart--global--fill--color--700": { - "type": "color", - "value": "#383838", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--chart--global--fill--color--700", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "700" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "700" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - }, - "pf-t--chart--global--fill--color--900": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--chart--global--fill--color--900", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "900" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "900" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - }, - "pf-t--chart--global--fill--color--white": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--chart--global--fill--color--white", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "white" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "white" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - }, - "pf-t--chart--global--warning--color--100": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--global--warning--color--100", - "attributes": { - "category": "chart", - "type": "global", - "item": "warning", - "subitem": "color", - "state": "100" - }, - "path": [ - "chart", - "global", - "warning", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - }, - "pf-t--chart--global--warning--color--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--global--warning--color--200", - "attributes": { - "category": "chart", - "type": "global", - "item": "warning", - "subitem": "color", - "state": "200" - }, - "path": [ - "chart", - "global", - "warning", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - }, - "pf-t--chart--global--success--color--100": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--global--success--color--100", - "attributes": { - "category": "chart", - "type": "global", - "item": "success", - "subitem": "color", - "state": "100" - }, - "path": [ - "chart", - "global", - "success", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - }, - "pf-t--chart--global--danger--color--100": { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--chart--global--danger--color--100", - "attributes": { - "category": "chart", - "type": "global", - "item": "danger", - "subitem": "color", - "state": "100" - }, - "path": [ - "chart", - "global", - "danger", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - }, - "pf-t--chart--global--FontSize--xs": { - "type": "number", - "value": 12, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "number", - "value": 12 - }, - "name": "pf-t--chart--global--FontSize--xs", - "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "xs" - }, - "path": [ - "chart", - "global", - "FontSize", - "xs" - ] - }, - "pf-t--chart--global--FontSize--sm": { - "type": "number", - "value": 14, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "number", - "value": 14 - }, - "name": "pf-t--chart--global--FontSize--sm", - "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "sm" - }, - "path": [ - "chart", - "global", - "FontSize", - "sm" - ] - }, - "pf-t--chart--global--FontSize--lg": { - "type": "number", - "value": 18, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "number", - "value": 18 - }, - "name": "pf-t--chart--global--FontSize--lg", - "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "lg" - }, - "path": [ - "chart", - "global", - "FontSize", - "lg" - ] - }, - "pf-t--chart--global--FontSize--2xl": { - "type": "number", - "value": 22, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "number", - "value": 22 - }, - "name": "pf-t--chart--global--FontSize--2xl", - "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "2xl" - }, - "path": [ - "chart", - "global", - "FontSize", - "2xl" - ] - }, - "pf-t--chart--global--letter-spacing": { - "type": "string", - "value": "normal", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "string", - "value": "normal" - }, - "name": "pf-t--chart--global--letter-spacing", - "attributes": { - "category": "chart", - "type": "global", - "item": "letter-spacing" - }, - "path": [ - "chart", - "global", - "letter-spacing" - ] - }, - "pf-t--chart--global--stroke-line-cap": { - "type": "string", - "value": "round", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "string", - "value": "round" - }, - "name": "pf-t--chart--global--stroke-line-cap", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke-line-cap" - }, - "path": [ - "chart", - "global", - "stroke-line-cap" - ] - }, - "pf-t--chart--global--label--padding": { - "type": "number", - "value": 10, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "number", - "value": 10 - }, - "name": "pf-t--chart--global--label--padding", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "padding" - }, - "path": [ - "chart", - "global", - "label", - "padding" - ] - }, - "pf-t--chart--global--label--margin": { - "type": "number", - "value": 8, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--chart--global--label--margin", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "margin" - }, - "path": [ - "chart", - "global", - "label", - "margin" - ] - }, - "pf-t--chart--global--label--stroke": { - "width": { - "type": "number", - "value": 0, - "filePath": "tokens/default/charts.json", - "isSource": true - }, - "type": "string", - "value": "transparent", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "width": { - "type": "number", - "value": 0, - "filePath": "tokens/default/charts.json", - "isSource": true - }, - "type": "string", - "value": "transparent" - }, - "name": "pf-t--chart--global--label--stroke", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "stroke" - }, - "path": [ - "chart", - "global", - "label", - "stroke" - ] - }, - "pf-t--chart--global--label--text-anchor": { - "type": "string", - "value": "middle", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "string", - "value": "middle" - }, - "name": "pf-t--chart--global--label--text-anchor", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "text-anchor" - }, - "path": [ - "chart", - "global", - "label", - "text-anchor" - ] - }, - "pf-t--chart--global--label--fill": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--chart--global--label--fill", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "fill" - }, - "path": [ - "chart", - "global", - "label", - "fill" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - }, - "pf-t--chart--global--layout--padding": { - "type": "number", - "value": 50, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "number", - "value": 50 - }, - "name": "pf-t--chart--global--layout--padding", - "attributes": { - "category": "chart", - "type": "global", - "item": "layout", - "subitem": "padding" - }, - "path": [ - "chart", - "global", - "layout", - "padding" - ] - }, - "pf-t--chart--global--layout--height": { - "type": "number", - "value": 300, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "number", - "value": 300 - }, - "name": "pf-t--chart--global--layout--height", - "attributes": { - "category": "chart", - "type": "global", - "item": "layout", - "subitem": "height" - }, - "path": [ - "chart", - "global", - "layout", - "height" - ] - }, - "pf-t--chart--global--layout--width": { - "type": "number", - "value": 450, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "number", - "value": 450 - }, - "name": "pf-t--chart--global--layout--width", - "attributes": { - "category": "chart", - "type": "global", - "item": "layout", - "subitem": "width" - }, - "path": [ - "chart", - "global", - "layout", - "width" - ] - }, - "pf-t--chart--global--stroke-line-join": { - "type": "string", - "value": "round", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "string", - "value": "round" - }, - "name": "pf-t--chart--global--stroke-line-join", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke-line-join" - }, - "path": [ - "chart", - "global", - "stroke-line-join" - ] - }, - "pf-t--chart--theme--colorscales--blue--colorscale--100": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.300}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--blue--colorscale--200": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.100}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--blue--colorscale--300": { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.500}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.70}" - }, - "name": "pf-t--chart--color--blue--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "blue", - "500" - ], - "references": [ - { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#003366" - }, - "name": "pf-t--color--blue--70", - "attributes": { - "category": "color", - "type": "blue", - "item": "70" - }, - "path": [ - "color", - "blue", - "70" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--blue--colorscale--400": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.200}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--blue--colorscale--500": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.400}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--chart--color--blue--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "blue", - "400" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--teal--colorscale--100": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.300}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--teal--colorscale--200": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.100}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--teal--colorscale--300": { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.500}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--teal--colorscale--400": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.200}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--teal--colorscale--500": { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.400}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--chart--color--teal--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "teal", - "400" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--yellow--colorscale--100": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.300}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--color--yellow--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--yellow--colorscale--200": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.100}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--yellow--colorscale--300": { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.500}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.60}" - }, - "name": "pf-t--chart--color--yellow--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "yellow", - "500" - ], - "references": [ - { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#96640f" - }, - "name": "pf-t--color--yellow--60", - "attributes": { - "category": "color", - "type": "yellow", - "item": "60" - }, - "path": [ - "color", - "yellow", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--yellow--colorscale--400": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.200}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--color--yellow--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--yellow--colorscale--500": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.400}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "yellow", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--gray--colorscale--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.300}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--chart--color--black--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "black", - "300" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--gray--colorscale--200": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.100}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--chart--color--black--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "black", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--gray--colorscale--300": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.500}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--chart--color--black--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "black", - "500" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--gray--colorscale--400": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.200}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--chart--color--black--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "black", - "200" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--gray--colorscale--500": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.400}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--chart--color--black--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "black", - "400" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--green--colorscale--100": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.300}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.50}" - }, - "name": "pf-t--chart--color--green--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--green--colorscale--200": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.100}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--chart--color--green--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--green--colorscale--300": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.500}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--green--colorscale--400": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.200}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--chart--color--green--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--green--colorscale--500": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.400}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--purple--colorscale--100": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.300}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--chart--color--purple--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "purple", - "300" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--purple--colorscale--200": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.100}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--chart--color--purple--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "purple", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--purple--colorscale--300": { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.500}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.70}" - }, - "name": "pf-t--chart--color--purple--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "purple", - "500" - ], - "references": [ - { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#21134d" - }, - "name": "pf-t--color--purple--70", - "attributes": { - "category": "color", - "type": "purple", - "item": "70" - }, - "path": [ - "color", - "purple", - "70" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--purple--colorscale--400": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.200}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--chart--color--purple--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--purple--colorscale--500": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.400}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--chart--color--purple--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "purple", - "400" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--orange--colorscale--100": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.300}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--orange--colorscale--200": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.100}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--orange--colorscale--300": { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.500}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.70}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#732e00" - }, - "name": "pf-t--color--orange--70", - "attributes": { - "category": "color", - "type": "orange", - "item": "70" - }, - "path": [ - "color", - "orange", - "70" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--orange--colorscale--400": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.200}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--color--orange--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--orange--colorscale--500": { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.400}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.60}" - }, - "name": "pf-t--chart--color--orange--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "orange", - "400" - ], - "references": [ - { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9e4a06" - }, - "name": "pf-t--color--orange--60", - "attributes": { - "category": "color", - "type": "orange", - "item": "60" - }, - "path": [ - "color", - "orange", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.50}" - }, - "name": "pf-t--chart--color--green--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--color--yellow--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "600" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "700" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "800" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900": { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "900" - ], - "references": [ - { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.60}" - }, - "name": "pf-t--chart--color--yellow--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "yellow", - "500" - ], - "references": [ - { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#96640f" - }, - "name": "pf-t--color--yellow--60", - "attributes": { - "category": "color", - "type": "yellow", - "item": "60" - }, - "path": [ - "color", - "yellow", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1000" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100": { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1100" - ], - "references": [ - { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.70}" - }, - "name": "pf-t--chart--color--blue--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "blue", - "500" - ], - "references": [ - { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#003366" - }, - "name": "pf-t--color--blue--70", - "attributes": { - "category": "color", - "type": "blue", - "item": "70" - }, - "path": [ - "color", - "blue", - "70" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--chart--color--green--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300": { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1300" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1400" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500": { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1500" - ], - "references": [ - { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.70}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#732e00" - }, - "name": "pf-t--color--orange--70", - "attributes": { - "category": "color", - "type": "orange", - "item": "70" - }, - "path": [ - "color", - "orange", - "70" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1600" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1700" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1800" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1900" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "yellow", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2000" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--color--orange--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2100" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--chart--color--blue--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "blue", - "400" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2200" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--chart--color--green--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300": { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2300" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--chart--color--teal--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "teal", - "400" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2400" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--color--yellow--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500": { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2500" - ], - "references": [ - { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.60}" - }, - "name": "pf-t--chart--color--orange--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "orange", - "400" - ], - "references": [ - { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9e4a06" - }, - "name": "pf-t--color--orange--60", - "attributes": { - "category": "color", - "type": "orange", - "item": "60" - }, - "path": [ - "color", - "orange", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "blue", - "300" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--color--yellow--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.50}" - }, - "name": "pf-t--chart--color--green--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "green", - "300" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "400" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--chart--color--purple--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "purple", - "300" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "orange", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "600" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "teal", - "300" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "700" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--chart--color--black--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "black", - "300" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "800" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900": { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "900" - ], - "references": [ - { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.60}" - }, - "name": "pf-t--chart--color--yellow--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "yellow", - "500" - ], - "references": [ - { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#96640f" - }, - "name": "pf-t--color--yellow--60", - "attributes": { - "category": "color", - "type": "yellow", - "item": "60" - }, - "path": [ - "color", - "yellow", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1000" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--chart--color--green--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100": { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1100" - ], - "references": [ - { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.70}" - }, - "name": "pf-t--chart--color--purple--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "purple", - "500" - ], - "references": [ - { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#21134d" - }, - "name": "pf-t--color--purple--70", - "attributes": { - "category": "color", - "type": "purple", - "item": "70" - }, - "path": [ - "color", - "purple", - "70" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1200" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300": { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1300" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1400" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--chart--color--black--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "black", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500": { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1500" - ], - "references": [ - { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.70}" - }, - "name": "pf-t--chart--color--blue--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "blue", - "500" - ], - "references": [ - { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#003366" - }, - "name": "pf-t--color--blue--70", - "attributes": { - "category": "color", - "type": "blue", - "item": "70" - }, - "path": [ - "color", - "blue", - "70" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1600" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1700" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1800" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--chart--color--purple--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "purple", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900": { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1900" - ], - "references": [ - { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.70}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#732e00" - }, - "name": "pf-t--color--orange--70", - "attributes": { - "category": "color", - "type": "orange", - "item": "70" - }, - "path": [ - "color", - "orange", - "70" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2000" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2100" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--chart--color--black--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "black", - "500" - ], - "references": [ - { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2200" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2300" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "yellow", - "400" - ], - "references": [ - { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2400" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--chart--color--green--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "green", - "200" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2500" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--chart--color--purple--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "purple", - "400" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2600" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--color--orange--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "orange", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700": { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2700" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--chart--color--teal--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "teal", - "400" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2800" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--chart--color--black--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "black", - "200" - ], - "references": [ - { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2900" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--chart--color--blue--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "blue", - "400" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.yellow.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3000" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--color--yellow--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "yellow", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3100" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.purple.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3200" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--chart--color--purple--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "purple", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300": { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.orange.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3300" - ], - "references": [ - { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.60}" - }, - "name": "pf-t--chart--color--orange--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "orange", - "400" - ], - "references": [ - { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9e4a06" - }, - "name": "pf-t--color--orange--60", - "attributes": { - "category": "color", - "type": "orange", - "item": "60" - }, - "path": [ - "color", - "orange", - "60" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3400" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.black.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3500" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--chart--color--black--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "black", - "400" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] - }, - "pf-t--color--white": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - }, - "pf-t--color--gray--10": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - }, - "pf-t--color--gray--20": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - }, - "pf-t--color--gray--30": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - }, - "pf-t--color--gray--40": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - }, - "pf-t--color--gray--50": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - }, - "pf-t--color--gray--60": { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - }, - "pf-t--color--gray--70": { - "type": "color", - "value": "#383838", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - }, - "pf-t--color--gray--80": { - "type": "color", - "value": "#292929", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - }, - "pf-t--color--gray--90": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - }, - "pf-t--color--gray--95": { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - }, - "pf-t--color--black": { - "type": "color", - "value": "#000000", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#000000" - }, - "name": "pf-t--color--black", - "attributes": { - "category": "color", - "type": "black" - }, - "path": [ - "color", - "black" - ] - }, - "pf-t--color--blue--10": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - }, - "pf-t--color--blue--20": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - }, - "pf-t--color--blue--30": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - }, - "pf-t--color--blue--40": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - }, - "pf-t--color--blue--50": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - }, - "pf-t--color--blue--60": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - }, - "pf-t--color--blue--70": { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#003366" - }, - "name": "pf-t--color--blue--70", - "attributes": { - "category": "color", - "type": "blue", - "item": "70" - }, - "path": [ - "color", - "blue", - "70" - ] - }, - "pf-t--color--teal--10": { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - }, - "pf-t--color--teal--20": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - }, - "pf-t--color--teal--30": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - }, - "pf-t--color--teal--40": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - }, - "pf-t--color--teal--50": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - }, - "pf-t--color--teal--60": { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - }, - "pf-t--color--teal--70": { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - }, - "pf-t--color--yellow--10": { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] - }, - "pf-t--color--yellow--20": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - }, - "pf-t--color--yellow--30": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - }, - "pf-t--color--yellow--40": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - }, - "pf-t--color--yellow--50": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - }, - "pf-t--color--yellow--60": { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#96640f" - }, - "name": "pf-t--color--yellow--60", - "attributes": { - "category": "color", - "type": "yellow", - "item": "60" - }, - "path": [ - "color", - "yellow", - "60" - ] - }, - "pf-t--color--yellow--70": { - "type": "color", - "value": "#73480b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#73480b" - }, - "name": "pf-t--color--yellow--70", - "attributes": { - "category": "color", - "type": "yellow", - "item": "70" - }, - "path": [ - "color", - "yellow", - "70" - ] - }, - "pf-t--color--green--10": { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] - }, - "pf-t--color--green--20": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - }, - "pf-t--color--green--30": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - }, - "pf-t--color--green--40": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - }, - "pf-t--color--green--50": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - }, - "pf-t--color--green--60": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - }, - "pf-t--color--green--70": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - }, - "pf-t--color--orange--10": { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] - }, - "pf-t--color--orange--20": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - }, - "pf-t--color--orange--30": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - }, - "pf-t--color--orange--40": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - }, - "pf-t--color--orange--50": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - }, - "pf-t--color--orange--60": { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9e4a06" - }, - "name": "pf-t--color--orange--60", - "attributes": { - "category": "color", - "type": "orange", - "item": "60" - }, - "path": [ - "color", - "orange", - "60" - ] - }, - "pf-t--color--orange--70": { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#732e00" - }, - "name": "pf-t--color--orange--70", - "attributes": { - "category": "color", - "type": "orange", - "item": "70" - }, - "path": [ - "color", - "orange", - "70" - ] - }, - "pf-t--color--red-orange--10": { - "type": "color", - "value": "#ffe3d9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe3d9" - }, - "name": "pf-t--color--red-orange--10", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "10" - }, - "path": [ - "color", - "red-orange", - "10" - ] - }, - "pf-t--color--red-orange--20": { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - }, - "pf-t--color--red-orange--30": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - }, - "pf-t--color--red-orange--40": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - }, - "pf-t--color--red-orange--50": { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - }, - "pf-t--color--red-orange--60": { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - }, - "pf-t--color--red-orange--70": { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - }, - "pf-t--color--purple--10": { - "type": "color", - "value": "#ece6ff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ece6ff" - }, - "name": "pf-t--color--purple--10", - "attributes": { - "category": "color", - "type": "purple", - "item": "10" - }, - "path": [ - "color", - "purple", - "10" - ] - }, - "pf-t--color--purple--20": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - }, - "pf-t--color--purple--30": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - }, - "pf-t--color--purple--40": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - }, - "pf-t--color--purple--50": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - }, - "pf-t--color--purple--60": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - }, - "pf-t--color--purple--70": { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#21134d" - }, - "name": "pf-t--color--purple--70", - "attributes": { - "category": "color", - "type": "purple", - "item": "70" - }, - "path": [ - "color", - "purple", - "70" - ] - }, - "pf-t--color--red--10": { - "type": "color", - "value": "#fce3e3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fce3e3" - }, - "name": "pf-t--color--red--10", - "attributes": { - "category": "color", - "type": "red", - "item": "10" - }, - "path": [ - "color", - "red", - "10" - ] - }, - "pf-t--color--red--20": { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - }, - "pf-t--color--red--30": { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - }, - "pf-t--color--red--40": { - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f56e6e" - }, - "name": "pf-t--color--red--40", - "attributes": { - "category": "color", - "type": "red", - "item": "40" - }, - "path": [ - "color", - "red", - "40" - ] - }, - "pf-t--color--red--50": { - "type": "color", - "value": "#ee0000", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ee0000" - }, - "name": "pf-t--color--red--50", - "attributes": { - "category": "color", - "type": "red", - "item": "50" - }, - "path": [ - "color", - "red", - "50" - ] - }, - "pf-t--color--red--60": { - "type": "color", - "value": "#a60000", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a60000" - }, - "name": "pf-t--color--red--60", - "attributes": { - "category": "color", - "type": "red", - "item": "60" - }, - "path": [ - "color", - "red", - "60" - ] - }, - "pf-t--color--red--70": { - "type": "color", - "value": "#5f0000", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5f0000" - }, - "name": "pf-t--color--red--70", - "attributes": { - "category": "color", - "type": "red", - "item": "70" - }, - "path": [ - "color", - "red", - "70" - ] - } -} \ No newline at end of file diff --git a/packages/module/patternfly-docs/content/semantic-tokens-dark.json b/packages/module/patternfly-docs/content/token-layers-dark.json similarity index 100% rename from packages/module/patternfly-docs/content/semantic-tokens-dark.json rename to packages/module/patternfly-docs/content/token-layers-dark.json diff --git a/packages/module/patternfly-docs/content/semantic-tokens-default.json b/packages/module/patternfly-docs/content/token-layers-default.json similarity index 100% rename from packages/module/patternfly-docs/content/semantic-tokens-default.json rename to packages/module/patternfly-docs/content/token-layers-default.json diff --git a/packages/module/patternfly-docs/content/tokensTable.js b/packages/module/patternfly-docs/content/tokensTable.js index 41814c2..440ff02 100644 --- a/packages/module/patternfly-docs/content/tokensTable.js +++ b/packages/module/patternfly-docs/content/tokensTable.js @@ -1,5 +1,20 @@ import React, { useMemo } from 'react'; -import { SearchInput, Toolbar, ToolbarItem, ToolbarContent, capitalize } from '@patternfly/react-core'; +import { + Flex, + FlexItem, + Grid, + GridItem, + MenuToggle, + SearchInput, + Select, + SelectList, + SelectOption, + Title, + Toolbar, + ToolbarItem, + ToolbarContent, + capitalize +} from '@patternfly/react-core'; import { Table, Thead, @@ -11,13 +26,17 @@ import { OuterScrollContainer, InnerScrollContainer } from '@patternfly/react-table'; +import './tokensTable.css'; // eslint-disable-next-line camelcase import global_spacer_md from '@patternfly/react-tokens/dist/esm/global_spacer_md'; import LevelUpAltIcon from '@patternfly/react-icons/dist/esm/icons/level-up-alt-icon'; +import FilterIcon from '@patternfly/react-icons/dist/esm/icons/filter-icon'; + +const isColorRegex = /^(#|rgb)/; // Used to combine data grouped by theme under each token name -const combineObjects = (objectsArr) => { +const combineObjects = (parentObject) => { let combined = {}; const addToCombined = (obj, objName) => { for (let key in obj) { @@ -29,13 +48,37 @@ const combineObjects = (objectsArr) => { } } }; - Object.entries(objectsArr).forEach(([key, value]) => { + Object.entries(parentObject).forEach(([key, value]) => { addToCombined(value, key); }); return combined; }; +const combineTokens = (tokensObj, tokensByTheme) => { + Object.entries(tokensObj).map(([layerName, layerObj]) => { + // ['chart', {}] + const layerCategories = Object.keys(layerObj); // [] + if (layerCategories.length > 0) { + Object.keys(layerObj).map((layerCategory) => { + const layerCategoryByTheme = Object.entries(tokensByTheme).reduce((acc, [themeName, themeData]) => { + acc[themeName] = themeData[layerName][layerCategory]; + return acc; + }, {}); + tokensObj[layerName][layerCategory] = combineObjects(layerCategoryByTheme); + }); + } else { + const layerByTheme = Object.entries(tokensByTheme).reduce((acc, [themeName, themeData]) => { + // ['dark', {'palette': { ... }, 'chart': { ... } }] + acc[themeName] = themeData[layerName]; // {'dark': { ...chart data } } + return acc; + }, {}); + tokensObj[layerName] = combineObjects(layerByTheme); + } + }); + return tokensObj; +}; + const getTokenChain = (themeTokenData) => { let tokenChain = []; let referenceToken = themeTokenData?.references?.[0]; @@ -59,7 +102,7 @@ const showTokenChain = (themeTokenData) => {
@@ -71,6 +114,20 @@ const showTokenChain = (themeTokenData) => { }; export const TokensTable = ({ tokenJson, formatThemeText = capitalize }) => { + const combinedTokensObj = { + semantic: { + colors: {}, + dimension: {}, + motion: {} + }, + base: { + colors: {}, + dimension: {}, + motion: {} + }, + palette: {}, + chart: {} + }; // combine all themes/tokens into one object const themeKeys = Object.keys(tokenJson); const tokensByTheme = useMemo( @@ -83,9 +140,12 @@ export const TokensTable = ({ tokenJson, formatThemeText = capitalize }) => { }, {}), [tokenJson] ); - const combinedTokens = combineObjects(tokensByTheme); + const allTokens = combineTokens(combinedTokensObj, tokensByTheme); + const [searchValue, setSearchValue] = React.useState(''); const [expandedTokens, setExpandedTokens] = React.useState([]); + const [isSelectOpen, setIsSelectOpen] = React.useState(false); + const [selectedCategories, setSelectedCategories] = React.useState([]); const setExpanded = (tokenName, isExpanding = true) => setExpandedTokens((prevExpanded) => { const otherExpandedTokens = prevExpanded.filter((n) => n !== tokenName); @@ -107,111 +167,205 @@ export const TokensTable = ({ tokenJson, formatThemeText = capitalize }) => { onClear={() => setSearchValue('')} /> + + + - - - - - - {themeKeys.map((theme) => ( - - ))} - - {/* - - - - */} - - - {Object.entries(combinedTokens).map(([tokenName, themesDataObj], rowIndex) => { - const searchTerm = searchValue.toLowerCase(); - console.log({ themesDataObj }); - if (tokenName === 'default') { - return undefined; - } else if ( - searchValue !== '' && - !( - tokenName.toLowerCase().includes(searchTerm) || - Object.entries(themesDataObj).some( - ([themeName, themeData]) => - themeData?.value?.toString().toLowerCase().includes(searchTerm) || - themeData?.description?.toLowerCase().includes(searchTerm) - ) - ) - ) { - return undefined; - } else { - const themesDataArr = Object.entries(themesDataObj); + {Object.entries(allTokens).map(([layerName, layerDataObj], _rowIndex) => { + if (layerName === 'palette') { + layerDataObj = { palette: layerDataObj }; + } + if (layerName === 'chart') { + layerDataObj = { chart: layerDataObj }; + } + const isSemanticLayer = layerName === 'semantic'; + return ( + <> + {formatThemeText(layerName)} tokens +
Name{`${formatThemeText(theme)} Theme`}DescriptionCategoryTypeItemSubitemState
+ + + {/* Only semantic tokens have description, adjust columns accordingly */} + + + + {isSemanticLayer && } + + + {Object.entries(layerDataObj).map((layerDataProperties, _rowIndex) => { + let [categoryName, categoryDataObj] = layerDataProperties; - let hasReferences = false; - let description = null; - // let attributes = []; - themesDataArr.map(([_themeName, themeTokenData]) => { - // if references values exists anywhere, set isNotResolved to true - if (!hasReferences && themeTokenData.references !== undefined) { - hasReferences = true; - } - // Save description first time found - shared across themes - if (!description && themeTokenData.description) { - description = themeTokenData.description; - } + return Object.entries(categoryDataObj).map(([tokenName, themesDataObj], rowIndex) => { + const searchTerm = searchValue.toLowerCase(); + if (tokenName === 'default') { + return undefined; + } else if ( + // Match search value to any token name/value in token chain or to description + searchValue !== '' && + !( + tokenName.toLowerCase().includes(searchTerm) || + Object.entries(themesDataObj).some( + ([_themeName, themeData]) => + themeData?.value?.toString().toLowerCase().includes(searchTerm) || + themeData?.description?.toLowerCase().includes(searchTerm) + ) + ) + ) { + return undefined; + } else if (selectedCategories.length !== 0 && !selectedCategories.includes(categoryName)) { + return undefined; + } else { + const themesDataArr = Object.entries(themesDataObj); - /* - // Track all attributes for dynamically creating table columns - const attributeEntries = Object.entries(themeTokenData.attributes); - attributes = new Set([...attributes, ...attributeEntries]); - attributes = Array.from(attributes).map((value) => [value, value]); - // console.log({ attributes }); - */ - }); + let hasReferences = false; + let description = null; + themesDataArr.map(([_themeName, themeTokenData]) => { + // if references values exists anywhere, set isNotResolved to true + if (!hasReferences && themeTokenData.references !== undefined) { + hasReferences = true; + } + // Save description first time found - shared across themes + if (!description && themeTokenData.description) { + description = themeTokenData.description; + } + }); - return ( - - - - {themeKeys.map((theme) => ( - - ))} - - {/* {attributes.map(([key, val]) => { - console.log({ key, val }); - return ; - })} */} - - {hasReferences && ( - - - ))} - - )} - - ); - } - })} -
NameValueDescription
setExpanded(tokenName, !isTokenExpanded(tokenName)), - expandId: `${tokenName}-expandable-toggle` - } - : undefined - } - /> - - {tokenName} - {tokensByTheme[theme][tokenName]?.value ?? '-'}{description}{val}
- - {themesDataArr.map(([themeName, themeTokenData]) => ( - - {showTokenChain(themeTokenData)} -
+ return ( +
setExpanded(tokenName, !isTokenExpanded(tokenName)), + expandId: `${tokenName}-expandable-toggle` + } + : undefined + } + /> + + {tokenName} + + {themeKeys.map((theme) => { + const val = + layerName === 'palette' || layerName === 'chart' + ? tokensByTheme[theme][layerName][tokenName]?.value + : tokensByTheme[theme][layerName][categoryName][tokenName]?.value; + const hasValue = val !== undefined; + const isColor = isColorRegex.test(val); + return ( + + {formatThemeText(theme)}: + {isColor ? ( + hasValue && ( + + + + ) + ) : ( +
+ {hasValue ? val : '--'} +
+ )} +
+ ); + })} +
{description}
+ + + + {themeKeys.map( + (theme) => + themesDataObj.hasOwnProperty(theme) && ( + <> + {formatThemeText(theme)}: + {showTokenChain(themesDataObj[theme])} + + ) + )} + + +
+ + ); + })}
diff --git a/packages/module/patternfly-docs/content/tokensTableCategories.js b/packages/module/patternfly-docs/content/tokensTableCategories.js deleted file mode 100644 index c82de13..0000000 --- a/packages/module/patternfly-docs/content/tokensTableCategories.js +++ /dev/null @@ -1,373 +0,0 @@ -import React, { useMemo } from 'react'; -import { - Flex, - FlexItem, - Grid, - GridItem, - MenuToggle, - SearchInput, - Select, - SelectList, - SelectOption, - Title, - Toolbar, - ToolbarItem, - ToolbarContent, - capitalize -} from '@patternfly/react-core'; -import { - Table, - Thead, - Th, - Tr, - Tbody, - Td, - ExpandableRowContent, - OuterScrollContainer, - InnerScrollContainer -} from '@patternfly/react-table'; -import './tokensTable.css'; - -// eslint-disable-next-line camelcase -import global_spacer_md from '@patternfly/react-tokens/dist/esm/global_spacer_md'; -import LevelUpAltIcon from '@patternfly/react-icons/dist/esm/icons/level-up-alt-icon'; -import FilterIcon from '@patternfly/react-icons/dist/esm/icons/filter-icon'; - -const isColorRegex = /^(#|rgb)/; - -// Used to combine data grouped by theme under each token name -const combineObjects = (parentObject) => { - let combined = {}; - const addToCombined = (obj, objName) => { - for (let key in obj) { - if (obj.hasOwnProperty(key)) { - if (!combined.hasOwnProperty(key)) { - combined[key] = {}; - } - combined[key][objName] = obj[key]; - } - } - }; - Object.entries(parentObject).forEach(([key, value]) => { - addToCombined(value, key); - }); - - return combined; -}; - -const combineTokens = (tokensObj, tokensByTheme) => { - Object.entries(tokensObj).map(([layerName, layerObj]) => { - // ['chart', {}] - const layerCategories = Object.keys(layerObj); // [] - if (layerCategories.length > 0) { - Object.keys(layerObj).map((layerCategory) => { - const layerCategoryByTheme = Object.entries(tokensByTheme).reduce((acc, [themeName, themeData]) => { - acc[themeName] = themeData[layerName][layerCategory]; - return acc; - }, {}); - tokensObj[layerName][layerCategory] = combineObjects(layerCategoryByTheme); - }); - } else { - const layerByTheme = Object.entries(tokensByTheme).reduce((acc, [themeName, themeData]) => { - // ['dark', {'palette': { ... }, 'chart': { ... } }] - acc[themeName] = themeData[layerName]; // {'dark': { ...chart data } } - return acc; - }, {}); - tokensObj[layerName] = combineObjects(layerByTheme); - } - }); - return tokensObj; -}; - -const getTokenChain = (themeTokenData) => { - let tokenChain = []; - let referenceToken = themeTokenData?.references?.[0]; - while (referenceToken && referenceToken !== undefined) { - tokenChain = [...tokenChain, referenceToken.name]; - if (referenceToken?.references?.[0]) { - referenceToken = referenceToken?.references?.[0]; - } else { - tokenChain.push(referenceToken.value); - break; - } - } - return tokenChain; -}; - -const showTokenChain = (themeTokenData) => { - const tokenChain = getTokenChain(themeTokenData); - return ( -
- {tokenChain.map((nextValue, index) => ( -
- - {nextValue} -
- ))} -
- ); -}; - -export const TokensTableCategories = ({ tokenJson, formatThemeText = capitalize }) => { - const combinedTokensObj = { - semantic: { - colors: {}, - dimension: {}, - motion: {} - }, - base: { - colors: {}, - dimension: {}, - motion: {} - }, - palette: {}, - chart: {} - }; - // combine all themes/tokens into one object - const themeKeys = Object.keys(tokenJson); - const tokensByTheme = useMemo( - () => - themeKeys.reduce((allTokensObj, curTheme) => { - // transform from modules - const themeTokens = JSON.parse(JSON.stringify(tokenJson[curTheme])); - allTokensObj[curTheme] = themeTokens; - return allTokensObj; - }, {}), - [tokenJson] - ); - const allTokens = combineTokens(combinedTokensObj, tokensByTheme); - - const [searchValue, setSearchValue] = React.useState(''); - const [expandedTokens, setExpandedTokens] = React.useState([]); - const [isSelectOpen, setIsSelectOpen] = React.useState(false); - const [selectedCategories, setSelectedCategories] = React.useState([]); - const setExpanded = (tokenName, isExpanding = true) => - setExpandedTokens((prevExpanded) => { - const otherExpandedTokens = prevExpanded.filter((n) => n !== tokenName); - return isExpanding ? [...otherExpandedTokens, tokenName] : otherExpandedTokens; - }); - - const isTokenExpanded = (tokenName) => expandedTokens.includes(tokenName); - - return ( - - - - - setSearchValue(value)} - onClear={() => setSearchValue('')} - /> - - - - - - - - - {Object.entries(allTokens).map(([layerName, layerDataObj], _rowIndex) => { - if (layerName === 'palette') { - layerDataObj = { palette: layerDataObj }; - } - if (layerName === 'chart') { - layerDataObj = { chart: layerDataObj }; - } - const isSemanticLayer = layerName === 'semantic'; - return ( - <> - {formatThemeText(layerName)} tokens - - - - {/* Only semantic tokens have description, adjust columns accordingly */} - - - - {isSemanticLayer && } - - - {Object.entries(layerDataObj).map((layerDataProperties, _rowIndex) => { - let [categoryName, categoryDataObj] = layerDataProperties; - - return Object.entries(categoryDataObj).map(([tokenName, themesDataObj], rowIndex) => { - const searchTerm = searchValue.toLowerCase(); - if (tokenName === 'default') { - return undefined; - } else if ( - // Match search value to any token name/value in token chain or to description - searchValue !== '' && - !( - tokenName.toLowerCase().includes(searchTerm) || - Object.entries(themesDataObj).some( - ([_themeName, themeData]) => - themeData?.value?.toString().toLowerCase().includes(searchTerm) || - themeData?.description?.toLowerCase().includes(searchTerm) - ) - ) - ) { - return undefined; - } else if (selectedCategories.length !== 0 && !selectedCategories.includes(categoryName)) { - return undefined; - } else { - const themesDataArr = Object.entries(themesDataObj); - - let hasReferences = false; - let description = null; - themesDataArr.map(([_themeName, themeTokenData]) => { - // if references values exists anywhere, set isNotResolved to true - if (!hasReferences && themeTokenData.references !== undefined) { - hasReferences = true; - } - // Save description first time found - shared across themes - if (!description && themeTokenData.description) { - description = themeTokenData.description; - } - }); - - return ( - - - {/* Expandable row icon */} - - {/* Token values for each theme */} - - - - - {/* Expandable token chain */} - {hasReferences && isTokenExpanded(tokenName) && ( - - - - )} - - ); - } - }); - })} -
NameValueDescription
setExpanded(tokenName, !isTokenExpanded(tokenName)), - expandId: `${tokenName}-expandable-toggle` - } - : undefined - } - /> - - {tokenName} - - {themeKeys.map((theme) => { - const val = - layerName === 'palette' || layerName === 'chart' - ? tokensByTheme[theme][layerName][tokenName]?.value - : tokensByTheme[theme][layerName][categoryName][tokenName]?.value; - const hasValue = val !== undefined; - const isColor = isColorRegex.test(val); - return ( - - {formatThemeText(theme)}: - {isColor ? ( - hasValue && ( - - - - ) - ) : ( -
- {hasValue ? val : '--'} -
- )} -
- ); - })} -
{description}
- - - - {themeKeys.map( - (theme) => - themesDataObj.hasOwnProperty(theme) && ( - <> - {formatThemeText(theme)}: - {showTokenChain(themesDataObj[theme])} - - ) - )} - - -
- - ); - })} -
-
-
- ); -}; diff --git a/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js b/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js index 936f16b..bf7d347 100644 --- a/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js +++ b/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js @@ -1,9 +1,8 @@ import React from 'react'; import { AutoLinkHeader, Example, Link as PatternflyThemeLink } from '@patternfly/documentation-framework/components'; -import * as defaultTokens from '../../../content/./semantic-tokens-default.json'; -import * as darkTokens from '../../../content/./semantic-tokens-dark.json'; +import * as defaultTokens from '../../../content/./token-layers-default.json'; +import * as darkTokens from '../../../content/./token-layers-dark.json'; import { TokensTable } from '../../../content/./tokensTable.js'; -import { TokensTableCategories } from '../../../content/./tokensTableCategories.js'; const pageData = { "id": "All PatternFly tokens", "section": "tokens", @@ -21,17 +20,16 @@ const pageData = { pageData.liveContext = { defaultTokens, darkTokens, - TokensTable, - TokensTableCategories + TokensTable }; -pageData.relativeImports = "import * as defaultTokens from 'content/./semantic-tokens-default.json';,import * as darkTokens from 'content/./semantic-tokens-dark.json';,import { TokensTable } from 'content/./tokensTable.js';,import { TokensTableCategories } from 'content/./tokensTableCategories.js';" +pageData.relativeImports = "import * as defaultTokens from 'content/./token-layers-default.json';,import * as darkTokens from 'content/./token-layers-dark.json';,import { TokensTable } from 'content/./tokensTable.js';" pageData.examples = { }; const Component = () => ( - + ); Component.displayName = 'TokensAllPatternflyTokensTokensDocs'; From e401748b275b459f3af851f5574bd073c2d3aa69 Mon Sep 17 00:00:00 2001 From: Evan Date: Thu, 8 Aug 2024 18:55:07 -0400 Subject: [PATCH 14/23] chore(docs): update readme, delete unused files --- README.md | 8 +- packages/module/build-js-for-docs.js | 41 - packages/module/build.js | 32 +- packages/module/package.json | 5 +- .../content/token-layers-dark.json | 106836 ++++++++------- .../content/token-layers-default.json | 99232 +++++++------- .../patternfly-docs/content/tokensTable.js | 450 +- .../patternfly-docs/content/tokensToolbar.js | 77 + .../module/patternfly-docs/scssAsJson.json | 1 - 9 files changed, 105107 insertions(+), 101575 deletions(-) delete mode 100644 packages/module/build-js-for-docs.js create mode 100644 packages/module/patternfly-docs/content/tokensToolbar.js delete mode 100644 packages/module/patternfly-docs/scssAsJson.json diff --git a/README.md b/README.md index 7b58a85..37907e5 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,8 @@ We are temporarily pushing the built SCSS files to the repo for ease of access. # Docs build Whenever `yarn build:docs` is executed: -- the [build-js-for-docs.js](https://github.com/patternfly/design-tokens/blob/main/packages/module/build-js-for-docs.js) script is run to turn the scss files into a javascript object. -- The javascript object is stored in the [scssAsJson.json](https://github.com/patternfly/design-tokens/blob/main/packages/module/patternfly-docs/scssAsJson.json) file. -- The code for generating the table containing all tokens is the [tokensTable.js](https://github.com/patternfly/design-tokens/blob/main/packages/module/patternfly-docs/content/tokensTable.js), which consumes the javascript object from scssAsJson.json as data. -- Ultimately, the markdown file which is rendering the docs is [all-patternfly-tokens.md](https://github.com/patternfly/design-tokens/blob/main/packages/module/patternfly-docs/content/all-patternfly-tokens.md). This markdown file imports the tokensTable.js. +- the [build:scss](https://github.com/patternfly/design-tokens/blob/main/packages/module/build.js) script is run which transforms tokens pulled from Figma (split into separate token json files in the `/tokens` directory) into combined default and dark theme files (in addition to the .scss files within `build/css`). +- The two new json files (`token-layers-default.json` and `token-layers-dark.json`) are stored in the [patternfly-docs/content](https://github.com/patternfly/design-tokens/blob/main/packages/module/patternfly-docs/content) directory. +- The code for generating the table containing all tokens is the [tokensTable.js](https://github.com/patternfly/design-tokens/blob/main/packages/module/patternfly-docs/content/tokensTable.js), which combines the default and dark theme json tokens into one object and consumes it as data. +- Ultimately, the markdown file which is rendering the docs is [all-patternfly-tokens.md](https://github.com/patternfly/design-tokens/blob/main/packages/module/patternfly-docs/content/all-patternfly-tokens.md). This markdown file imports the tokensTable.js and takes the token theme files as props. diff --git a/packages/module/build-js-for-docs.js b/packages/module/build-js-for-docs.js deleted file mode 100644 index 61c677f..0000000 --- a/packages/module/build-js-for-docs.js +++ /dev/null @@ -1,41 +0,0 @@ -const fs = require('fs'); -const fse = require('fs-extra'); -const path = require('path'); - -const charts_scss = path.join(__dirname, 'build/css/tokens-charts.scss'); -const charts_dark_scss = path.join(__dirname, 'build/css/tokens-charts-dark.scss'); -const dark_scss = path.join(__dirname, 'build/css/tokens-dark.scss'); -const default_scss = path.join(__dirname, 'build/css/tokens-default.scss'); -const palette_scss = path.join(__dirname, 'build/css/tokens-palette.scss'); - -const chartsFileContents = fs.readFileSync(charts_scss, 'utf-8'); -const chartsDarkFileContents = fs.readFileSync(charts_dark_scss, 'utf-8'); -const darkFileContents = fs.readFileSync(dark_scss, 'utf-8'); -const defaultFileContents = fs.readFileSync(default_scss, 'utf-8'); -const paletteFileContents = fs.readFileSync(palette_scss, 'utf-8'); - -const scssAsJson = {} - -const addToMap = (line) => { - const trimmedLine = line.trimStart(); - if (trimmedLine.startsWith("--")) { - const varName = trimmedLine.substring(0, trimmedLine.indexOf(':')); - - // value should have var( ) stripped from it, so it's just the variable name - // if no var ( ) then just the value should be stored in the map - let value = trimmedLine.substring(trimmedLine.indexOf(':')+1, trimmedLine.indexOf(';')).trimStart(); - if (value.startsWith('var(')) { - value = value.substring(value.indexOf('(')+1, value.indexOf(')')); - } - scssAsJson[varName] = value - } -} - -paletteFileContents.split(/\r?\n/).forEach(line => addToMap(line)); -defaultFileContents.split(/\r?\n/).forEach(line => addToMap(line)); -darkFileContents.split(/\r?\n/).forEach(line => addToMap(line)); -chartsFileContents.split(/\r?\n/).forEach(line => addToMap(line)); -chartsDarkFileContents.split(/\r?\n/).forEach(line => addToMap(line)); - -fse.writeJson(path.join(__dirname, 'patternfly-docs/scssAsJson.json'), scssAsJson); - diff --git a/packages/module/build.js b/packages/module/build.js index 289819f..ca9205a 100644 --- a/packages/module/build.js +++ b/packages/module/build.js @@ -2,22 +2,24 @@ const StyleDictionary = require('style-dictionary'); const config = require('./config.default.json'); // Adjust the path if necessary const basePxFontSize = config.basePxFontSize || 16; +const getTokenLayer = ({ filePath }) => { + if (filePath.includes('semantic.json')) return ['semantic', 'colors']; + if (filePath.includes('semantic.dark.json')) return ['semantic', 'colors']; + if (filePath.includes('semantic.dimension.json')) return ['semantic', 'dimension']; + if (filePath.includes('semantic.motion.json')) return ['semantic', 'motion']; + if (filePath.includes('base.json')) return ['base', 'colors']; + if (filePath.includes('base.dark.json')) return ['base', 'colors']; + if (filePath.includes('base.dimension.json')) return ['base', 'dimension']; + if (filePath.includes('base.motion.json')) return ['base', 'motion']; + if (filePath.includes('chart')) return ['chart']; + if (filePath.includes('palette.color.json')) return ['palette']; + return ['palette']; +}; +// returns subdirectory within 'tokens' directory (ex: default, dark, etc) +const getTheme = ({ filePath }) => /tokens\/([^\/]*)\//gm.exec(filePath)[1]; const build = (selector) => { const { fileHeader, formattedVariables, sortByName } = StyleDictionary.formatHelpers; - const getTokenLayer = ({ filePath }) => { - if (filePath.includes('semantic.json')) return ['semantic', 'colors']; - if (filePath.includes('semantic.dark.json')) return ['semantic', 'colors']; - if (filePath.includes('semantic.dimension.json')) return ['semantic', 'dimension']; - if (filePath.includes('semantic.motion.json')) return ['semantic', 'motion']; - if (filePath.includes('base.json')) return ['base', 'colors']; - if (filePath.includes('base.dark.json')) return ['base', 'colors']; - if (filePath.includes('base.dimension.json')) return ['base', 'dimension']; - if (filePath.includes('base.motion.json')) return ['base', 'motion']; - if (filePath.includes('chart')) return ['chart']; - if (filePath.includes('palette.color.json')) return ['palette']; - return ['palette']; - }; console.log('Build started...'); console.log('\n============================'); @@ -57,13 +59,15 @@ const build = (selector) => { }; dictionary.allTokens.map((token) => { // determine token type based on tokens filepath + const theme = getTheme(token); const layer = getTokenLayer(token); let insertLayer = tokens; while (layer.length) { insertLayer = insertLayer[layer.shift()]; } // assign each token object to token.name - insertLayer[token.name] = token; + insertLayer[token.name] = {}; + insertLayer[token.name][theme] = token; // attach references to build token chain if (dictionary.usesReference(token.original.value)) { token.references = dictionary.getReferences(token.original.value); diff --git a/packages/module/package.json b/packages/module/package.json index 629681b..d033fe4 100644 --- a/packages/module/package.json +++ b/packages/module/package.json @@ -5,14 +5,13 @@ "main": "dist/esm/index.js", "module": "dist/esm/index.js", "scripts": { - "build": "yarn build:js-from-scss", + "build": "yarn build:scss", "build:fed:packages": "node generate-fed-package-json.js", "build:scss": "node ./cli.js", - "build:js-from-scss": "node ./build-js-for-docs.js", "build:plugin": "webpack", "clean": "rimraf dist", "docs:develop": "pf-docs-framework start", - "docs:build": "yarn build:js-from-scss && pf-docs-framework build all --output public", + "docs:build": "yarn build:scss && pf-docs-framework build all --output public", "docs:serve": "pf-docs-framework serve public --port 5000", "docs:screenshots": "pf-docs-framework screenshots --urlPrefix http://localhost:5000", "test:a11y": "patternfly-a11y --config patternfly-a11y.config", diff --git a/packages/module/patternfly-docs/content/token-layers-dark.json b/packages/module/patternfly-docs/content/token-layers-dark.json index 0c79d7f..d63f178 100644 --- a/packages/module/patternfly-docs/content/token-layers-dark.json +++ b/packages/module/patternfly-docs/content/token-layers-dark.json @@ -2,50939 +2,52611 @@ "semantic": { "colors": { "pf-t--global--icon--color--brand--default": { - "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--icon--color--brand--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "brand", - "state": "default" - }, - "path": [ - "global", - "icon", - "color", - "brand", - "default" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--icon--color--brand--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--brand--hover": { - "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", "type": "color", - "value": "{global.dark.color.brand.300}" - }, - "name": "pf-t--global--icon--color--brand--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "brand", - "state": "hover" - }, - "path": [ - "global", - "icon", - "color", - "brand", - "hover" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.brand.300}" + }, + "name": "pf-t--global--icon--color--brand--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--color--brand--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "300" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--brand--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--brand--clicked": { - "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", "type": "color", - "value": "{global.dark.color.brand.300}" - }, - "name": "pf-t--global--icon--color--brand--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "brand", - "state": "clicked" - }, - "path": [ - "global", - "icon", - "color", - "brand", - "clicked" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.brand.300}" + }, + "name": "pf-t--global--icon--color--brand--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--color--brand--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "300" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--brand--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--on-brand--default": { - "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--on-brand--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "on-brand", - "state": "default" - }, - "path": [ - "global", - "icon", - "color", - "on-brand", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--on-brand--hover": { - "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--on-brand--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "on-brand", - "state": "hover" - }, - "path": [ - "global", - "icon", - "color", - "on-brand", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--on-brand--clicked": { - "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--on-brand--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "on-brand", - "state": "clicked" - }, - "path": [ - "global", - "icon", - "color", - "on-brand", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--favorite--default": { - "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", - "value": "{global.color.favorite.default}" - }, - "name": "pf-t--global--icon--color--favorite--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "favorite", - "state": "default" - }, - "path": [ - "global", - "icon", - "color", - "favorite", - "default" - ], - "references": [ - { - "description": "Use as the default color for elements that have been favorited", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.favorite.default}" + }, + "name": "pf-t--global--icon--color--favorite--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "default" + ], + "references": [ + { "description": "Use as the default color for elements that have been favorited", "type": "color", - "value": "{global.dark.color.favorite.100}" - }, - "name": "pf-t--global--color--favorite--default", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "default" - }, - "path": [ - "global", - "color", - "favorite", - "default" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that have been favorited", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--favorite--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "favorite", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "favorite", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.favorite.100}" + }, + "name": "pf-t--global--color--favorite--default", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "default" + }, + "path": [ + "global", + "color", + "favorite", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--favorite--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--favorite--hover": { - "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", - "value": "{global.color.favorite.hover}" - }, - "name": "pf-t--global--icon--color--favorite--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "favorite", - "state": "hover" - }, - "path": [ - "global", - "icon", - "color", - "favorite", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for elements that have been favorited", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.favorite.hover}" + }, + "name": "pf-t--global--icon--color--favorite--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "hover" + ], + "references": [ + { "description": "Use as the hover state for elements that have been favorited", "type": "color", - "value": "{global.dark.color.favorite.200}" - }, - "name": "pf-t--global--color--favorite--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "favorite", - "hover" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have been favorited", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--favorite--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "favorite", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "favorite", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - } - ] + "value": "{global.dark.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "favorite", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--favorite--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--favorite--clicked": { - "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", - "value": "{global.color.favorite.clicked}" - }, - "name": "pf-t--global--icon--color--favorite--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "favorite", - "state": "clicked" - }, - "path": [ - "global", - "icon", - "color", - "favorite", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for elements that have been favorited", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.favorite.clicked}" + }, + "name": "pf-t--global--icon--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for elements that have been favorited", "type": "color", - "value": "{global.dark.color.favorite.200}" - }, - "name": "pf-t--global--color--favorite--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "favorite", - "clicked" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have been favorited", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--favorite--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "favorite", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "favorite", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "favorite", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--favorite--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--success--default": { - "description": "Use as the default color for text that communicates a success status.", - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that communicates a success status.", "type": "color", - "value": "{global.color.status.success.default}" - }, - "name": "pf-t--global--icon--color--status--success--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates a success status.", "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--icon--color--status--success--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", - "value": "{global.dark.color.status.success.100}" - }, - "name": "pf-t--global--color--status--success--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "success", - "default" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--dark--color--status--success--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--dark--color--status--success--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "100" + ], + "references": [ + { "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] - } - ] + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--success--hover": { - "description": "Use as the hover state color for text that communicates a success status.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that communicates a success status.", "type": "color", - "value": "{global.color.status.success.hover}" - }, - "name": "pf-t--global--icon--color--status--success--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a success status.", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates a success status.", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--icon--color--status--success--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys a success status.", "type": "color", - "value": "{global.dark.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "success", - "hover" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--success--clicked": { - "description": "Use as the clicked state color for text that communicates a success status.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that communicates a success status.", "type": "color", - "value": "{global.color.status.success.clicked}" - }, - "name": "pf-t--global--icon--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a success status.", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates a success status.", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--icon--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", - "value": "{global.dark.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-success--default": { - "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-success--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-success", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-success--hover": { - "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-success--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-success", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-success--clicked": { - "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-success--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-success", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--warning--default": { - "description": "Use as the default color for text that communicates a warning status.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that communicates a warning status.", "type": "color", - "value": "{global.color.status.warning.default}" - }, - "name": "pf-t--global--icon--color--status--warning--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "warning", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates a warning status.", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.warning.default}" + }, + "name": "pf-t--global--icon--color--status--warning--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", - "value": "{global.dark.color.status.warning.100}" - }, - "name": "pf-t--global--color--status--warning--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "warning", - "default" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--status--warning--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.warning.100}" + }, + "name": "pf-t--global--color--status--warning--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--status--warning--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--warning--hover": { - "description": "Use as the hover state color for text that communicates a warning status.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that communicates a warning status.", "type": "color", - "value": "{global.color.status.warning.hover}" - }, - "name": "pf-t--global--icon--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a warning status.", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates a warning status.", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.warning.hover}" + }, + "name": "pf-t--global--icon--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", - "value": "{global.dark.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--warning--clicked": { - "description": "Use as the clicked state color for text that communicates a warning status.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that communicates a warning status.", "type": "color", - "value": "{global.color.status.warning.clicked}" - }, - "name": "pf-t--global--icon--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a warning status.", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates a warning status.", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.warning.clicked}" + }, + "name": "pf-t--global--icon--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", - "value": "{global.dark.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-warning--default": { - "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-warning--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-warning", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-warning--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-warning--hover": { - "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-warning--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-warning", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-warning--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--status--on-warning--clicked": { - "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } + }, + "pf-t--global--icon--color--status--on-warning--clicked": { + "dark": { "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-warning--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-warning", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-warning--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--danger--default": { - "description": "Use as the default color for icons that convey danger, like in alerts or banners.", - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that convey danger, like in alerts or banners.", "type": "color", - "value": "{global.color.status.danger.default}" - }, - "name": "pf-t--global--icon--color--status--danger--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that convey danger, like in alerts or banners.", "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--icon--color--status--danger--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "{global.dark.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--global--dark--color--status--danger--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--status--danger--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "100" + ], + "references": [ + { "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] - } - ] - } - ] + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--danger--hover": { - "description": "Use as the hover state for icons that indicate danger.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state for icons that indicate danger.", "type": "color", - "value": "{global.color.status.danger.hover}" - }, - "name": "pf-t--global--icon--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a danger status.", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for icons that indicate danger.", "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--icon--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "{global.dark.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - } - ] + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--danger--clicked": { - "description": "Use as the clicked state for icons that indicate danger.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state for icons that indicate danger.", "type": "color", - "value": "{global.color.status.danger.clicked}" - }, - "name": "pf-t--global--icon--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a danger status.", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for icons that indicate danger.", "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--icon--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "{global.dark.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - } - ] + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-danger--default": { - "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-danger--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-danger", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-danger--hover": { - "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-danger--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-danger", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-danger--clicked": { - "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-danger--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-danger", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--info--default": { - "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", "type": "color", - "value": "{global.color.status.info.default}" - }, - "name": "pf-t--global--icon--color--status--info--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--icon--color--status--info--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", - "value": "{global.dark.color.status.info.100}" - }, - "name": "pf-t--global--color--status--info--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "info", - "default" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--color--status--info--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--status--info--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "100" + ], + "references": [ + { "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - } - ] + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--info--hover": { - "description": "Use as the hover state for icons that identify informational messages.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state for icons that identify informational messages.", "type": "color", - "value": "{global.color.status.info.hover}" - }, - "name": "pf-t--global--icon--color--status--info--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys an info status.", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for icons that identify informational messages.", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--icon--color--status--info--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys an info status.", "type": "color", - "value": "{global.dark.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "info", - "hover" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - } - ] + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--info--clicked": { - "description": "Use as the clicked state for icons that identify informational messages.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state for icons that identify informational messages.", "type": "color", - "value": "{global.color.status.info.clicked}" - }, - "name": "pf-t--global--icon--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys an info status.", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for icons that identify informational messages.", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--icon--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", - "value": "{global.dark.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - } - ] + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-info--default": { - "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-info--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-info", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-info--hover": { - "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-info--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-info", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-info--clicked": { - "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-info--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-info", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "clicked" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--custom--default": { - "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.color.status.custom.default}" - }, - "name": "pf-t--global--icon--color--status--custom--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--icon--color--status--custom--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "default" + ], + "references": [ + { "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.dark.color.status.custom.100}" - }, - "name": "pf-t--global--color--status--custom--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "custom", - "default" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--dark--color--status--custom--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--dark--color--status--custom--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "100" + ], + "references": [ + { "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] - } - ] + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--custom--hover": { - "description": "Use as the hover state for icons that convey generic status with no associated severity.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state for icons that convey generic status with no associated severity.", "type": "color", - "value": "{global.color.status.custom.hover}" - }, - "name": "pf-t--global--icon--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for icons that convey generic status with no associated severity.", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--icon--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.dark.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--custom--clicked": { - "description": "Use as the clicked state for icons that convey generic status with no associated severity.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state for icons that convey generic status with no associated severity.", "type": "color", - "value": "{global.color.status.custom.clicked}" - }, - "name": "pf-t--global--icon--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for icons that convey generic status with no associated severity.", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--icon--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.dark.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-custom--default": { - "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-custom--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-custom", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "default" + ], + "references": [ + { + "description": "Use as the color for icons that are placed on an inverse background color", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-custom--hover": { - "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-custom--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-custom", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-custom--clicked": { - "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-custom--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-custom", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--unread--on-default--default": { - "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-default--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-default", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--unread--on-default--hover": { - "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-default--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-default", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--unread--on-default--clicked": { - "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-default--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-default", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--unread--on-attention--default": { - "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-attention--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-attention", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--unread--on-attention--hover": { - "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-attention--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-attention", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--unread--on-attention--clicked": { - "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-attention--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-attention", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } + }, "pf-t--global--icon--color--regular": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.dark.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--dark--icon--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "100" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--icon--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--subtle": { - "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", "type": "color", - "value": "{global.dark.icon.color.200}" - }, - "name": "pf-t--global--icon--color--subtle", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "subtle" - }, - "path": [ - "global", - "icon", - "color", - "subtle" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.200}" + }, + "name": "pf-t--global--icon--color--subtle", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "icon", + "color", + "subtle" + ], + "references": [ + { "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--icon--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "200" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--icon--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--inverse": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--disabled": { - "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", "type": "color", - "value": "{global.dark.color.disabled.200}" - }, - "name": "pf-t--global--icon--color--disabled", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "disabled" - }, - "path": [ - "global", - "icon", - "color", - "disabled" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", "type": "color", - "value": "#707070", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.disabled.200}" + }, + "name": "pf-t--global--icon--color--disabled", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "icon", + "color", + "disabled" + ], + "references": [ + { "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--dark--color--disabled--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "200" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] + "value": "{color.gray.50}" + }, + "name": "pf-t--global--dark--color--disabled--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--on-disabled": { - "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", "type": "color", - "value": "{global.dark.color.disabled.300}" - }, - "name": "pf-t--global--icon--color--on-disabled", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "on-disabled" - }, - "path": [ - "global", - "icon", - "color", - "on-disabled" - ], - "references": [ - { + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.disabled.300}" + }, + "name": "pf-t--global--icon--color--on-disabled", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-disabled" + }, + "path": [ + "global", + "icon", + "color", + "on-disabled" + ], + "references": [ + { "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--color--disabled--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "300" - ], - "references": [ - { + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - } - ] + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--color--disabled--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--severity--undefined--default": { - "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", "type": "color", - "value": "{global.dark.color.severity.undefined.100}" - }, - "name": "pf-t--global--icon--color--severity--undefined--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "undefined" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "undefined", - "default" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.severity.undefined.100}" + }, + "name": "pf-t--global--icon--color--severity--undefined--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "undefined" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "undefined", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--color--severity--undefined--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "undefined" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "undefined", - "100" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--color--severity--undefined--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "undefined" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "undefined", + "100" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--severity--none--default": { - "description": "Use as the default color for severity icons that identify no issues.", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for severity icons that identify no issues.", "type": "color", - "value": "{global.dark.color.severity.none.100}" - }, - "name": "pf-t--global--icon--color--severity--none--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "none" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "none", - "default" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify no issues.", "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.severity.none.100}" + }, + "name": "pf-t--global--icon--color--severity--none--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "none" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "none", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--severity--none--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "none" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "none", - "100" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--severity--none--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "none" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "none", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--severity--minor--default": { - "description": "Use as the default color for severity icons that identify issues of minor severity.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for severity icons that identify issues of minor severity.", "type": "color", - "value": "{global.dark.color.severity.minor.100}" - }, - "name": "pf-t--global--icon--color--severity--minor--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "minor" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "minor", - "default" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify issues of minor severity.", "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--dark--color--severity--minor--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "minor" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "minor", - "100" - ], - "references": [ - { + "value": "{global.dark.color.severity.minor.100}" + }, + "name": "pf-t--global--icon--color--severity--minor--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "minor" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "minor", + "default" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--color--severity--minor--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "minor" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "minor", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--severity--moderate--default": { - "description": "Use as the default color for severity icons that identify issues of moderate severity.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for severity icons that identify issues of moderate severity.", "type": "color", - "value": "{global.dark.color.severity.moderate.100}" - }, - "name": "pf-t--global--icon--color--severity--moderate--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "moderate" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "moderate", - "default" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify issues of moderate severity.", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.severity.moderate.100}" + }, + "name": "pf-t--global--icon--color--severity--moderate--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "moderate" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "moderate", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--severity--moderate--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "moderate" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "moderate", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--severity--moderate--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "moderate" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "moderate", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--severity--important--default": { - "description": "Use as the default color for severity icons that identify issues of important severity.", - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for severity icons that identify issues of important severity.", "type": "color", - "value": "{global.dark.color.severity.important.100}" - }, - "name": "pf-t--global--icon--color--severity--important--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "important" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "important", - "default" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify issues of important severity.", "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.severity.important.100}" + }, + "name": "pf-t--global--icon--color--severity--important--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "important" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "important", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--global--dark--color--severity--important--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "important" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "important", - "100" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] + "value": "{color.orange.40}" + }, + "name": "pf-t--global--dark--color--severity--important--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "important" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "important", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--severity--critical--default": { - "description": "Use as the default color for severity icons that identify issues of critical severity.", - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for severity icons that identify issues of critical severity.", "type": "color", - "value": "{global.dark.color.severity.critical.100}" - }, - "name": "pf-t--global--icon--color--severity--critical--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "critical" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "critical", - "default" - ], - "references": [ - { + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify issues of critical severity.", "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.severity.critical.100}" + }, + "name": "pf-t--global--icon--color--severity--critical--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "critical" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "critical", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--global--dark--color--severity--critical--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "critical" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "critical", - "100" - ], - "references": [ - { + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--nonstatus--on-red--default": { - "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--severity--critical--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "critical" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "critical", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } + ] + } + }, + "pf-t--global--icon--color--nonstatus--on-red--default": { + "dark": { "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-red--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-red", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-red--hover": { - "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-red--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-red", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-red--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-red--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-red", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-orangered--default": { - "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orangered--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orangered", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-orangered--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orangered--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orangered", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-orangered--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orangered--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orangered", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-orange--default": { - "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orange--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orange", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-orange--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orange--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orange", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-orange--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orange--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orange", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-yellow--default": { - "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-yellow--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-yellow", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-yellow--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-yellow--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-yellow", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-yellow--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-yellow--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-yellow", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-green--default": { - "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-green--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-green", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-green--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-green--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-green", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-green--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-green--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-green", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-teal--default": { - "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-teal--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-teal", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-teal--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-teal--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-teal", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-teal--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-teal--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-teal", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-blue--default": { - "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-blue--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-blue", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-blue--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-blue--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-blue", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-blue--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-blue--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-blue", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-purple--default": { - "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-purple--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-purple", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-purple--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-purple--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-purple", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-purple--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-purple--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-purple", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-gray--default": { - "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-gray--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-gray", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-gray--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-gray--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-gray", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-gray--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-gray--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-gray", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.dark.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--brand--default": { - "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", "type": "color", - "value": "{global.color.brand.default}" - }, - "name": "pf-t--global--border--color--brand--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "brand", - "state": "default" - }, - "path": [ - "global", - "border", - "color", - "brand", - "default" - ], - "references": [ - { - "description": "Use this color for elements that you want to reinforce your brand", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--border--color--brand--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "border", + "color", + "brand", + "default" + ], + "references": [ + { "description": "Use this color for elements that you want to reinforce your brand", "type": "color", - "value": "{global.dark.color.brand.100}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--brand--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.brand.100}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--brand--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "100" + ], + "references": [ + { "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - } - ] + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--brand--hover": { - "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", - "value": "{global.color.brand.hover}" - }, - "name": "pf-t--global--border--color--brand--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "brand", - "state": "hover" - }, - "path": [ - "global", - "border", - "color", - "brand", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for elements that have a branded background color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--border--color--brand--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "border", + "color", + "brand", + "hover" + ], + "references": [ + { "description": "Use as the hover state for elements that have a branded background color", "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - } - ] + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--brand--clicked": { - "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", - "value": "{global.color.brand.clicked}" - }, - "name": "pf-t--global--border--color--brand--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "brand", - "state": "clicked" - }, - "path": [ - "global", - "border", - "color", - "brand", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for elements that have a brand background color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--border--color--brand--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "border", + "color", + "brand", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for elements that have a brand background color", "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - } - ] + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--success--default": { - "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.success.default}" - }, - "name": "pf-t--global--border--color--status--success--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "border", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--border--color--status--success--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", - "value": "{global.dark.color.status.success.100}" - }, - "name": "pf-t--global--color--status--success--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "success", - "default" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--dark--color--status--success--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--dark--color--status--success--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "100" + ], + "references": [ + { "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] - } - ] + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--success--hover": { - "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", - "value": "{global.color.status.success.hover}" - }, - "name": "pf-t--global--border--color--status--success--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "border", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a success status.", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--border--color--status--success--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys a success status.", "type": "color", - "value": "{global.dark.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "success", - "hover" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--success--clicked": { - "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", - "value": "{global.color.status.success.clicked}" - }, - "name": "pf-t--global--border--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "border", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a success status.", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--border--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", - "value": "{global.dark.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--warning--default": { - "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.warning.default}" - }, - "name": "pf-t--global--border--color--status--warning--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "border", - "color", - "status", - "warning", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.warning.default}" + }, + "name": "pf-t--global--border--color--status--warning--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", - "value": "{global.dark.color.status.warning.100}" - }, - "name": "pf-t--global--color--status--warning--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "warning", - "default" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--status--warning--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.warning.100}" + }, + "name": "pf-t--global--color--status--warning--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--status--warning--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--warning--hover": { - "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.warning.hover}" - }, - "name": "pf-t--global--border--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "border", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a warning status.", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.warning.hover}" + }, + "name": "pf-t--global--border--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", - "value": "{global.dark.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--warning--clicked": { - "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.warning.clicked}" - }, - "name": "pf-t--global--border--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "border", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a warning status.", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.warning.clicked}" + }, + "name": "pf-t--global--border--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", - "value": "{global.dark.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--danger--default": { - "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.danger.default}" - }, - "name": "pf-t--global--border--color--status--danger--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "border", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--border--color--status--danger--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "{global.dark.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--global--dark--color--status--danger--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--status--danger--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "100" + ], + "references": [ + { "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] - } - ] - } - ] + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--danger--hover": { - "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.danger.hover}" - }, - "name": "pf-t--global--border--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "border", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a danger status.", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--border--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "{global.dark.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", + "type": "color", + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - } - ] + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--danger--clicked": { - "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.danger.clicked}" - }, - "name": "pf-t--global--border--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "border", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a danger status.", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--border--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "{global.dark.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - } - ] + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--info--default": { - "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.info.default}" - }, - "name": "pf-t--global--border--color--status--info--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "border", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--border--color--status--info--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", - "value": "{global.dark.color.status.info.100}" - }, - "name": "pf-t--global--color--status--info--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "info", - "default" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--color--status--info--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--status--info--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "100" + ], + "references": [ + { "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - } - ] + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--info--hover": { - "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.info.hover}" - }, - "name": "pf-t--global--border--color--status--info--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "border", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys an info status.", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--border--color--status--info--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys an info status.", "type": "color", - "value": "{global.dark.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "info", - "hover" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - } - ] + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--info--clicked": { - "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.info.clicked}" - }, - "name": "pf-t--global--border--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "border", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys an info status.", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--border--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", - "value": "{global.dark.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - } - ] + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--custom--default": { - "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.custom.default}" - }, - "name": "pf-t--global--border--color--status--custom--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "border", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--border--color--status--custom--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "default" + ], + "references": [ + { "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.dark.color.status.custom.100}" - }, - "name": "pf-t--global--color--status--custom--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "custom", - "default" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--dark--color--status--custom--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--dark--color--status--custom--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "100" + ], + "references": [ + { "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] - } - ] + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--custom--hover": { - "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.custom.hover}" - }, - "name": "pf-t--global--border--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "border", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--border--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.dark.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--custom--clicked": { - "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.custom.clicked}" - }, - "name": "pf-t--global--border--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "border", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--border--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.dark.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--default": { - "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", - "value": "{global.dark.border.color.200}" - }, - "name": "pf-t--global--border--color--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "default" - }, - "path": [ - "global", - "border", - "color", - "default" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.border.color.200}" + }, + "name": "pf-t--global--border--color--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "default" + }, + "path": [ + "global", + "border", + "color", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--border--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "border", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "border", - "color", - "200" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--border--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "border", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "border", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--hover": { - "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", - "value": "{global.dark.color.brand.100}" - }, - "name": "pf-t--global--border--color--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "hover" - }, - "path": [ - "global", - "border", - "color", - "hover" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.brand.100}" + }, + "name": "pf-t--global--border--color--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "hover" + }, + "path": [ + "global", + "border", + "color", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--brand--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "100" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--brand--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--clicked": { - "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--border--color--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "clicked" - }, - "path": [ - "global", - "border", - "color", - "clicked" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--border--color--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "clicked" + }, + "path": [ + "global", + "border", + "color", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--disabled": { - "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", - "value": "{global.dark.color.disabled.200}" - }, - "name": "pf-t--global--border--color--disabled", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "disabled" - }, - "path": [ - "global", - "border", - "color", - "disabled" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", - "value": "#707070", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.disabled.200}" + }, + "name": "pf-t--global--border--color--disabled", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "border", + "color", + "disabled" + ], + "references": [ + { "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--dark--color--disabled--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "200" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--alt": { - "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", - "type": "color", - "value": "{global.background.color.primary.default}" - }, - "name": "pf-t--global--border--color--alt", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "alt" - }, - "path": [ - "global", - "border", - "color", - "alt" - ], - "references": [ - { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "value": "{color.gray.50}" + }, + "name": "pf-t--global--dark--color--disabled--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + } + }, + "pf-t--global--border--color--alt": { + "dark": { + "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.background.color.primary.default}" + }, + "name": "pf-t--global--border--color--alt", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "alt" + }, + "path": [ + "global", + "border", + "color", + "alt" + ], + "references": [ + { "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", "type": "color", - "value": "{global.dark.background.color.200}" - }, - "name": "pf-t--global--background--color--primary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "primary", - "default" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] - } - ] + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--on-secondary": { - "description": "Use on borders/dividers that are placed on a secondary bkg color.", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use on borders/dividers that are placed on a secondary bkg color.", "type": "color", - "value": "{global.dark.border.color.200}" - }, - "name": "pf-t--global--border--color--on-secondary", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "on-secondary" - }, - "path": [ - "global", - "border", - "color", - "on-secondary" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use on borders/dividers that are placed on a secondary bkg color.", "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.border.color.200}" + }, + "name": "pf-t--global--border--color--on-secondary", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "on-secondary" + }, + "path": [ + "global", + "border", + "color", + "on-secondary" + ], + "references": [ + { "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--border--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "border", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "border", - "color", - "200" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--border--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "border", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "border", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--red--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.red.100}" - }, - "name": "pf-t--global--border--color--nonstatus--red--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "red", - "default" - ], - "references": [ - { + "value": "#f9a8a8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.red.100}" + }, + "name": "pf-t--global--border--color--nonstatus--red--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.red.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "100" - ], - "references": [ - { + "value": "#f9a8a8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - } - ] - } - ] + "value": "{color.red.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--red--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.red.200}" - }, - "name": "pf-t--global--border--color--nonstatus--red--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "red", - "hover" - ], - "references": [ - { + "value": "#fbc5c5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.red.200}" + }, + "name": "pf-t--global--border--color--nonstatus--red--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.red.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { + "value": "#fbc5c5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - } - ] - } - ] + "value": "{color.red.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--red--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.red.200}" - }, - "name": "pf-t--global--border--color--nonstatus--red--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "red", - "clicked" - ], - "references": [ - { + "value": "#fbc5c5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.red.200}" + }, + "name": "pf-t--global--border--color--nonstatus--red--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.red.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { + "value": "#fbc5c5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - } - ] - } - ] + "value": "{color.red.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--orangered--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.orangered.100}" - }, - "name": "pf-t--global--border--color--nonstatus--orangered--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orangered", - "default" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.orangered.100}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "100" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - } - ] + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--orangered--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.orangered.200}" - }, - "name": "pf-t--global--border--color--nonstatus--orangered--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orangered", - "hover" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - } - ] + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--orangered--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.orangered.200}" - }, - "name": "pf-t--global--border--color--nonstatus--orangered--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orangered", - "clicked" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - } - ] + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--orange--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.orange.100}" - }, - "name": "pf-t--global--border--color--nonstatus--orange--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orange", - "default" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.orange.100}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "100" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] + "value": "{color.orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--orange--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.orange.200}" - }, - "name": "pf-t--global--border--color--nonstatus--orange--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orange", - "hover" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - } - ] + "value": "{color.orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--orange--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.orange.200}" - }, - "name": "pf-t--global--border--color--nonstatus--orange--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orange", - "clicked" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - } - ] + "value": "{color.orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--yellow--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.yellow.100}" - }, - "name": "pf-t--global--border--color--nonstatus--yellow--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "yellow", - "default" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.yellow.100}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--yellow--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.yellow.200}" - }, - "name": "pf-t--global--border--color--nonstatus--yellow--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "yellow", - "hover" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.yellow.200}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--yellow--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.yellow.200}" - }, - "name": "pf-t--global--border--color--nonstatus--yellow--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "yellow", - "clicked" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.yellow.200}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--green--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.green.100}" - }, - "name": "pf-t--global--border--color--nonstatus--green--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "green", - "default" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.green.100}" + }, + "name": "pf-t--global--border--color--nonstatus--green--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "100" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--green--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.green.200}" - }, - "name": "pf-t--global--border--color--nonstatus--green--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "green", - "hover" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.green.200}" + }, + "name": "pf-t--global--border--color--nonstatus--green--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - } - ] + "value": "{color.green.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--green--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.green.200}" - }, - "name": "pf-t--global--border--color--nonstatus--green--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "green", - "clicked" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.green.200}" + }, + "name": "pf-t--global--border--color--nonstatus--green--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - } - ] + "value": "{color.green.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--teal--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.teal.100}" - }, - "name": "pf-t--global--border--color--nonstatus--teal--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "teal", - "default" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.teal.100}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "100" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--teal--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + }, + "pf-t--global--border--color--nonstatus--teal--hover": { + "dark": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.teal.200}" - }, - "name": "pf-t--global--border--color--nonstatus--teal--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "teal", - "hover" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.teal.200}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - } - ] + "value": "{color.teal.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--teal--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.teal.200}" - }, - "name": "pf-t--global--border--color--nonstatus--teal--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "teal", - "clicked" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.teal.200}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - } - ] + "value": "{color.teal.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--blue--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.blue.100}" - }, - "name": "pf-t--global--border--color--nonstatus--blue--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "blue", - "default" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.blue.100}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "100" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--blue--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.blue.200}" - }, - "name": "pf-t--global--border--color--nonstatus--blue--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "blue", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", + "type": "color", + "value": "{global.dark.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--blue--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.blue.200}" - }, - "name": "pf-t--global--border--color--nonstatus--blue--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "blue", - "clicked" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--purple--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.purple.100}" - }, - "name": "pf-t--global--border--color--nonstatus--purple--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "purple", - "default" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.purple.100}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "100" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--purple--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.purple.200}" - }, - "name": "pf-t--global--border--color--nonstatus--purple--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "purple", - "hover" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--purple--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.purple.200}" - }, - "name": "pf-t--global--border--color--nonstatus--purple--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "purple", - "clicked" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--gray--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.gray.100}" - }, - "name": "pf-t--global--border--color--nonstatus--gray--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "gray", - "default" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.gray.100}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "100" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--gray--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.gray.200}" - }, - "name": "pf-t--global--border--color--nonstatus--gray--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "gray", - "hover" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--gray--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{color.gray.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + } + }, + "pf-t--global--border--color--nonstatus--gray--clicked": { + "dark": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", - "value": "{global.dark.color.nonstatus.gray.200}" - }, - "name": "pf-t--global--border--color--nonstatus--gray--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "gray", - "clicked" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] + "value": "{color.gray.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--box-shadow--color--sm": { - "description": "Use as the color of small box-shadows.", - "type": "color", - "value": "rgba(0, 0, 0, 0.5000)", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the color of small box-shadows.", "type": "color", - "value": "{global.dark.box-shadow.color.100}" - }, - "name": "pf-t--global--box-shadow--color--sm", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "sm" - }, - "path": [ - "global", - "box-shadow", - "color", - "sm" - ], - "references": [ - { + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of small box-shadows.", "type": "color", - "value": "rgba(0, 0, 0, 0.5000)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.box-shadow.color.100}" + }, + "name": "pf-t--global--box-shadow--color--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "color", + "sm" + ], + "references": [ + { "type": "color", - "value": "rgba(0, 0, 0, 0.5000)" - }, - "name": "pf-t--global--dark--box-shadow--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "box-shadow", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "box-shadow", - "color", - "100" - ] - } - ] + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)" + }, + "name": "pf-t--global--dark--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "box-shadow", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "box-shadow", + "color", + "100" + ] + } + ] + } }, "pf-t--global--box-shadow--color--md": { - "description": "Use as the color of medium box-shadows.", - "type": "color", - "value": "rgba(0, 0, 0, 0.5000)", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the color of medium box-shadows.", "type": "color", - "value": "{global.dark.box-shadow.color.100}" - }, - "name": "pf-t--global--box-shadow--color--md", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "md" - }, - "path": [ - "global", - "box-shadow", - "color", - "md" - ], - "references": [ - { + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of medium box-shadows.", "type": "color", - "value": "rgba(0, 0, 0, 0.5000)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.box-shadow.color.100}" + }, + "name": "pf-t--global--box-shadow--color--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "color", + "md" + ], + "references": [ + { "type": "color", - "value": "rgba(0, 0, 0, 0.5000)" - }, - "name": "pf-t--global--dark--box-shadow--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "box-shadow", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "box-shadow", - "color", - "100" - ] - } - ] + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)" + }, + "name": "pf-t--global--dark--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "box-shadow", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "box-shadow", + "color", + "100" + ] + } + ] + } }, "pf-t--global--box-shadow--color--lg": { - "description": "Use as the color of large box-shadows.", - "type": "color", - "value": "rgba(0, 0, 0, 0.5000)", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the color of large box-shadows.", "type": "color", - "value": "{global.dark.box-shadow.color.100}" - }, - "name": "pf-t--global--box-shadow--color--lg", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "lg" - }, - "path": [ - "global", - "box-shadow", - "color", - "lg" - ], - "references": [ - { + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of large box-shadows.", "type": "color", - "value": "rgba(0, 0, 0, 0.5000)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.box-shadow.color.100}" + }, + "name": "pf-t--global--box-shadow--color--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "color", + "lg" + ], + "references": [ + { "type": "color", - "value": "rgba(0, 0, 0, 0.5000)" - }, - "name": "pf-t--global--dark--box-shadow--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "box-shadow", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "box-shadow", - "color", - "100" - ] - } - ] + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)" + }, + "name": "pf-t--global--dark--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "box-shadow", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "box-shadow", + "color", + "100" + ] + } + ] + } }, "pf-t--global--background--color--highlight--default": { - "description": "Use as the background color for highlighted elements", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the background color for highlighted elements", "type": "color", - "value": "{global.dark.background.color.highlight.100}" - }, - "name": "pf-t--global--background--color--highlight--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "default" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the background color for highlighted elements", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.highlight.100}" + }, + "name": "pf-t--global--background--color--highlight--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--background--color--highlight--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "highlight" - }, - "path": [ - "global", - "dark", - "background", - "color", - "highlight", - "100" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--background--color--highlight--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "highlight" + }, + "path": [ + "global", + "dark", + "background", + "color", + "highlight", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--highlight--clicked": { - "description": "Use as the active state for for highlighted elements", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the active state for for highlighted elements", "type": "color", - "value": "{global.dark.background.color.highlight.200}" - }, - "name": "pf-t--global--background--color--highlight--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "clicked" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "clicked" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the active state for for highlighted elements", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.highlight.200}" + }, + "name": "pf-t--global--background--color--highlight--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--background--color--highlight--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "highlight" - }, - "path": [ - "global", - "dark", - "background", - "color", - "highlight", - "200" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--background--color--highlight--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "highlight" + }, + "path": [ + "global", + "dark", + "background", + "color", + "highlight", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--primary--default": { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", "type": "color", - "value": "{global.dark.background.color.200}" - }, - "name": "pf-t--global--background--color--primary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "primary", - "default" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--primary--hover": { - "description": "Use as the hover state for primary backgrounds", - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state for primary backgrounds", "type": "color", - "value": "{global.dark.background.color.300}" - }, - "name": "pf-t--global--background--color--primary--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "hover" - }, - "path": [ - "global", - "background", - "color", - "primary", - "hover" - ], - "references": [ - { + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for primary backgrounds", "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.300}" + }, + "name": "pf-t--global--background--color--primary--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "primary", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--background--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "background", - "color", - "300" - ], - "references": [ - { + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - } - ] + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--primary--clicked": { - "description": "Use as the clicked state for primary backgrounds", - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state for primary backgrounds", "type": "color", - "value": "{global.dark.background.color.300}" - }, - "name": "pf-t--global--background--color--primary--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "clicked" - }, - "path": [ - "global", - "background", - "color", - "primary", - "clicked" - ], - "references": [ - { + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for primary backgrounds", "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.300}" + }, + "name": "pf-t--global--background--color--primary--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "primary", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--background--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "background", - "color", - "300" - ], - "references": [ - { + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - } - ] + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--secondary--default": { - "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", "type": "color", - "value": "{global.dark.background.color.100}" - }, - "name": "pf-t--global--background--color--secondary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "secondary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "secondary", - "default" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", "type": "color", - "value": "#151515", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.100}" + }, + "name": "pf-t--global--background--color--secondary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--dark--background--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "background", - "color", - "100" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#151515", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] + "value": "{color.gray.95}" + }, + "name": "pf-t--global--dark--background--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--secondary--hover": { - "description": "Use as the hover state for secondary backgrounds", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state for secondary backgrounds", "type": "color", - "value": "{global.dark.background.color.200}" - }, - "name": "pf-t--global--background--color--secondary--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "secondary", - "state": "hover" - }, - "path": [ - "global", - "background", - "color", - "secondary", - "hover" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for secondary backgrounds", "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--secondary--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--secondary--clicked": { - "description": "Use as the clicked state for secondary backgrounds", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state for secondary backgrounds", "type": "color", - "value": "{global.dark.background.color.200}" - }, - "name": "pf-t--global--background--color--secondary--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "secondary", - "state": "clicked" - }, - "path": [ - "global", - "background", - "color", - "secondary", - "clicked" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for secondary backgrounds", "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--secondary--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--floating--default": { - "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", "type": "color", - "value": "{global.dark.background.color.300}" - }, - "name": "pf-t--global--background--color--floating--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "floating", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "floating", - "default" - ], - "references": [ - { + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.300}" + }, + "name": "pf-t--global--background--color--floating--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "floating", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--background--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "background", - "color", - "300" - ], - "references": [ - { + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - } - ] + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--floating--hover": { - "description": "Use as the hover state for floating backgrounds", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state for floating backgrounds", "type": "color", - "value": "{global.dark.background.color.200}" - }, - "name": "pf-t--global--background--color--floating--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "floating", - "state": "hover" - }, - "path": [ - "global", - "background", - "color", - "floating", - "hover" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for floating backgrounds", "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--floating--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "floating", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--floating--clicked": { - "description": "Use as the clicked state for floating backgrounds", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state for floating backgrounds", "type": "color", - "value": "{global.dark.background.color.200}" - }, - "name": "pf-t--global--background--color--floating--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "floating", - "state": "clicked" - }, - "path": [ - "global", - "background", - "color", - "floating", - "clicked" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for floating backgrounds", "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--floating--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "floating", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--action--plain--default": { - "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", - "type": "color", - "value": "rgba(0, 0, 0, 0.0000)", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", "type": "color", - "value": "rgba(0, 0, 0, 0.0000)" - }, - "name": "pf-t--global--background--color--action--plain--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "default" - ] + "value": "rgba(0, 0, 0, 0.0000)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", + "type": "color", + "value": "rgba(0, 0, 0, 0.0000)" + }, + "name": "pf-t--global--background--color--action--plain--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "default" + ] + } }, "pf-t--global--background--color--action--plain--hover": { - "description": "Use as the hover state for components that use the plain action default background.", - "type": "color", - "value": "rgba(199, 199, 199, 0.1500)", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state for components that use the plain action default background.", "type": "color", - "value": "{global.dark.background.color.600}" - }, - "name": "pf-t--global--background--color--action--plain--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "hover" - ], - "references": [ - { + "value": "rgba(199, 199, 199, 0.1500)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for components that use the plain action default background.", "type": "color", - "value": "rgba(199, 199, 199, 0.1500)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.600}" + }, + "name": "pf-t--global--background--color--action--plain--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "hover" + ], + "references": [ + { "type": "color", - "value": "rgba(199, 199, 199, 0.1500)" - }, - "name": "pf-t--global--dark--background--color--600", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "600" - }, - "path": [ - "global", - "dark", - "background", - "color", - "600" - ] - } - ] + "value": "rgba(199, 199, 199, 0.1500)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)" + }, + "name": "pf-t--global--dark--background--color--600", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "600" + }, + "path": [ + "global", + "dark", + "background", + "color", + "600" + ] + } + ] + } }, "pf-t--global--background--color--action--plain--clicked": { - "description": "Use as the active/pressed state for components that use the plain action default background.", - "type": "color", - "value": "rgba(199, 199, 199, 0.1500)", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the active/pressed state for components that use the plain action default background.", "type": "color", - "value": "{global.dark.background.color.600}" - }, - "name": "pf-t--global--background--color--action--plain--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "clicked" - ], - "references": [ - { + "value": "rgba(199, 199, 199, 0.1500)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the active/pressed state for components that use the plain action default background.", "type": "color", - "value": "rgba(199, 199, 199, 0.1500)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(199, 199, 199, 0.1500)" - }, - "name": "pf-t--global--dark--background--color--600", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "600" - }, - "path": [ - "global", - "dark", - "background", - "color", - "600" - ] - } - ] + "value": "{global.dark.background.color.600}" + }, + "name": "pf-t--global--background--color--action--plain--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)" + }, + "name": "pf-t--global--dark--background--color--600", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "600" + }, + "path": [ + "global", + "dark", + "background", + "color", + "600" + ] + } + ] + } }, "pf-t--global--background--color--action--plain--alt--hover": { - "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", "type": "color", - "value": "{global.dark.background.color.200}" - }, - "name": "pf-t--global--background--color--action--plain--alt--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "alt", - "hover" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--action--plain--alt--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "alt", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--action--plain--alt--clicked": { - "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", "type": "color", - "value": "{global.dark.background.color.200}" - }, - "name": "pf-t--global--background--color--action--plain--alt--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "alt", - "clicked" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.200}" + }, + "name": "pf-t--global--background--color--action--plain--alt--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "alt", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--control--default": { - "description": "Use as the default background for control elements like form inputs and menu toggles.", - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default background for control elements like form inputs and menu toggles.", "type": "color", - "value": "{global.dark.background.color.300}" - }, - "name": "pf-t--global--background--color--control--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "control", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "control", - "default" - ], - "references": [ - { + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background for control elements like form inputs and menu toggles.", "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.300}" + }, + "name": "pf-t--global--background--color--control--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "control", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--background--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "background", - "color", - "300" - ], - "references": [ - { + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - } - ] + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--inverse--default": { - "description": "Use as the background color components with inversed backgrounds like tooltips.", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the background color components with inversed backgrounds like tooltips.", "type": "color", - "value": "{global.dark.background.color.400}" - }, - "name": "pf-t--global--background--color--inverse--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "inverse", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "inverse", - "default" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the background color components with inversed backgrounds like tooltips.", "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.400}" + }, + "name": "pf-t--global--background--color--inverse--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "inverse", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "inverse", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--dark--background--color--400", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "400" - }, - "path": [ - "global", - "dark", - "background", - "color", - "400" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--background--color--400", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "400" + }, + "path": [ + "global", + "dark", + "background", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--disabled--default": { - "description": "Use as the background color for disabled components.", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the background color for disabled components.", "type": "color", - "value": "{global.dark.color.disabled.100}" - }, - "name": "pf-t--global--background--color--disabled--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "disabled", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "disabled", - "default" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the background color for disabled components.", "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.disabled.100}" + }, + "name": "pf-t--global--background--color--disabled--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "disabled", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "disabled", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--color--disabled--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "100" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--color--disabled--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "100" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--backdrop--default": { - "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", - "type": "color", - "value": "rgba(21, 21, 21, 0.8000)", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", "type": "color", - "value": "{global.dark.background.color.500}" - }, - "name": "pf-t--global--background--color--backdrop--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "backdrop", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "backdrop", - "default" - ], - "references": [ - { + "value": "rgba(21, 21, 21, 0.8000)", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", "type": "color", - "value": "rgba(21, 21, 21, 0.8000)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.500}" + }, + "name": "pf-t--global--background--color--backdrop--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "backdrop", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "backdrop", + "default" + ], + "references": [ + { "type": "color", - "value": "rgba(21, 21, 21, 0.8000)" - }, - "name": "pf-t--global--dark--background--color--500", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "500" - }, - "path": [ - "global", - "dark", - "background", - "color", - "500" - ] - } - ] + "value": "rgba(21, 21, 21, 0.8000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(21, 21, 21, 0.8000)" + }, + "name": "pf-t--global--dark--background--color--500", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "500" + }, + "path": [ + "global", + "dark", + "background", + "color", + "500" + ] + } + ] + } }, "pf-t--global--color--brand--default": { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use this color for elements that you want to reinforce your brand", "type": "color", - "value": "{global.dark.color.brand.100}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.brand.100}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--brand--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "100" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--brand--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--brand--hover": { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state for elements that have a branded background color", "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--brand--clicked": { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state for elements that have a brand background color", "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--favorite--default": { - "description": "Use as the default color for elements that have been favorited", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for elements that have been favorited", "type": "color", - "value": "{global.dark.color.favorite.100}" - }, - "name": "pf-t--global--color--favorite--default", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "default" - }, - "path": [ - "global", - "color", - "favorite", - "default" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that have been favorited", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.favorite.100}" + }, + "name": "pf-t--global--color--favorite--default", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "default" + }, + "path": [ + "global", + "color", + "favorite", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--favorite--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "favorite", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "favorite", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--favorite--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--favorite--hover": { - "description": "Use as the hover state for elements that have been favorited", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state for elements that have been favorited", "type": "color", - "value": "{global.dark.color.favorite.200}" - }, - "name": "pf-t--global--color--favorite--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "favorite", - "hover" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have been favorited", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "favorite", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--favorite--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "favorite", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "favorite", - "200" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--favorite--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--favorite--clicked": { - "description": "Use as the clicked state for elements that have been favorited", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state for elements that have been favorited", "type": "color", - "value": "{global.dark.color.favorite.200}" - }, - "name": "pf-t--global--color--favorite--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "favorite", - "clicked" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have been favorited", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "favorite", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--favorite--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "favorite", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "favorite", - "200" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--favorite--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--success--default": { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", - "value": "{global.dark.color.status.success.100}" - }, - "name": "pf-t--global--color--status--success--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "success", - "default" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--dark--color--status--success--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "100" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] + "value": "{color.green.40}" + }, + "name": "pf-t--global--dark--color--status--success--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--success--hover": { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state for any element that conveys a success status.", "type": "color", - "value": "{global.dark.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "success", - "hover" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--success--clicked": { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", - "value": "{global.dark.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--warning--default": { - "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", - "value": "{global.dark.color.status.warning.100}" - }, - "name": "pf-t--global--color--status--warning--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "warning", - "default" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.warning.100}" + }, + "name": "pf-t--global--color--status--warning--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "warning", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--status--warning--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--status--warning--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--warning--hover": { - "description": "Use as the hover state for any element that conveys a warning status.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", - "value": "{global.dark.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--warning--clicked": { - "description": "Use as the clicked state for any element that conveys a warning status.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", - "value": "{global.dark.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--danger--default": { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "{global.dark.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--global--dark--color--status--danger--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "100" - ], - "references": [ - { + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] - } - ] + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--status--danger--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--danger--hover": { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "{global.dark.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--danger--clicked": { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "{global.dark.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--info--default": { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", - "value": "{global.dark.color.status.info.100}" - }, - "name": "pf-t--global--color--status--info--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "info", - "default" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--color--status--info--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "100" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--status--info--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--info--hover": { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state for any element that conveys an info status.", "type": "color", - "value": "{global.dark.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "info", - "hover" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--info--clicked": { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", - "value": "{global.dark.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--custom--default": { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.dark.color.status.custom.100}" - }, - "name": "pf-t--global--color--status--custom--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "custom", - "default" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--dark--color--status--custom--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "100" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] + "value": "{color.teal.40}" + }, + "name": "pf-t--global--dark--color--status--custom--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--custom--hover": { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.dark.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--custom--clicked": { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.dark.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--unread--default": { - "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.color.brand.default}" - }, - "name": "pf-t--global--color--status--unread--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "unread", - "default" - ], - "references": [ - { - "description": "Use this color for elements that you want to reinforce your brand", + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--color--status--unread--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "unread", + "default" + ], + "references": [ + { "description": "Use this color for elements that you want to reinforce your brand", "type": "color", - "value": "{global.dark.color.brand.100}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--brand--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "100" - ], - "references": [ - { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.brand.100}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--brand--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "100" + ], + "references": [ + { "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] - } - ] + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--color--status--unread--hover": { - "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.color.brand.hover}" - }, - "name": "pf-t--global--color--status--unread--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "unread", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for elements that have a branded background color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--color--status--unread--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "unread", + "hover" + ], + "references": [ + { "description": "Use as the hover state for elements that have a branded background color", "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - } - ] + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--color--status--unread--clicked": { - "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.color.brand.clicked}" - }, - "name": "pf-t--global--color--status--unread--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "unread", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for elements that have a brand background color", + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--color--status--unread--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "unread", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for elements that have a brand background color", "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] - } - ] + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--color--status--unread--attention--default": { - "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.color.status.danger.default}" - }, - "name": "pf-t--global--color--status--unread--attention--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "attention" - }, - "path": [ - "global", - "color", - "status", - "unread", - "attention", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--color--status--unread--attention--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "{global.dark.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { + "value": "#f0561d", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--global--dark--color--status--danger--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--status--danger--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "100" + ], + "references": [ + { "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] - } - ] - } - ] + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--color--status--unread--attention--clicked": { - "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.color.status.danger.clicked}" - }, - "name": "pf-t--global--color--status--unread--attention--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "attention" - }, - "path": [ - "global", - "color", - "status", - "unread", - "attention", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a danger status.", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--color--status--unread--attention--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "{global.dark.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - } - ] + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--color--status--unread--attention--hover": { - "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.color.status.danger.hover}" - }, - "name": "pf-t--global--color--status--unread--attention--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "attention" - }, - "path": [ - "global", - "color", - "status", - "unread", - "attention", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a danger status.", + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--color--status--unread--attention--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "{global.dark.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - } - ] + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--color--status--read--on-secondary": { - "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", "type": "color", - "value": "{global.background.color.control.default}" - }, - "name": "pf-t--global--color--status--read--on-secondary", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "read", - "state": "on-secondary" - }, - "path": [ - "global", - "color", - "status", - "read", - "on-secondary" - ], - "references": [ - { - "description": "Use as the default background for control elements like form inputs and menu toggles.", + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", "type": "color", - "value": "#383838", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.background.color.control.default}" + }, + "name": "pf-t--global--color--status--read--on-secondary", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "read", + "state": "on-secondary" + }, + "path": [ + "global", + "color", + "status", + "read", + "on-secondary" + ], + "references": [ + { "description": "Use as the default background for control elements like form inputs and menu toggles.", "type": "color", - "value": "{global.dark.background.color.300}" - }, - "name": "pf-t--global--background--color--control--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "control", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "control", - "default" - ], - "references": [ - { + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background for control elements like form inputs and menu toggles.", "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--background--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "background", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.300}" + }, + "name": "pf-t--global--background--color--control--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "control", + "default" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - } - ] - } - ] + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--color--status--read--on-primary": { - "description": "Use as the default color for elements that convey a read status and are placed on a primary background", - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for elements that convey a read status and are placed on a primary background", "type": "color", - "value": "{global.background.color.secondary.default}" - }, - "name": "pf-t--global--color--status--read--on-primary", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "read", - "state": "on-primary" - }, - "path": [ - "global", - "color", - "status", - "read", - "on-primary" - ], - "references": [ - { - "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "value": "#151515", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that convey a read status and are placed on a primary background", "type": "color", - "value": "#151515", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.background.color.secondary.default}" + }, + "name": "pf-t--global--color--status--read--on-primary", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "read", + "state": "on-primary" + }, + "path": [ + "global", + "color", + "status", + "read", + "on-primary" + ], + "references": [ + { "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", "type": "color", - "value": "{global.dark.background.color.100}" - }, - "name": "pf-t--global--background--color--secondary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "secondary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "secondary", - "default" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", "type": "color", - "value": "#151515", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--dark--background--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "background", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.background.color.100}" + }, + "name": "pf-t--global--background--color--secondary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--dark--background--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "background", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--red--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.red.100}" - }, - "name": "pf-t--global--color--nonstatus--red--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "default" - ], - "references": [ - { + "value": "#f9a8a8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.red.100}" + }, + "name": "pf-t--global--color--nonstatus--red--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.red.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "100" - ], - "references": [ - { + "value": "#f9a8a8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - } - ] - } - ] + "value": "{color.red.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--red--hover": { - "description": "Use as the hover state color for any element that uses the non status red background color.", - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for any element that uses the non status red background color.", "type": "color", - "value": "{global.dark.color.nonstatus.red.200}" - }, - "name": "pf-t--global--color--nonstatus--red--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "hover" - ], - "references": [ - { + "value": "#fbc5c5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status red background color.", "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.red.200}" + }, + "name": "pf-t--global--color--nonstatus--red--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.red.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { + "value": "#fbc5c5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - } - ] - } - ] + "value": "{color.red.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--red--clicked": { - "description": "Use as the clicked state color for any element that uses the non status red background color.", - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for any element that uses the non status red background color.", "type": "color", - "value": "{global.dark.color.nonstatus.red.200}" - }, - "name": "pf-t--global--color--nonstatus--red--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "clicked" - ], - "references": [ - { + "value": "#fbc5c5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status red background color.", "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.red.200}" + }, + "name": "pf-t--global--color--nonstatus--red--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.red.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { + "value": "#fbc5c5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - } - ] - } - ] + "value": "{color.red.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--orangered--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.orangered.100}" - }, - "name": "pf-t--global--color--nonstatus--orangered--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "default" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.orangered.100}" + }, + "name": "pf-t--global--color--nonstatus--orangered--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "100" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - } - ] + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--orangered--hover": { - "description": "Use as the hover state color for any element that uses the non status orange-red background color.", - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for any element that uses the non status orange-red background color.", "type": "color", - "value": "{global.dark.color.nonstatus.orangered.200}" - }, - "name": "pf-t--global--color--nonstatus--orangered--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "hover" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status orange-red background color.", "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--color--nonstatus--orangered--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--orangered--clicked": { - "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + } + }, + "pf-t--global--color--nonstatus--orangered--clicked": { + "dark": { "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", "type": "color", - "value": "{global.dark.color.nonstatus.orangered.200}" - }, - "name": "pf-t--global--color--nonstatus--orangered--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "clicked" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--color--nonstatus--orangered--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - } - ] + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--orange--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.orange.100}" - }, - "name": "pf-t--global--color--nonstatus--orange--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "default" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.orange.100}" + }, + "name": "pf-t--global--color--nonstatus--orange--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "100" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] + "value": "{color.orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--orange--hover": { - "description": "Use as the hover state color for any element that uses the non status orange background color.", - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for any element that uses the non status orange background color.", "type": "color", - "value": "{global.dark.color.nonstatus.orange.200}" - }, - "name": "pf-t--global--color--nonstatus--orange--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "hover" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status orange background color.", "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--color--nonstatus--orange--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - } - ] + "value": "{color.orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--orange--clicked": { - "description": "Use as the clicked state color for any element that uses the non status orange background color.", - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for any element that uses the non status orange background color.", "type": "color", - "value": "{global.dark.color.nonstatus.orange.200}" - }, - "name": "pf-t--global--color--nonstatus--orange--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "clicked" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status orange background color.", "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--color--nonstatus--orange--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - } - ] + "value": "{color.orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--yellow--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.yellow.100}" - }, - "name": "pf-t--global--color--nonstatus--yellow--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "default" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.yellow.100}" + }, + "name": "pf-t--global--color--nonstatus--yellow--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--yellow--hover": { - "description": "Use as the hover state color for any element that uses the non status yellow background color.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for any element that uses the non status yellow background color.", "type": "color", - "value": "{global.dark.color.nonstatus.yellow.200}" - }, - "name": "pf-t--global--color--nonstatus--yellow--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "hover" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status yellow background color.", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.yellow.200}" + }, + "name": "pf-t--global--color--nonstatus--yellow--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--yellow--clicked": { - "description": "Use as the clicked state color for any element that uses the non status yellow background color.", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for any element that uses the non status yellow background color.", "type": "color", - "value": "{global.dark.color.nonstatus.yellow.200}" - }, - "name": "pf-t--global--color--nonstatus--yellow--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "clicked" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status yellow background color.", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.yellow.200}" + }, + "name": "pf-t--global--color--nonstatus--yellow--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--green--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.green.100}" - }, - "name": "pf-t--global--color--nonstatus--green--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "default" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.green.100}" + }, + "name": "pf-t--global--color--nonstatus--green--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "100" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--green--hover": { - "description": "Use as the hover state color for any element that uses the non status green background color.", - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for any element that uses the non status green background color.", "type": "color", - "value": "{global.dark.color.nonstatus.green.200}" - }, - "name": "pf-t--global--color--nonstatus--green--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "hover" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status green background color.", "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.green.200}" + }, + "name": "pf-t--global--color--nonstatus--green--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - } - ] + "value": "{color.green.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--green--clicked": { - "description": "Use as the clicked state color for any element that uses the non status green background color.", - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for any element that uses the non status green background color.", "type": "color", - "value": "{global.dark.color.nonstatus.green.200}" - }, - "name": "pf-t--global--color--nonstatus--green--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "clicked" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status green background color.", "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.green.200}" + }, + "name": "pf-t--global--color--nonstatus--green--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - } - ] + "value": "{color.green.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--teal--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.teal.100}" - }, - "name": "pf-t--global--color--nonstatus--teal--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "default" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.teal.100}" + }, + "name": "pf-t--global--color--nonstatus--teal--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "100" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--teal--hover": { - "description": "Use as the hover state color for any element that uses the non status teal background color.", - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for any element that uses the non status teal background color.", "type": "color", - "value": "{global.dark.color.nonstatus.teal.200}" - }, - "name": "pf-t--global--color--nonstatus--teal--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "hover" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status teal background color.", "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.teal.200}" + }, + "name": "pf-t--global--color--nonstatus--teal--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - } - ] + "value": "{color.teal.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--teal--clicked": { - "description": "Use as the clicked state color for any element that uses the non status teal background color.", - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for any element that uses the non status teal background color.", "type": "color", - "value": "{global.dark.color.nonstatus.teal.200}" - }, - "name": "pf-t--global--color--nonstatus--teal--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "clicked" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status teal background color.", "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.teal.200}" + }, + "name": "pf-t--global--color--nonstatus--teal--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--blue--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "{global.dark.color.nonstatus.blue.100}" - }, - "name": "pf-t--global--color--nonstatus--blue--default", - "attributes": { - "category": "global", + "value": "{color.teal.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + } + }, + "pf-t--global--color--nonstatus--blue--default": { + "dark": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "default" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.blue.100}" + }, + "name": "pf-t--global--color--nonstatus--blue--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "100" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--blue--hover": { - "description": "Use as the hover state color for any element that uses the non status blue background color.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for any element that uses the non status blue background color.", "type": "color", - "value": "{global.dark.color.nonstatus.blue.200}" - }, - "name": "pf-t--global--color--nonstatus--blue--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "hover" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status blue background color.", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--color--nonstatus--blue--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--blue--clicked": { - "description": "Use as the clicked state color for any element that uses the non status blue background color.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for any element that uses the non status blue background color.", "type": "color", - "value": "{global.dark.color.nonstatus.blue.200}" - }, - "name": "pf-t--global--color--nonstatus--blue--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "clicked" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status blue background color.", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--color--nonstatus--blue--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--purple--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.purple.100}" - }, - "name": "pf-t--global--color--nonstatus--purple--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "default" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.purple.100}" + }, + "name": "pf-t--global--color--nonstatus--purple--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "100" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--purple--hover": { - "description": "Use as the hover state color for any element that uses the non status purple background color.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for any element that uses the non status purple background color.", "type": "color", - "value": "{global.dark.color.nonstatus.purple.200}" - }, - "name": "pf-t--global--color--nonstatus--purple--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "hover" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status purple background color.", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--color--nonstatus--purple--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--purple--clicked": { - "description": "Use as the clicked state color for any element that uses the non status purple background color.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for any element that uses the non status purple background color.", "type": "color", - "value": "{global.dark.color.nonstatus.purple.200}" - }, - "name": "pf-t--global--color--nonstatus--purple--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "clicked" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status purple background color.", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--color--nonstatus--purple--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--gray--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.dark.color.nonstatus.gray.100}" - }, - "name": "pf-t--global--color--nonstatus--gray--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "default" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "100" - ], - "references": [ - { + "value": "{global.dark.color.nonstatus.gray.100}" + }, + "name": "pf-t--global--color--nonstatus--gray--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "default" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--gray--hover": { - "description": "Use as the hover state color for any element that uses the non status gray background color.", - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for any element that uses the non status gray background color.", "type": "color", - "value": "{global.dark.color.nonstatus.gray.200}" - }, - "name": "pf-t--global--color--nonstatus--gray--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "hover" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status gray background color.", "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--color--nonstatus--gray--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] + "value": "{color.gray.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--gray--clicked": { - "description": "Use as the clicked state color for any element that uses the non status gray background color.", - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for any element that uses the non status gray background color.", "type": "color", - "value": "{global.dark.color.nonstatus.gray.200}" - }, - "name": "pf-t--global--color--nonstatus--gray--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "clicked" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status gray background color.", "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--color--nonstatus--gray--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] + "value": "{color.gray.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--link--default": { - "description": "Use as the default text color for links.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default text color for links.", "type": "color", - "value": "{global.dark.text.color.link.100}" - }, - "name": "pf-t--global--text--color--link--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "default" - }, - "path": [ - "global", - "text", - "color", - "link", - "default" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default text color for links.", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.link.100}" + }, + "name": "pf-t--global--text--color--link--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "link", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--text--color--link--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "link" - }, - "path": [ - "global", - "dark", - "text", - "color", - "link", - "100" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--text--color--link--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--link--hover": { - "description": "Use as the hover state text color for links.", - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state text color for links.", "type": "color", - "value": "{global.dark.text.color.link.200}" - }, - "name": "pf-t--global--text--color--link--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "hover" - }, - "path": [ - "global", - "text", - "color", - "link", - "hover" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state text color for links.", "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.link.200}" + }, + "name": "pf-t--global--text--color--link--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "link", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--text--color--link--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "link" - }, - "path": [ - "global", - "dark", - "text", - "color", - "link", - "200" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--text--color--link--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--link--visited": { - "description": "Use as the color to indicate that a link has been visited.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the color to indicate that a link has been visited.", "type": "color", - "value": "{global.dark.text.color.link.300}" - }, - "name": "pf-t--global--text--color--link--visited", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "visited" - }, - "path": [ - "global", - "text", - "color", - "link", - "visited" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color to indicate that a link has been visited.", "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.link.300}" + }, + "name": "pf-t--global--text--color--link--visited", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "visited" + }, + "path": [ + "global", + "text", + "color", + "link", + "visited" + ], + "references": [ + { "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--text--color--link--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "link" - }, - "path": [ - "global", - "dark", - "text", - "color", - "link", - "300" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--text--color--link--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--brand--default": { - "description": "Use as the default color for branded text.", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for branded text.", "type": "color", - "value": "{global.dark.color.brand.200}" - }, - "name": "pf-t--global--text--color--brand--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "default" - }, - "path": [ - "global", - "text", - "color", - "brand", - "default" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for branded text.", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.brand.200}" + }, + "name": "pf-t--global--text--color--brand--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "brand", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--brand--hover": { - "description": "Use as the hover state color for branded text.", - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for branded text.", "type": "color", - "value": "{global.dark.color.brand.300}" - }, - "name": "pf-t--global--text--color--brand--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "hover" - }, - "path": [ - "global", - "text", - "color", - "brand", - "hover" - ], - "references": [ - { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "#e0f0ff", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for branded text.", + "type": "color", + "value": "{global.dark.color.brand.300}" + }, + "name": "pf-t--global--text--color--brand--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "brand", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--color--brand--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "300" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--brand--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--brand--clicked": { - "description": "Use as the clicked state color for branded text.", - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for branded text.", "type": "color", - "value": "{global.dark.color.brand.300}" - }, - "name": "pf-t--global--text--color--brand--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "clicked" - }, - "path": [ - "global", - "text", - "color", - "brand", - "clicked" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for branded text.", "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.brand.300}" + }, + "name": "pf-t--global--text--color--brand--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "text", + "color", + "brand", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--color--brand--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "300" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--brand--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--regular": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.dark.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--dark--text--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "text", - "color", - "100" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--text--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--subtle": { - "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", - "value": "{global.dark.text.color.200}" - }, - "name": "pf-t--global--text--color--subtle", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "subtle" - }, - "path": [ - "global", - "text", - "color", - "subtle" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.200}" + }, + "name": "pf-t--global--text--color--subtle", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "text", + "color", + "subtle" + ], + "references": [ + { "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--dark--text--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "text", - "color", - "200" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--text--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "text", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--inverse": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--on-brand--default": { - "description": "Use as the default color for text placed on a brand-colored background.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text placed on a brand-colored background.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--on-brand--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-brand", - "state": "default" - }, - "path": [ - "global", - "text", - "color", - "on-brand", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text placed on a brand-colored background.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--on-brand--hover": { - "description": "Use as the hover state color for text placed on a brand-colored background.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text placed on a brand-colored background.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--on-brand--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-brand", - "state": "hover" - }, - "path": [ - "global", - "text", - "color", - "on-brand", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text placed on a brand-colored background.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--on-brand--clicked": { - "description": "Use as the clicked state color for text placed on a brand-colored background.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text placed on a brand-colored background.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--on-brand--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-brand", - "state": "clicked" - }, - "path": [ - "global", - "text", - "color", - "on-brand", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text placed on a brand-colored background.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "clicked" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--placeholder": { - "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", "type": "color", - "value": "{global.text.color.subtle}" - }, - "name": "pf-t--global--text--color--placeholder", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "placeholder" - }, - "path": [ - "global", - "text", - "color", - "placeholder" - ], - "references": [ - { - "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.subtle}" + }, + "name": "pf-t--global--text--color--placeholder", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "placeholder" + }, + "path": [ + "global", + "text", + "color", + "placeholder" + ], + "references": [ + { "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", - "value": "{global.dark.text.color.200}" - }, - "name": "pf-t--global--text--color--subtle", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "subtle" - }, - "path": [ - "global", - "text", - "color", - "subtle" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--dark--text--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "text", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.200}" + }, + "name": "pf-t--global--text--color--subtle", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "text", + "color", + "subtle" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--text--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "text", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--disabled": { - "description": "Use as the color of text on disabled elements, like disabled menu items.", - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the color of text on disabled elements, like disabled menu items.", "type": "color", - "value": "{global.dark.color.disabled.200}" - }, - "name": "pf-t--global--text--color--disabled", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "disabled" - }, - "path": [ - "global", - "text", - "color", - "disabled" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text on disabled elements, like disabled menu items.", "type": "color", - "value": "#707070", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.disabled.200}" + }, + "name": "pf-t--global--text--color--disabled", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "text", + "color", + "disabled" + ], + "references": [ + { "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--dark--color--disabled--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "200" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] + "value": "{color.gray.50}" + }, + "name": "pf-t--global--dark--color--disabled--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--on-disabled": { - "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", "type": "color", - "value": "{global.dark.color.disabled.300}" - }, - "name": "pf-t--global--text--color--on-disabled", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-disabled" - }, - "path": [ - "global", - "text", - "color", - "on-disabled" - ], - "references": [ - { + "value": "#383838", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.disabled.300}" + }, + "name": "pf-t--global--text--color--on-disabled", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-disabled" + }, + "path": [ + "global", + "text", + "color", + "on-disabled" + ], + "references": [ + { "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--color--disabled--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "300" - ], - "references": [ - { + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] - } - ] + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--color--disabled--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--required": { - "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", "type": "color", - "value": "{global.dark.text.color.400}" - }, - "name": "pf-t--global--text--color--required", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "required" - }, - "path": [ - "global", - "text", - "color", - "required" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.400}" + }, + "name": "pf-t--global--text--color--required", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "required" + }, + "path": [ + "global", + "text", + "color", + "required" + ], + "references": [ + { "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--dark--text--color--400", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "400" - }, - "path": [ - "global", - "dark", - "text", - "color", - "400" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - } - ] + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--text--color--400", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "400" + }, + "path": [ + "global", + "dark", + "text", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--on-highlight": { - "description": "Use as the color of text that is highlighted.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the color of text that is highlighted.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--on-highlight", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-highlight" - }, - "path": [ - "global", - "text", - "color", - "on-highlight" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is highlighted.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--on-highlight", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-highlight" + }, + "path": [ + "global", + "text", + "color", + "on-highlight" + ], + "references": [ + { "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--success--default": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{global.color.status.success.default}" - }, - "name": "pf-t--global--text--color--status--success--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "text", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--text--color--status--success--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", - "value": "{global.dark.color.status.success.100}" - }, - "name": "pf-t--global--color--status--success--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "success", - "default" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--dark--color--status--success--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.40}" + }, + "name": "pf-t--global--dark--color--status--success--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "100" + ], + "references": [ + { "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] - } - ] + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--success--hover": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{global.color.status.success.hover}" - }, - "name": "pf-t--global--text--color--status--success--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "text", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a success status.", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--text--color--status--success--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys a success status.", "type": "color", - "value": "{global.dark.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "success", - "hover" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--success--clicked": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{global.color.status.success.clicked}" - }, - "name": "pf-t--global--text--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "text", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a success status.", + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--text--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", - "value": "{global.dark.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-success--default": { - "description": "Use as the default color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that is placed on a success background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-success--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-success", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a success background color, like in banners.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-success--hover": { - "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-success--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-success", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-success--clicked": { - "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-success--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-success", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--warning--default": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{global.color.status.warning.default}" - }, - "name": "pf-t--global--text--color--status--warning--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "warning", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.warning.default}" + }, + "name": "pf-t--global--text--color--status--warning--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", - "value": "{global.dark.color.status.warning.100}" - }, - "name": "pf-t--global--color--status--warning--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "warning", - "default" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--status--warning--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.warning.100}" + }, + "name": "pf-t--global--color--status--warning--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "warning", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--status--warning--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--warning--hover": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{global.color.status.warning.hover}" - }, - "name": "pf-t--global--text--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a warning status.", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.warning.hover}" + }, + "name": "pf-t--global--text--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", - "value": "{global.dark.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--warning--clicked": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{global.color.status.warning.clicked}" - }, - "name": "pf-t--global--text--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a warning status.", + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.warning.clicked}" + }, + "name": "pf-t--global--text--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", - "value": "{global.dark.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-warning--default": { - "description": "Use as the default color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that is placed on a warning background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-warning--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-warning", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a warning background color, like in banners.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-warning--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-warning--hover": { - "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-warning--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-warning", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-warning--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-warning--clicked": { - "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-warning--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-warning", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-warning--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--danger--default": { - "description": "Use as the default color for text that communicates a danger status.", - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that communicates a danger status.", "type": "color", - "value": "{global.dark.color.status.danger.250}" - }, - "name": "pf-t--global--text--color--status--danger--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "danger", - "default" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates a danger status.", "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.danger.250}" + }, + "name": "pf-t--global--text--color--status--danger--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--dark--color--status--danger--250", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "250" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - } - ] + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--color--status--danger--250", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "250" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--danger--hover": { - "description": "Use as the hover state color for text that communicates a danger status.", - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that communicates a danger status.", "type": "color", - "value": "{global.dark.color.status.danger.300}" - }, - "name": "pf-t--global--text--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates a danger status.", "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.danger.300}" + }, + "name": "pf-t--global--text--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--dark--color--status--danger--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "300" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - } - ] + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--status--danger--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "300" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--danger--clicked": { - "description": "Use as the clicked state color for text that communicates a danger status.", - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that communicates a danger status.", "type": "color", - "value": "{global.dark.color.status.danger.300}" - }, - "name": "pf-t--global--text--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates a danger status.", "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.danger.300}" + }, + "name": "pf-t--global--text--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--dark--color--status--danger--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "300" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - } - ] + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--status--danger--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "300" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-danger--default": { - "description": "Use as the default color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that is placed on a danger background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-danger--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-danger", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a danger background color, like in banners.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-danger--hover": { - "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-danger--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-danger", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-danger--clicked": { - "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-danger--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-danger", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--info--default": { - "description": "Use as the default color for text that communicates am info status.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that communicates am info status.", "type": "color", - "value": "{global.color.status.info.default}" - }, - "name": "pf-t--global--text--color--status--info--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "text", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates am info status.", "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--text--color--status--info--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", - "value": "{global.dark.color.status.info.100}" - }, - "name": "pf-t--global--color--status--info--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "info", - "default" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--color--status--info--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--status--info--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "100" + ], + "references": [ + { "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] - } - ] + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--info--hover": { - "description": "Use as the hover state color for text that communicates an infostatus.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that communicates an infostatus.", "type": "color", - "value": "{global.color.status.info.hover}" - }, - "name": "pf-t--global--text--color--status--info--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "text", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates an infostatus.", + "type": "color", + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--text--color--status--info--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys an info status.", "type": "color", - "value": "{global.dark.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "info", - "hover" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - } - ] + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--info--clicked": { - "description": "Use as the clicked state color for text that communicates an info status.", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that communicates an info status.", "type": "color", - "value": "{global.color.status.info.clicked}" - }, - "name": "pf-t--global--text--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "text", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys an info status.", + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates an info status.", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--text--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", - "value": "{global.dark.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] - } - ] + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-info--default": { - "description": "Use as the default color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that is placed on an info background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-info--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-info", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on an info background color, like in banners.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-info--hover": { - "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-info--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-info", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-info--clicked": { - "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-info--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-info", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "clicked" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--custom--default": { - "description": "Use as the default color for text that communicates a custom status.", - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that communicates a custom status.", "type": "color", - "value": "{global.color.status.custom.default}" - }, - "name": "pf-t--global--text--color--status--custom--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates a custom status.", "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--text--color--status--custom--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "default" + ], + "references": [ + { "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.dark.color.status.custom.100}" - }, - "name": "pf-t--global--color--status--custom--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "custom", - "default" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--dark--color--status--custom--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.40}" + }, + "name": "pf-t--global--dark--color--status--custom--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "100" + ], + "references": [ + { "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] - } - ] + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--custom--hover": { - "description": "Use as the hover state color for text that communicates a custom status.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that communicates a custom status.", "type": "color", - "value": "{global.color.status.custom.hover}" - }, - "name": "pf-t--global--text--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates a custom status.", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--text--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.dark.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--custom--clicked": { - "description": "Use as the clicked state color for text that communicates a custom status.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that communicates a custom status.", "type": "color", - "value": "{global.color.status.custom.clicked}" - }, - "name": "pf-t--global--text--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates a custom status.", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--text--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.dark.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-custom--default": { - "description": "Use as the default color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that is placed on a custom background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-custom--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-custom", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a custom background color, like in banners.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "default" + ], + "references": [ + { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-custom--hover": { - "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-custom--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-custom", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-custom--clicked": { - "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-custom--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-custom", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--unread--on-default--default": { - "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-default--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-default", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--unread--on-default--hover": { - "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-default--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-default", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--unread--on-default--clicked": { - "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-default--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-default", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--unread--on-attention--default": { - "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-attention--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-attention", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--unread--on-attention--hover": { - "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-attention--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-attention", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--unread--on-attention--clicked": { - "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-attention--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-attention", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] - }, + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } + }, "pf-t--global--text--color--nonstatus--on-red--default": { - "description": "Use as the default color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that is placed on a nonstatus red background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-red--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-red", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus red background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-red--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-red--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-red", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-red--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-red--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-red", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-orangered--default": { - "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orangered--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orangered", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-orangered--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orangered--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orangered", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", + "type": "color", + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-orangered--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orangered--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orangered", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-orange--default": { - "description": "Use as the default color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that is placed on a nonstatus orange background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orange--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orange", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus orange background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-orange--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orange--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orange", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-orange--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orange--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orange", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-yellow--default": { - "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-yellow--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-yellow", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-yellow--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-yellow--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-yellow", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-yellow--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-yellow--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-yellow", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-green--default": { - "description": "Use as the default color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that is placed on a nonstatus green background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-green--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-green", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus green background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-green--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-green--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-green", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-green--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-green--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-green", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-teal--default": { - "description": "Use as the default color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that is placed on a nonstatus teal background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-teal--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-teal", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus teal background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-teal--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-teal--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-teal", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-teal--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-teal--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-teal", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-blue--default": { - "description": "Use as the default color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that is placed on a nonstatus blue background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-blue--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-blue", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus blue background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-blue--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-blue--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-blue", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-blue--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-blue--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-blue", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-purple--default": { - "description": "Use as the default color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that is placed on a nonstatus purple background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-purple--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-purple", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus purple background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-purple--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-purple--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-purple", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-purple--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-purple--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-purple", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-gray--default": { - "description": "Use as the default color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the default color for text that is placed on a nonstatus gray background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-gray--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-gray", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus gray background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-gray--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-gray--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-gray", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-gray--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "dark": { "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--nonstatus--on-gray--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-gray", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/semantic.dark.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.dark.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/semantic.dark.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{global.dark.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } } }, "dimension": { "pf-t--global--spacer--xs": { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra small spaces between elements.", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] + "value": "0.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } }, "pf-t--global--spacer--sm": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for small spaces between elements.", "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } }, "pf-t--global--spacer--md": { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } }, "pf-t--global--spacer--lg": { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for large spaces between elements.", "type": "number", - "value": "{global.spacer.400}" - }, - "name": "pf-t--global--spacer--lg", - "attributes": { - "category": "global", - "type": "spacer", - "item": "lg" - }, - "path": [ - "global", - "spacer", - "lg" - ], - "references": [ - { + "value": "1.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for large spaces between elements.", "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - } - ] + "value": "1.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } }, "pf-t--global--spacer--xl": { - "description": "Use for extra large spaces between elements.", - "type": "number", - "value": "2rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for extra large spaces between elements.", "type": "number", - "value": "{global.spacer.500}" - }, - "name": "pf-t--global--spacer--xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xl" - }, - "path": [ - "global", - "spacer", - "xl" - ], - "references": [ - { + "value": "2rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra large spaces between elements.", "type": "number", - "value": "2rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.500}" + }, + "name": "pf-t--global--spacer--xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xl" + }, + "path": [ + "global", + "spacer", + "xl" + ], + "references": [ + { "type": "number", - "value": 32 - }, - "name": "pf-t--global--spacer--500", - "attributes": { - "category": "global", - "type": "spacer", - "item": "500" - }, - "path": [ - "global", - "spacer", - "500" - ] - } - ] - }, - "pf-t--global--spacer--2xl": { - "description": "Use for double extra large spaces spacing between elements.", - "type": "number", - "value": "3rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "2rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + } + ] + } + }, + "pf-t--global--spacer--2xl": { + "default": { "description": "Use for double extra large spaces spacing between elements.", "type": "number", - "value": "{global.spacer.600}" - }, - "name": "pf-t--global--spacer--2xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "2xl" - }, - "path": [ - "global", - "spacer", - "2xl" - ], - "references": [ - { + "value": "3rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for double extra large spaces spacing between elements.", "type": "number", - "value": "3rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.600}" + }, + "name": "pf-t--global--spacer--2xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "2xl" + }, + "path": [ + "global", + "spacer", + "2xl" + ], + "references": [ + { "type": "number", - "value": 48 - }, - "name": "pf-t--global--spacer--600", - "attributes": { - "category": "global", - "type": "spacer", - "item": "600" - }, - "path": [ - "global", - "spacer", - "600" - ] - } - ] + "value": "3rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + } + ] + } }, "pf-t--global--spacer--3xl": { - "description": "Use for triple extra large spaces between elements.", - "type": "number", - "value": "4rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for triple extra large spaces between elements.", "type": "number", - "value": "{global.spacer.700}" - }, - "name": "pf-t--global--spacer--3xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "3xl" - }, - "path": [ - "global", - "spacer", - "3xl" - ], - "references": [ - { + "value": "4rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for triple extra large spaces between elements.", "type": "number", - "value": "4rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.700}" + }, + "name": "pf-t--global--spacer--3xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "3xl" + }, + "path": [ + "global", + "spacer", + "3xl" + ], + "references": [ + { "type": "number", - "value": 64 - }, - "name": "pf-t--global--spacer--700", - "attributes": { - "category": "global", - "type": "spacer", - "item": "700" - }, - "path": [ - "global", - "spacer", - "700" - ] - } - ] + "value": "4rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 64 + }, + "name": "pf-t--global--spacer--700", + "attributes": { + "category": "global", + "type": "spacer", + "item": "700" + }, + "path": [ + "global", + "spacer", + "700" + ] + } + ] + } }, "pf-t--global--spacer--4xl": { - "description": "Use for quadruple extra large spaces between elements.", - "type": "number", - "value": "5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for quadruple extra large spaces between elements.", "type": "number", - "value": "{global.spacer.800}" - }, - "name": "pf-t--global--spacer--4xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "4xl" - }, - "path": [ - "global", - "spacer", - "4xl" - ], - "references": [ - { + "value": "5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for quadruple extra large spaces between elements.", "type": "number", - "value": "5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.800}" + }, + "name": "pf-t--global--spacer--4xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "4xl" + }, + "path": [ + "global", + "spacer", + "4xl" + ], + "references": [ + { "type": "number", - "value": 80 - }, - "name": "pf-t--global--spacer--800", - "attributes": { - "category": "global", - "type": "spacer", - "item": "800" - }, - "path": [ - "global", - "spacer", - "800" - ] - } - ] + "value": "5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 80 + }, + "name": "pf-t--global--spacer--800", + "attributes": { + "category": "global", + "type": "spacer", + "item": "800" + }, + "path": [ + "global", + "spacer", + "800" + ] + } + ] + } }, "pf-t--global--spacer--control--vertical--default": { - "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--control--vertical--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "vertical", - "state": "default" - }, - "path": [ - "global", - "spacer", - "control", - "vertical", - "default" - ], - "references": [ - { - "description": "Use for small spaces between elements.", + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--vertical--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "default" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "default" + ], + "references": [ + { "description": "Use for small spaces between elements.", "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--control--vertical--compact": { - "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "{global.spacer.xs}" - }, - "name": "pf-t--global--spacer--control--vertical--compact", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "vertical", - "state": "compact" - }, - "path": [ - "global", - "spacer", - "control", - "vertical", - "compact" - ], - "references": [ - { - "description": "Use for extra small spaces between elements.", + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--control--vertical--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "compact" + ], + "references": [ + { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra small spaces between elements.", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - } - ] + "value": "0.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--control--vertical--plain": { - "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--control--vertical--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "vertical", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "control", - "vertical", - "plain" - ], - "references": [ - { - "description": "Use for small spaces between elements.", + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--vertical--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "plain" + ], + "references": [ + { "description": "Use for small spaces between elements.", "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--control--horizontal--default": { - "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--control--horizontal--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "horizontal", - "state": "default" - }, - "path": [ - "global", - "spacer", - "control", - "horizontal", - "default" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--control--horizontal--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "default" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "default" + ], + "references": [ + { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--control--horizontal--plain": { - "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--control--horizontal--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "horizontal", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "control", - "horizontal", - "plain" - ], - "references": [ - { - "description": "Use for small spaces between elements.", + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--horizontal--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "plain" + ], + "references": [ + { "description": "Use for small spaces between elements.", "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--control--horizontal--compact": { - "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--control--horizontal--compact", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "horizontal", - "state": "compact" - }, - "path": [ - "global", - "spacer", - "control", - "horizontal", - "compact" - ], - "references": [ - { - "description": "Use for small spaces between elements.", + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--horizontal--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "compact" + ], + "references": [ + { "description": "Use for small spaces between elements.", "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--control--horizontal--spacious": { - "description": "Use to set the horizontal padding in large/display controls.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the horizontal padding in large/display controls.", "type": "number", - "value": "{global.spacer.lg}" - }, - "name": "pf-t--global--spacer--control--horizontal--spacious", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "horizontal", - "state": "spacious" - }, - "path": [ - "global", - "spacer", - "control", - "horizontal", - "spacious" - ], - "references": [ - { - "description": "Use for large spaces between elements.", + "value": "1.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding in large/display controls.", "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--control--horizontal--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "spacious" + ], + "references": [ + { "description": "Use for large spaces between elements.", "type": "number", - "value": "{global.spacer.400}" - }, - "name": "pf-t--global--spacer--lg", - "attributes": { - "category": "global", - "type": "spacer", - "item": "lg" - }, - "path": [ - "global", - "spacer", - "lg" - ], - "references": [ - { + "value": "1.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for large spaces between elements.", "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - } - ] - } - ] + "value": "1.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--gap--text-to-element--default": { - "description": "Use to space an element, like an icon or badge, inline with text", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to space an element, like an icon or badge, inline with text", "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--gap--text-to-element--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "text-to-element", - "state": "default" - }, - "path": [ - "global", - "spacer", - "gap", - "text-to-element", - "default" - ], - "references": [ - { - "description": "Use for small spaces between elements.", + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to space an element, like an icon or badge, inline with text", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--gap--text-to-element--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "text-to-element", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "text-to-element", + "default" + ], + "references": [ + { "description": "Use for small spaces between elements.", "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--gap--control-to-control--default": { - "description": "Use to set the space between controls, like in input groups or filter groups", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the space between controls, like in input groups or filter groups", "type": "number", - "value": "{global.spacer.xs}" - }, - "name": "pf-t--global--spacer--gap--control-to-control--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "control-to-control", - "state": "default" - }, - "path": [ - "global", - "spacer", - "gap", - "control-to-control", - "default" - ], - "references": [ - { - "description": "Use for extra small spaces between elements.", + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the space between controls, like in input groups or filter groups", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--gap--control-to-control--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "control-to-control", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "control-to-control", + "default" + ], + "references": [ + { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra small spaces between elements.", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - } - ] + "value": "0.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--gap--group--vertical": { - "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--gap--group--vertical", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "group", - "state": "vertical" - }, - "path": [ - "global", - "spacer", - "gap", - "group", - "vertical" - ], - "references": [ - { - "description": "Use for small spaces between elements.", + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--gap--group--vertical", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group", + "state": "vertical" + }, + "path": [ + "global", + "spacer", + "gap", + "group", + "vertical" + ], + "references": [ + { "description": "Use for small spaces between elements.", "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--gap--group--horizontal": { - "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--gap--group--horizontal", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "group", - "state": "horizontal" - }, - "path": [ - "global", - "spacer", - "gap", - "group", - "horizontal" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--gap--group--horizontal", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group", + "state": "horizontal" + }, + "path": [ + "global", + "spacer", + "gap", + "group", + "horizontal" + ], + "references": [ + { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--gap--group-to-group--horizontal": { - "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", - "type": "number", - "value": "3rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", "type": "number", - "value": "{global.spacer.2xl}" - }, - "name": "pf-t--global--spacer--gap--group-to-group--horizontal", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "group-to-group", - "state": "horizontal" - }, - "path": [ - "global", - "spacer", - "gap", - "group-to-group", - "horizontal" - ], - "references": [ - { - "description": "Use for double extra large spaces spacing between elements.", + "value": "3rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", "type": "number", - "value": "3rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.2xl}" + }, + "name": "pf-t--global--spacer--gap--group-to-group--horizontal", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group-to-group", + "state": "horizontal" + }, + "path": [ + "global", + "spacer", + "gap", + "group-to-group", + "horizontal" + ], + "references": [ + { "description": "Use for double extra large spaces spacing between elements.", "type": "number", - "value": "{global.spacer.600}" - }, - "name": "pf-t--global--spacer--2xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "2xl" - }, - "path": [ - "global", - "spacer", - "2xl" - ], - "references": [ - { + "value": "3rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for double extra large spaces spacing between elements.", "type": "number", - "value": "3rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.600}" + }, + "name": "pf-t--global--spacer--2xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "2xl" + }, + "path": [ + "global", + "spacer", + "2xl" + ], + "references": [ + { "type": "number", - "value": 48 - }, - "name": "pf-t--global--spacer--600", - "attributes": { - "category": "global", - "type": "spacer", - "item": "600" - }, - "path": [ - "global", - "spacer", - "600" - ] - } - ] - } - ] + "value": "3rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--gap--group-to-group--vertical": { - "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", "type": "number", - "value": "{global.spacer.lg}" - }, - "name": "pf-t--global--spacer--gap--group-to-group--vertical", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "group-to-group", - "state": "vertical" - }, - "path": [ - "global", - "spacer", - "gap", - "group-to-group", - "vertical" - ], - "references": [ - { - "description": "Use for large spaces between elements.", + "value": "1.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--gap--group-to-group--vertical", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group-to-group", + "state": "vertical" + }, + "path": [ + "global", + "spacer", + "gap", + "group-to-group", + "vertical" + ], + "references": [ + { "description": "Use for large spaces between elements.", "type": "number", - "value": "{global.spacer.400}" - }, - "name": "pf-t--global--spacer--lg", - "attributes": { - "category": "global", - "type": "spacer", - "item": "lg" - }, - "path": [ - "global", - "spacer", - "lg" - ], - "references": [ - { + "value": "1.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for large spaces between elements.", "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - } - ] - } - ] + "value": "1.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--gap--action-to-action--default": { - "description": "Use to set the space between actions, like in an action list group.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the space between actions, like in an action list group.", "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--gap--action-to-action--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "action-to-action", - "state": "default" - }, - "path": [ - "global", - "spacer", - "gap", - "action-to-action", - "default" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the space between actions, like in an action list group.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--gap--action-to-action--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "action-to-action", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "action-to-action", + "default" + ], + "references": [ + { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--gap--action-to-action--plain": { - "description": "Use to set the space between plain actions, like in an action list group.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the space between plain actions, like in an action list group.", "type": "number", - "value": "{global.spacer.xs}" - }, - "name": "pf-t--global--spacer--gap--action-to-action--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "action-to-action", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "gap", - "action-to-action", - "plain" - ], - "references": [ - { - "description": "Use for extra small spaces between elements.", + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the space between plain actions, like in an action list group.", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--gap--action-to-action--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "action-to-action", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "gap", + "action-to-action", + "plain" + ], + "references": [ + { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra small spaces between elements.", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - } - ] + "value": "0.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--action--horizontal--default": { - "description": "Use to set the horizontal padding inside a default action, like buttons.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the horizontal padding inside a default action, like buttons.", "type": "number", - "value": "{global.spacer.lg}" - }, - "name": "pf-t--global--spacer--action--horizontal--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "horizontal", - "state": "default" - }, - "path": [ - "global", - "spacer", - "action", - "horizontal", - "default" - ], - "references": [ - { - "description": "Use for large spaces between elements.", + "value": "1.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding inside a default action, like buttons.", "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--action--horizontal--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "default" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "default" + ], + "references": [ + { "description": "Use for large spaces between elements.", "type": "number", - "value": "{global.spacer.400}" - }, - "name": "pf-t--global--spacer--lg", - "attributes": { - "category": "global", - "type": "spacer", - "item": "lg" - }, - "path": [ - "global", - "spacer", - "lg" - ], - "references": [ - { + "value": "1.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for large spaces between elements.", "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - } - ] - } - ] + "value": "1.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--action--horizontal--plain": { - "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", - "type": "number", - "value": "0.5rem", - "compact": { - "description": "Use to set the horizontal padding inside a compact, plain action/button.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false - }, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", "type": "number", - "value": "{global.spacer.sm}", + "value": "0.5rem", "compact": { "description": "Use to set the horizontal padding inside a compact, plain action/button.", "type": "number", - "value": "{global.spacer.xs}", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": false - } - }, - "name": "pf-t--global--spacer--action--horizontal--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "horizontal", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "action", - "horizontal", - "plain" - ], - "references": [ - { - "description": "Use for small spaces between elements.", + }, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.sm}", + "compact": { + "description": "Use to set the horizontal padding inside a compact, plain action/button.", + "type": "number", + "value": "{global.spacer.xs}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false + } + }, + "name": "pf-t--global--spacer--action--horizontal--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "plain" + ], + "references": [ + { "description": "Use for small spaces between elements.", "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--action--horizontal--compact": { - "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--action--horizontal--compact", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "horizontal", - "state": "compact" - }, - "path": [ - "global", - "spacer", - "action", - "horizontal", - "compact" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--action--horizontal--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "compact" + ], + "references": [ + { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--action--horizontal--spacious": { - "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", - "type": "number", - "value": "2rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", "type": "number", - "value": "{global.spacer.xl}" - }, - "name": "pf-t--global--spacer--action--horizontal--spacious", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "horizontal", - "state": "spacious" - }, - "path": [ - "global", - "spacer", - "action", - "horizontal", - "spacious" - ], - "references": [ - { - "description": "Use for extra large spaces between elements.", + "value": "2rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", "type": "number", - "value": "2rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.xl}" + }, + "name": "pf-t--global--spacer--action--horizontal--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "spacious" + ], + "references": [ + { "description": "Use for extra large spaces between elements.", "type": "number", - "value": "{global.spacer.500}" - }, - "name": "pf-t--global--spacer--xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xl" - }, - "path": [ - "global", - "spacer", - "xl" - ], - "references": [ - { + "value": "2rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra large spaces between elements.", "type": "number", - "value": "2rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.500}" + }, + "name": "pf-t--global--spacer--xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xl" + }, + "path": [ + "global", + "spacer", + "xl" + ], + "references": [ + { "type": "number", - "value": 32 - }, - "name": "pf-t--global--spacer--500", - "attributes": { - "category": "global", - "type": "spacer", - "item": "500" - }, - "path": [ - "global", - "spacer", - "500" - ] - } - ] - } - ] + "value": "2rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--action--vertical--compact": { - "description": "Use to set the vertical padding inside a compact action, like compact buttons.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the vertical padding inside a compact action, like compact buttons.", "type": "number", - "value": "{global.spacer.xs}" - }, - "name": "pf-t--global--spacer--action--vertical--compact", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "vertical", - "state": "compact" - }, - "path": [ - "global", - "spacer", - "action", - "vertical", - "compact" - ], - "references": [ - { - "description": "Use for extra small spaces between elements.", + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the vertical padding inside a compact action, like compact buttons.", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--action--vertical--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "vertical", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "action", + "vertical", + "compact" + ], + "references": [ + { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra small spaces between elements.", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - } - ] + "value": "0.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--action--vertical--spacious": { - "description": "Use to set the vertical padding inside a large/display action, like CTAs.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to set the vertical padding inside a large/display action, like CTAs.", "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--action--vertical--spacious", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "vertical", - "state": "spacious" - }, - "path": [ - "global", - "spacer", - "action", - "vertical", - "spacious" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to set the vertical padding inside a large/display action, like CTAs.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--action--vertical--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "vertical", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "action", + "vertical", + "spacious" + ], + "references": [ + { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--sm": { - "description": "Use for small icons.", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for small icons.", "type": "number", - "value": "{global.icon.size.100}" - }, - "name": "pf-t--global--icon--size--sm", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "icon", - "size", - "sm" - ], - "references": [ - { + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for small icons.", "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.icon.size.100}" + }, + "name": "pf-t--global--icon--size--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "icon", + "size", + "sm" + ], + "references": [ + { "type": "number", - "value": 12 - }, - "name": "pf-t--global--icon--size--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "size", - "100" - ] - } - ] + "value": "0.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--icon--size--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "size", + "100" + ] + } + ] + } }, "pf-t--global--icon--size--md": { - "description": "Use for medium icons.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for medium icons.", "type": "number", - "value": "{global.icon.size.200}" - }, - "name": "pf-t--global--icon--size--md", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "icon", - "size", - "md" - ], - "references": [ - { + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for medium icons.", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.icon.size.200}" + }, + "name": "pf-t--global--icon--size--md", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "icon", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 14 - }, - "name": "pf-t--global--icon--size--200", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "icon", - "size", - "200" - ] - } - ] + "value": "0.875rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--icon--size--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "size", + "200" + ] + } + ] + } }, "pf-t--global--icon--size--lg": { - "description": "Use for large icons.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for large icons.", "type": "number", - "value": "{global.icon.size.250}" - }, - "name": "pf-t--global--icon--size--lg", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "icon", - "size", - "lg" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for large icons.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.icon.size.250}" + }, + "name": "pf-t--global--icon--size--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "icon", + "size", + "lg" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--icon--size--250", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "250" - }, - "path": [ - "global", - "icon", - "size", - "250" - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--icon--size--250", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "250" + }, + "path": [ + "global", + "icon", + "size", + "250" + ] + } + ] + } }, "pf-t--global--icon--size--xl": { - "description": "Use for extra large icons.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for extra large icons.", "type": "number", - "value": "{global.icon.size.300}" - }, - "name": "pf-t--global--icon--size--xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "icon", - "size", - "xl" - ], - "references": [ - { + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for extra large icons.", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.icon.size.300}" + }, + "name": "pf-t--global--icon--size--xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "icon", + "size", + "xl" + ], + "references": [ + { "type": "number", - "value": 22 - }, - "name": "pf-t--global--icon--size--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "size", - "300" - ] - } - ] + "value": "1.375rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--icon--size--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "size", + "300" + ] + } + ] + } }, "pf-t--global--icon--size--2xl": { - "description": "Use for double extra large icons.", - "type": "number", - "value": "3.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for double extra large icons.", "type": "number", - "value": "{global.icon.size.400}" - }, - "name": "pf-t--global--icon--size--2xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "icon", - "size", - "2xl" - ], - "references": [ - { + "value": "3.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for double extra large icons.", "type": "number", - "value": "3.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.icon.size.400}" + }, + "name": "pf-t--global--icon--size--2xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "icon", + "size", + "2xl" + ], + "references": [ + { "type": "number", - "value": 56 - }, - "name": "pf-t--global--icon--size--400", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "icon", - "size", - "400" - ] - } - ] + "value": "3.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 56 + }, + "name": "pf-t--global--icon--size--400", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "icon", + "size", + "400" + ] + } + ] + } }, "pf-t--global--icon--size--3xl": { - "description": "Use for triple extra large icons.", - "type": "number", - "value": "6rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for triple extra large icons.", "type": "number", - "value": "{global.icon.size.500}" - }, - "name": "pf-t--global--icon--size--3xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "3xl" - }, - "path": [ - "global", - "icon", - "size", - "3xl" - ], - "references": [ - { + "value": "6rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for triple extra large icons.", "type": "number", - "value": "6rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.icon.size.500}" + }, + "name": "pf-t--global--icon--size--3xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "icon", + "size", + "3xl" + ], + "references": [ + { "type": "number", - "value": 96 - }, - "name": "pf-t--global--icon--size--500", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "icon", - "size", - "500" - ] - } - ] + "value": "6rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 96 + }, + "name": "pf-t--global--icon--size--500", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "icon", + "size", + "500" + ] + } + ] + } }, "pf-t--global--icon--size--font--heading--h1": { - "description": "Use for icons that are placed inline with first level headings", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with first level headings", "type": "number", - "value": "{global.font.size.heading.h1}" - }, - "name": "pf-t--global--icon--size--font--heading--h1", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h1" - ], - "references": [ - { - "description": "Use as the font size for first level headings.", + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with first level headings", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.heading.h1}" + }, + "name": "pf-t--global--icon--size--font--heading--h1", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h1" + ], + "references": [ + { "description": "Use as the font size for first level headings.", "type": "number", - "value": "{global.font.size.2xl}" - }, - "name": "pf-t--global--font--size--heading--h1", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h1" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h1" - ], - "references": [ - { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for first level headings.", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--font--size--heading--h1", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h1" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h1" + ], + "references": [ + { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] - } - ] - } - ] + "value": "1.375rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--heading--h2": { - "description": "Use for icons that are placed inline with second level headings", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with second level headings", "type": "number", - "value": "{global.font.size.heading.h2}" - }, - "name": "pf-t--global--icon--size--font--heading--h2", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h2" - ], - "references": [ - { - "description": "Use as the font size for second level headings.", + "value": "1.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with second level headings", "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.heading.h2}" + }, + "name": "pf-t--global--icon--size--font--heading--h2", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h2" + ], + "references": [ + { "description": "Use as the font size for second level headings.", "type": "number", - "value": "{global.font.size.xl}" - }, - "name": "pf-t--global--font--size--heading--h2", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h2" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h2" - ], - "references": [ - { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "value": "1.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for second level headings.", "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--font--size--heading--h2", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h2" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h2" + ], + "references": [ + { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.500}" - }, - "name": "pf-t--global--font--size--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "font", - "size", - "xl" - ], - "references": [ - { + "value": "1.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - } - ] - } - ] - } - ] + "value": "1.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--heading--h3": { - "description": "Use for icons that are placed inline with third level headings", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with third level headings", "type": "number", - "value": "{global.font.size.heading.h3}" - }, - "name": "pf-t--global--icon--size--font--heading--h3", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h3" - ], - "references": [ - { - "description": "Use as the font size for third level headings.", + "value": "1.125rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with third level headings", "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.heading.h3}" + }, + "name": "pf-t--global--icon--size--font--heading--h3", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h3" + ], + "references": [ + { "description": "Use as the font size for third level headings.", "type": "number", - "value": "{global.font.size.lg}" - }, - "name": "pf-t--global--font--size--heading--h3", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h3" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h3" - ], - "references": [ - { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "value": "1.125rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for third level headings.", "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--font--size--heading--h3", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h3" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h3" + ], + "references": [ + { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.400}" - }, - "name": "pf-t--global--font--size--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "font", - "size", - "lg" - ], - "references": [ - { + "value": "1.125rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - } - ] - } - ] - } - ] + "value": "1.125rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--heading--h4": { - "description": "Use for icons that are placed inline with fourth level headings", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with fourth level headings", "type": "number", - "value": "{global.font.size.heading.h4}" - }, - "name": "pf-t--global--icon--size--font--heading--h4", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h4" - ], - "references": [ - { - "description": "Use as the font size for fourth-level headings.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with fourth level headings", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.heading.h4}" + }, + "name": "pf-t--global--icon--size--font--heading--h4", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h4" + ], + "references": [ + { "description": "Use as the font size for fourth-level headings.", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h4", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h4" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h4" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for fourth-level headings.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h4", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h4" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h4" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--heading--h5": { - "description": "Use for icons that are placed inline with fifth level headings", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with fifth level headings", "type": "number", - "value": "{global.font.size.heading.h5}" - }, - "name": "pf-t--global--icon--size--font--heading--h5", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h5" - ], - "references": [ - { - "description": "Use as the font size for fifth level headings.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with fifth level headings", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.heading.h5}" + }, + "name": "pf-t--global--icon--size--font--heading--h5", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h5" + ], + "references": [ + { "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h5", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h5" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h5" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h5", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h5" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h5" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--heading--h6": { - "description": "Use for icons that are placed inline with sixth level headings", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with sixth level headings", "type": "number", - "value": "{global.font.size.heading.h6}" - }, - "name": "pf-t--global--icon--size--font--heading--h6", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h6" - ], - "references": [ - { - "description": "Use as the font size for sixth level headings.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with sixth level headings", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.heading.h6}" + }, + "name": "pf-t--global--icon--size--font--heading--h6", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h6" + ], + "references": [ + { "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h6", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h6" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h6" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h6", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h6" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h6" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--body--sm": { - "description": "Use for icons that are placed inline with small body text", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with small body text", "type": "number", - "value": "{global.font.size.body.sm}" - }, - "name": "pf-t--global--icon--size--font--body--sm", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "body" - }, - "path": [ - "global", - "icon", - "size", - "font", - "body", - "sm" - ], - "references": [ - { - "description": "Use for a smaller font size in body sections.", + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with small body text", "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.body.sm}" + }, + "name": "pf-t--global--icon--size--font--body--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "sm" + ], + "references": [ + { "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "{global.font.size.xs}" - }, - "name": "pf-t--global--font--size--body--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "sm" - }, - "path": [ - "global", - "font", - "size", - "body", - "sm" - ], - "references": [ - { + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--font--size--body--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "sm" + }, + "path": [ + "global", + "font", + "size", + "body", + "sm" + ], + "references": [ + { "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] - } - ] - } - ] + "value": "0.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--body--default": { - "description": "Use for icons that are placed inline with default body text", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with default body text", "type": "number", - "value": "{global.font.size.body.default}" - }, - "name": "pf-t--global--icon--size--font--body--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "body" - }, - "path": [ - "global", - "icon", - "size", - "font", - "body", - "default" - ], - "references": [ - { - "description": "Use as the default font size in body sections.", + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with default body text", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.body.default}" + }, + "name": "pf-t--global--icon--size--font--body--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "default" + ], + "references": [ + { "description": "Use as the default font size in body sections.", "type": "number", - "value": "{global.font.size.sm}" - }, - "name": "pf-t--global--font--size--body--default", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "default" - }, - "path": [ - "global", - "font", - "size", - "body", - "default" - ], - "references": [ - { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the default font size in body sections.", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--font--size--body--default", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "default" + }, + "path": [ + "global", + "font", + "size", + "body", + "default" + ], + "references": [ + { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] - } - ] - } - ] + "value": "0.875rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--body--lg": { - "description": "Use for icons that are placed inline with large body text", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with large body text", "type": "number", - "value": "{global.font.size.body.lg}" - }, - "name": "pf-t--global--icon--size--font--body--lg", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "body" - }, - "path": [ - "global", - "icon", - "size", - "font", - "body", - "lg" - ], - "references": [ - { - "description": "Use for a larger font size in body sections.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with large body text", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.body.lg}" + }, + "name": "pf-t--global--icon--size--font--body--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "lg" + ], + "references": [ + { "description": "Use for a larger font size in body sections.", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--body--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "lg" - }, - "path": [ - "global", - "font", - "size", - "body", - "lg" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for a larger font size in body sections.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--body--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "lg" + }, + "path": [ + "global", + "font", + "size", + "body", + "lg" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--xs": { - "description": "Use for icons that are placed inline with font–size–xs text", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with font–size–xs text", "type": "number", - "value": "{global.font.size.xs}" - }, - "name": "pf-t--global--icon--size--font--xs", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "xs" - }, - "path": [ - "global", - "icon", - "size", - "font", - "xs" - ], - "references": [ - { + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with font–size–xs text", "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--icon--size--font--xs", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "xs" + }, + "path": [ + "global", + "icon", + "size", + "font", + "xs" + ], + "references": [ + { "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] - } - ] + "value": "0.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--sm": { - "description": "Use for icons that are placed inline with font–size–sm text", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with font–size–sm text", "type": "number", - "value": "{global.font.size.sm}" - }, - "name": "pf-t--global--icon--size--font--sm", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "sm" - }, - "path": [ - "global", - "icon", - "size", - "font", - "sm" - ], - "references": [ - { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with font–size–sm text", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--icon--size--font--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "sm" + }, + "path": [ + "global", + "icon", + "size", + "font", + "sm" + ], + "references": [ + { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] - } - ] + "value": "0.875rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--md": { - "description": "Use for icons that are placed inline with font–size–md text", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with font–size–md text", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--icon--size--font--md", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "md" - }, - "path": [ - "global", - "icon", - "size", - "font", - "md" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with font–size–md text", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--icon--size--font--md", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "md" + }, + "path": [ + "global", + "icon", + "size", + "font", + "md" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--lg": { - "description": "Use for icons that are placed inline with font–size–lg text", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with font–size–lg text", "type": "number", - "value": "{global.font.size.lg}" - }, - "name": "pf-t--global--icon--size--font--lg", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "lg" - }, - "path": [ - "global", - "icon", - "size", - "font", - "lg" - ], - "references": [ - { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "value": "1.125rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with font–size–lg text", "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--icon--size--font--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "lg" + }, + "path": [ + "global", + "icon", + "size", + "font", + "lg" + ], + "references": [ + { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.400}" - }, - "name": "pf-t--global--font--size--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "font", - "size", - "lg" - ], - "references": [ - { + "value": "1.125rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - } - ] - } - ] + "value": "1.125rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--xl": { - "description": "Use for icons that are placed inline with font–size–xl text", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with font–size–xl text", "type": "number", - "value": "{global.font.size.xl}" - }, - "name": "pf-t--global--icon--size--font--xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "xl" - }, - "path": [ - "global", - "icon", - "size", - "font", - "xl" - ], - "references": [ - { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "value": "1.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with font–size–xl text", "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--icon--size--font--xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "xl" + ], + "references": [ + { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.500}" - }, - "name": "pf-t--global--font--size--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "font", - "size", - "xl" - ], - "references": [ - { + "value": "1.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - } - ] - } - ] + "value": "1.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--2xl": { - "description": "Use for icons that are placed inline with font–size–2xl text", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with font–size–2xl text", "type": "number", - "value": "{global.font.size.2xl}" - }, - "name": "pf-t--global--icon--size--font--2xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "2xl" - }, - "path": [ - "global", - "icon", - "size", - "font", - "2xl" - ], - "references": [ - { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with font–size–2xl text", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--icon--size--font--2xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "2xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "2xl" + ], + "references": [ + { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] - } - ] + "value": "1.375rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--3xl": { - "description": "Use for icons that are placed inline with font–size–3xl text", - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", - "value": "{global.font.size.3xl}" - }, - "name": "pf-t--global--icon--size--font--3xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "3xl" - }, - "path": [ - "global", - "icon", - "size", - "font", - "3xl" - ], - "references": [ - { - "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", + "value": "1.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.3xl}" + }, + "name": "pf-t--global--icon--size--font--3xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "3xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "3xl" + ], + "references": [ + { "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.700}" - }, - "name": "pf-t--global--font--size--3xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "3xl" - }, - "path": [ - "global", - "font", - "size", - "3xl" - ], - "references": [ - { + "value": "1.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.700}" + }, + "name": "pf-t--global--font--size--3xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "font", + "size", + "3xl" + ], + "references": [ + { "type": "number", - "value": 28 - }, - "name": "pf-t--global--font--size--700", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "700" - }, - "path": [ - "global", - "font", - "size", - "700" - ] - } - ] - } - ] + "value": "1.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--4xl": { - "description": "Use for icons that are placed inline with font–size–3xl text", - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", - "value": "{global.font.size.4xl}" - }, - "name": "pf-t--global--icon--size--font--4xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "4xl" - }, - "path": [ - "global", - "icon", - "size", - "font", - "4xl" - ], - "references": [ - { - "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", + "value": "2.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.4xl}" + }, + "name": "pf-t--global--icon--size--font--4xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "4xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "4xl" + ], + "references": [ + { "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.800}" - }, - "name": "pf-t--global--font--size--4xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "4xl" - }, - "path": [ - "global", - "font", - "size", - "4xl" - ], - "references": [ - { + "value": "2.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.800}" + }, + "name": "pf-t--global--font--size--4xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "4xl" + }, + "path": [ + "global", + "font", + "size", + "4xl" + ], + "references": [ + { "type": "number", - "value": 36 - }, - "name": "pf-t--global--font--size--800", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "800" - }, - "path": [ - "global", - "font", - "size", - "800" - ] - } - ] - } - ] + "value": "2.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + } + ] + } + ] + } }, "pf-t--global--border--width--regular": { - "description": "Use as the default border width for elements.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the default border width for elements.", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--regular", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "regular" - }, - "path": [ - "global", - "border", - "width", - "regular" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the default border width for elements.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--regular", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "regular" + }, + "path": [ + "global", + "border", + "width", + "regular" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--divider--default": { - "description": "Use as the default border width for dividers.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the default border width for dividers.", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--divider--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "divider", - "state": "default" - }, - "path": [ - "global", - "border", - "width", - "divider", - "default" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the default border width for dividers.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "divider", + "default" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--divider--hover": { - "description": "Use as the border width hover state for dividers.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the border width hover state for dividers.", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--divider--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "divider", - "state": "hover" - }, - "path": [ - "global", - "border", - "width", - "divider", - "hover" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the border width hover state for dividers.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "divider", + "hover" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--divider--clicked": { - "description": "Use as the border width clicked state for dividers.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the border width clicked state for dividers.", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--divider--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "divider", - "state": "clicked" - }, - "path": [ - "global", - "border", - "width", - "divider", - "clicked" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the border width clicked state for dividers.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "divider", + "clicked" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--strong": { - "description": "Use as a stronger/wider border width for elements.", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as a stronger/wider border width for elements.", "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--strong", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "strong" - }, - "path": [ - "global", - "border", - "width", - "strong" - ], - "references": [ - { + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as a stronger/wider border width for elements.", "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--strong", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "strong" + }, + "path": [ + "global", + "border", + "width", + "strong" + ], + "references": [ + { "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + } }, "pf-t--global--border--width--extra-strong": { - "description": "Use as the strongest/widest border width for elements.", - "type": "number", - "value": "3px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the strongest/widest border width for elements.", "type": "number", - "value": "{global.border.width.300}" - }, - "name": "pf-t--global--border--width--extra-strong", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "extra-strong" - }, - "path": [ - "global", - "border", - "width", - "extra-strong" - ], - "references": [ - { + "value": "3px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the strongest/widest border width for elements.", "type": "number", - "value": "3px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.300}" + }, + "name": "pf-t--global--border--width--extra-strong", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "extra-strong" + }, + "path": [ + "global", + "border", + "width", + "extra-strong" + ], + "references": [ + { "type": "number", - "value": 3 - }, - "name": "pf-t--global--border--width--300", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "300" - }, - "path": [ - "global", - "border", - "width", - "300" - ] - } - ] + "value": "3px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 3 + }, + "name": "pf-t--global--border--width--300", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "300" + }, + "path": [ + "global", + "border", + "width", + "300" + ] + } + ] + } }, "pf-t--global--border--width--box--default": { - "description": "Use as the default border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the default border width for containers like cards, panels, code editors, etc.", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--box--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "default" - }, - "path": [ - "global", - "border", - "width", - "box", - "default" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the default border width for containers like cards, panels, code editors, etc.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "box", + "default" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--box--hover": { - "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--box--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "hover" - }, - "path": [ - "global", - "border", - "width", - "box", - "hover" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "box", + "hover" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--box--clicked": { - "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--box--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "clicked" - }, - "path": [ - "global", - "border", - "width", - "box", - "clicked" - ], - "references": [ - { + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--box--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "box", + "clicked" + ], + "references": [ + { "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + } }, "pf-t--global--border--width--box--status--default": { - "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--box--status--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "status" - }, - "path": [ - "global", - "border", - "width", - "box", - "status", - "default" - ], - "references": [ - { + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--box--status--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "status" + }, + "path": [ + "global", + "border", + "width", + "box", + "status", + "default" + ], + "references": [ + { "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + } }, "pf-t--global--border--width--box--status--read": { - "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--box--status--read", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "status" - }, - "path": [ - "global", - "border", - "width", - "box", - "status", - "read" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--status--read", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "status" + }, + "path": [ + "global", + "border", + "width", + "box", + "status", + "read" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--action--default": { - "description": "Use as the default border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the default border width for actions like secondary and tertiary buttons", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--action--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "action", - "state": "default" - }, - "path": [ - "global", - "border", - "width", - "action", - "default" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the default border width for actions like secondary and tertiary buttons", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--action--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "action", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "action", + "default" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--action--hover": { - "description": "Use as the hover state border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the hover state border width for actions like secondary and tertiary buttons", "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--action--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "action", - "state": "hover" - }, - "path": [ - "global", - "border", - "width", - "action", - "hover" - ], - "references": [ - { + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the hover state border width for actions like secondary and tertiary buttons", "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--action--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "action", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "action", + "hover" + ], + "references": [ + { "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + } }, "pf-t--global--border--width--action--clicked": { - "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--action--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "action", - "state": "clicked" - }, - "path": [ - "global", - "border", - "width", - "action", - "clicked" - ], - "references": [ - { + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--action--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "action", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "action", + "clicked" + ], + "references": [ + { "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + } }, "pf-t--global--border--width--control--default": { - "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--control--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "control", - "state": "default" - }, - "path": [ - "global", - "border", - "width", - "control", - "default" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--control--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "control", + "default" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--control--hover": { - "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--control--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "control", - "state": "hover" - }, - "path": [ - "global", - "border", - "width", - "control", - "hover" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--control--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "control", + "hover" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--control--clicked": { - "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--control--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "control", - "state": "clicked" - }, - "path": [ - "global", - "border", - "width", - "control", - "clicked" - ], - "references": [ - { + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--control--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "control", + "clicked" + ], + "references": [ + { "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + } }, "pf-t--global--border--radius--sharp": { - "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", "type": "number", - "value": "{global.border.radius.0}" - }, - "name": "pf-t--global--border--radius--sharp", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "sharp" - }, - "path": [ - "global", - "border", - "radius", - "sharp" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.radius.0}" + }, + "name": "pf-t--global--border--radius--sharp", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "sharp" + }, + "path": [ + "global", + "border", + "radius", + "sharp" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--border--radius--0", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "0" - }, - "path": [ - "global", - "border", - "radius", - "0" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--border--radius--0", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "0" + }, + "path": [ + "global", + "border", + "radius", + "0" + ] + } + ] + } }, "pf-t--global--border--radius--tiny": { - "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", "type": "number", - "value": "{global.border.radius.100}" - }, - "name": "pf-t--global--border--radius--tiny", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "tiny" - }, - "path": [ - "global", - "border", - "radius", - "tiny" - ], - "references": [ - { + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.radius.100}" + }, + "name": "pf-t--global--border--radius--tiny", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "tiny" + }, + "path": [ + "global", + "border", + "radius", + "tiny" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--border--radius--100", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "100" - }, - "path": [ - "global", - "border", - "radius", - "100" - ] - } - ] + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--border--radius--100", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "100" + }, + "path": [ + "global", + "border", + "radius", + "100" + ] + } + ] + } }, "pf-t--global--border--radius--small": { - "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", - "type": "number", - "value": "6px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", "type": "number", - "value": "{global.border.radius.200}" - }, - "name": "pf-t--global--border--radius--small", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "small" - }, - "path": [ - "global", - "border", - "radius", - "small" - ], - "references": [ - { + "value": "6px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", "type": "number", - "value": "6px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.radius.200}" + }, + "name": "pf-t--global--border--radius--small", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "small" + }, + "path": [ + "global", + "border", + "radius", + "small" + ], + "references": [ + { "type": "number", - "value": 6 - }, - "name": "pf-t--global--border--radius--200", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "200" - }, - "path": [ - "global", - "border", - "radius", - "200" - ] - } - ] + "value": "6px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 6 + }, + "name": "pf-t--global--border--radius--200", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "200" + }, + "path": [ + "global", + "border", + "radius", + "200" + ] + } + ] + } }, "pf-t--global--border--radius--medium": { - "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", - "type": "number", - "value": "16px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", "type": "number", - "value": "{global.border.radius.300}" - }, - "name": "pf-t--global--border--radius--medium", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "medium" - }, - "path": [ - "global", - "border", - "radius", - "medium" - ], - "references": [ - { + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", "type": "number", - "value": "16px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.radius.300}" + }, + "name": "pf-t--global--border--radius--medium", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "medium" + }, + "path": [ + "global", + "border", + "radius", + "medium" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--border--radius--300", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "300" - }, - "path": [ - "global", - "border", - "radius", - "300" - ] - } - ] + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--border--radius--300", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "300" + }, + "path": [ + "global", + "border", + "radius", + "300" + ] + } + ] + } }, "pf-t--global--border--radius--large": { - "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", - "type": "number", - "value": "24px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", "type": "number", - "value": "{global.border.radius.400}" - }, - "name": "pf-t--global--border--radius--large", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "large" - }, - "path": [ - "global", - "border", - "radius", - "large" - ], - "references": [ - { + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", "type": "number", - "value": "24px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.radius.400}" + }, + "name": "pf-t--global--border--radius--large", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "large" + }, + "path": [ + "global", + "border", + "radius", + "large" + ], + "references": [ + { "type": "number", - "value": 24 - }, - "name": "pf-t--global--border--radius--400", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "400" - }, - "path": [ - "global", - "border", - "radius", - "400" - ] - } - ] + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--border--radius--400", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "400" + }, + "path": [ + "global", + "border", + "radius", + "400" + ] + } + ] + } }, "pf-t--global--border--radius--pill": { - "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", - "type": "number", - "value": "999px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", "type": "number", - "value": "{global.border.radius.500}" - }, - "name": "pf-t--global--border--radius--pill", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "pill" - }, - "path": [ - "global", - "border", - "radius", - "pill" - ], - "references": [ - { + "value": "999px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", "type": "number", - "value": "999px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.border.radius.500}" + }, + "name": "pf-t--global--border--radius--pill", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "pill" + }, + "path": [ + "global", + "border", + "radius", + "pill" + ], + "references": [ + { "type": "number", - "value": 999 - }, - "name": "pf-t--global--border--radius--500", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "500" - }, - "path": [ - "global", - "border", - "radius", - "500" - ] - } - ] + "value": "999px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 999 + }, + "name": "pf-t--global--border--radius--500", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "500" + }, + "path": [ + "global", + "border", + "radius", + "500" + ] + } + ] + } }, "pf-t--global--font--family--body": { - "description": "Use to define the font family for body text", - "type": "number", - "value": "Red Hat Text VF", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the font family for body text", "type": "number", - "value": "{global.font.family.100}" - }, - "name": "pf-t--global--font--family--body", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "body" - }, - "path": [ - "global", - "font", - "family", - "body" - ], - "references": [ - { - "type": "string", - "value": "Red Hat Text VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "Red Hat Text VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the font family for body text", + "type": "number", + "value": "{global.font.family.100}" + }, + "name": "pf-t--global--font--family--body", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "body" + }, + "path": [ + "global", + "font", + "family", + "body" + ], + "references": [ + { "type": "string", - "value": "Red Hat Text VF" - }, - "name": "pf-t--global--font--family--100", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "100" - }, - "path": [ - "global", - "font", - "family", - "100" - ] - } - ] + "value": "Red Hat Text VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Text VF" + }, + "name": "pf-t--global--font--family--100", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "100" + }, + "path": [ + "global", + "font", + "family", + "100" + ] + } + ] + } }, "pf-t--global--font--family--heading": { - "description": "Use to define the font family for heading text", - "type": "number", - "value": "Red Hat Display VF", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the font family for heading text", "type": "number", - "value": "{global.font.family.200}" - }, - "name": "pf-t--global--font--family--heading", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "heading" - }, - "path": [ - "global", - "font", - "family", - "heading" - ], - "references": [ - { - "type": "string", - "value": "Red Hat Display VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "Red Hat Display VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the font family for heading text", + "type": "number", + "value": "{global.font.family.200}" + }, + "name": "pf-t--global--font--family--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "family", + "heading" + ], + "references": [ + { "type": "string", - "value": "Red Hat Display VF" - }, - "name": "pf-t--global--font--family--200", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "200" - }, - "path": [ - "global", - "font", - "family", - "200" - ] - } - ] + "value": "Red Hat Display VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Display VF" + }, + "name": "pf-t--global--font--family--200", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "200" + }, + "path": [ + "global", + "font", + "family", + "200" + ] + } + ] + } }, "pf-t--global--font--family--mono": { - "description": "Use to define the font family for mono text", - "type": "number", - "value": "Red Hat Mono VF", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the font family for mono text", "type": "number", - "value": "{global.font.family.300}" - }, - "name": "pf-t--global--font--family--mono", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "mono" - }, - "path": [ - "global", - "font", - "family", - "mono" - ], - "references": [ - { - "type": "string", - "value": "Red Hat Mono VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "Red Hat Mono VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the font family for mono text", + "type": "number", + "value": "{global.font.family.300}" + }, + "name": "pf-t--global--font--family--mono", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "mono" + }, + "path": [ + "global", + "font", + "family", + "mono" + ], + "references": [ + { "type": "string", - "value": "Red Hat Mono VF" - }, - "name": "pf-t--global--font--family--300", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "300" - }, - "path": [ - "global", - "font", - "family", - "300" - ] - } - ] + "value": "Red Hat Mono VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Mono VF" + }, + "name": "pf-t--global--font--family--300", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "300" + }, + "path": [ + "global", + "font", + "family", + "300" + ] + } + ] + } }, "pf-t--global--font--weight--body": { - "description": "Use to define the default weight for body text", - "type": "number", - "value": 400, - "bold": { - "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", - "type": "number", - "value": 500, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false - }, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the default weight for body text", "type": "number", - "value": "{global.font.weight.100}", + "value": 400, "bold": { "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", "type": "number", - "value": "{global.font.weight.200}", + "value": 500, "filePath": "tokens/default/semantic.dimension.json", "isSource": false - } - }, - "name": "pf-t--global--font--weight--body", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "body" - }, - "path": [ - "global", - "font", - "weight", - "body" - ], - "references": [ - { - "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 400 - }, - "name": "pf-t--global--font--weight--100", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "100" - }, - "path": [ - "global", - "font", - "weight", - "100" - ] - } - ] - }, - "pf-t--global--font--weight--heading": { - "description": "Use to define the default weight for heading text", - "type": "number", - "value": 700, - "bold": { - "description": "Use to define the bold weight for heading text, often used to add emphasis.", - "type": "number", - "value": 700, + }, "filePath": "tokens/default/semantic.dimension.json", - "isSource": false - }, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the default weight for heading text", - "type": "number", - "value": "{global.font.weight.300}", - "bold": { - "description": "Use to define the bold weight for heading text, often used to add emphasis.", + "isSource": false, + "original": { + "description": "Use to define the default weight for body text", "type": "number", - "value": "{global.font.weight.400}", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false - } - }, - "name": "pf-t--global--font--weight--heading", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "heading" - }, - "path": [ - "global", - "font", - "weight", - "heading" - ], - "references": [ - { + "value": "{global.font.weight.100}", + "bold": { + "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", + "type": "number", + "value": "{global.font.weight.200}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false + } + }, + "name": "pf-t--global--font--weight--body", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "body" + }, + "path": [ + "global", + "font", + "weight", + "body" + ], + "references": [ + { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--font--weight--100", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "100" + }, + "path": [ + "global", + "font", + "weight", + "100" + ] + } + ] + } + }, + "pf-t--global--font--weight--heading": { + "default": { + "description": "Use to define the default weight for heading text", + "type": "number", + "value": 700, + "bold": { + "description": "Use to define the bold weight for heading text, often used to add emphasis.", "type": "number", "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false + }, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the default weight for heading text", + "type": "number", + "value": "{global.font.weight.300}", + "bold": { + "description": "Use to define the bold weight for heading text, often used to add emphasis.", "type": "number", - "value": 700 - }, - "name": "pf-t--global--font--weight--300", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "300" - }, - "path": [ - "global", - "font", - "weight", - "300" - ] - } - ] + "value": "{global.font.weight.400}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false + } + }, + "name": "pf-t--global--font--weight--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "weight", + "heading" + ], + "references": [ + { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 700 + }, + "name": "pf-t--global--font--weight--300", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "300" + }, + "path": [ + "global", + "font", + "weight", + "300" + ] + } + ] + } }, "pf-t--global--font--line-height--body": { - "description": "Use to define the line height for body text", - "type": "number", - "value": 1.2999999523162842, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the line height for body text", "type": "number", - "value": "{global.font.line-height.100}" - }, - "name": "pf-t--global--font--line-height--body", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "body" - }, - "path": [ - "global", - "font", - "line-height", - "body" - ], - "references": [ - { + "value": 1.2999999523162842, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the line height for body text", "type": "number", - "value": 1.2999999523162842, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.line-height.100}" + }, + "name": "pf-t--global--font--line-height--body", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "body" + }, + "path": [ + "global", + "font", + "line-height", + "body" + ], + "references": [ + { "type": "number", - "value": 1.2999999523162842 - }, - "name": "pf-t--global--font--line-height--100", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "100" - }, - "path": [ - "global", - "font", - "line-height", - "100" - ] - } - ] + "value": 1.2999999523162842, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1.2999999523162842 + }, + "name": "pf-t--global--font--line-height--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "100" + }, + "path": [ + "global", + "font", + "line-height", + "100" + ] + } + ] + } }, "pf-t--global--font--line-height--heading": { - "description": "Use to define the line height for heading text", - "type": "number", - "value": 1.5, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the line height for heading text", "type": "number", - "value": "{global.font.line-height.200}" - }, - "name": "pf-t--global--font--line-height--heading", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "heading" - }, - "path": [ - "global", - "font", - "line-height", - "heading" - ], - "references": [ - { + "value": 1.5, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the line height for heading text", "type": "number", - "value": 1.5, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.line-height.200}" + }, + "name": "pf-t--global--font--line-height--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "heading" + ], + "references": [ + { "type": "number", - "value": 1.5 - }, - "name": "pf-t--global--font--line-height--200", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "200" - }, - "path": [ - "global", - "font", - "line-height", - "200" - ] - } - ] + "value": 1.5, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1.5 + }, + "name": "pf-t--global--font--line-height--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "200" + }, + "path": [ + "global", + "font", + "line-height", + "200" + ] + } + ] + } }, "pf-t--global--font--size--body--sm": { - "description": "Use for a smaller font size in body sections.", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "{global.font.size.xs}" - }, - "name": "pf-t--global--font--size--body--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "sm" - }, - "path": [ - "global", - "font", - "size", - "body", - "sm" - ], - "references": [ - { + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--font--size--body--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "sm" + }, + "path": [ + "global", + "font", + "size", + "body", + "sm" + ], + "references": [ + { "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] - } - ] + "value": "0.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--body--default": { - "description": "Use as the default font size in body sections.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the default font size in body sections.", "type": "number", - "value": "{global.font.size.sm}" - }, - "name": "pf-t--global--font--size--body--default", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "default" - }, - "path": [ - "global", - "font", - "size", - "body", - "default" - ], - "references": [ - { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the default font size in body sections.", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--font--size--body--default", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "default" + }, + "path": [ + "global", + "font", + "size", + "body", + "default" + ], + "references": [ + { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] - } - ] + "value": "0.875rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--body--lg": { - "description": "Use for a larger font size in body sections.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use for a larger font size in body sections.", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--body--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "lg" - }, - "path": [ - "global", - "font", - "size", - "body", - "lg" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use for a larger font size in body sections.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--body--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "lg" + }, + "path": [ + "global", + "font", + "size", + "body", + "lg" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--heading--h1": { - "description": "Use as the font size for first level headings.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the font size for first level headings.", "type": "number", - "value": "{global.font.size.2xl}" - }, - "name": "pf-t--global--font--size--heading--h1", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h1" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h1" - ], - "references": [ - { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for first level headings.", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--font--size--heading--h1", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h1" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h1" + ], + "references": [ + { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] - } - ] + "value": "1.375rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--heading--h2": { - "description": "Use as the font size for second level headings.", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the font size for second level headings.", "type": "number", - "value": "{global.font.size.xl}" - }, - "name": "pf-t--global--font--size--heading--h2", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h2" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h2" - ], - "references": [ - { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "value": "1.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for second level headings.", "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--font--size--heading--h2", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h2" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h2" + ], + "references": [ + { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.500}" - }, - "name": "pf-t--global--font--size--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "font", - "size", - "xl" - ], - "references": [ - { + "value": "1.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - } - ] - } - ] + "value": "1.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--heading--h3": { - "description": "Use as the font size for third level headings.", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the font size for third level headings.", "type": "number", - "value": "{global.font.size.lg}" - }, - "name": "pf-t--global--font--size--heading--h3", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h3" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h3" - ], - "references": [ - { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "value": "1.125rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for third level headings.", "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--font--size--heading--h3", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h3" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h3" + ], + "references": [ + { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.400}" - }, - "name": "pf-t--global--font--size--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "font", - "size", - "lg" - ], - "references": [ - { + "value": "1.125rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - } - ] - } - ] + "value": "1.125rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--heading--h4": { - "description": "Use as the font size for fourth-level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the font size for fourth-level headings.", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h4", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h4" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h4" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for fourth-level headings.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h4", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h4" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h4" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--heading--h5": { - "description": "Use as the font size for fifth level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h5", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h5" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h5" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h5", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h5" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h5" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--heading--h6": { - "description": "Use as the font size for sixth level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h6", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h6" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h6" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h6", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h6" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h6" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--xs": { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] + "value": "0.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } }, "pf-t--global--font--size--sm": { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] + "value": "0.875rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } }, "pf-t--global--font--size--md": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } }, "pf-t--global--font--size--lg": { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.400}" - }, - "name": "pf-t--global--font--size--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "font", - "size", - "lg" - ], - "references": [ - { + "value": "1.125rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - } - ] - }, - "pf-t--global--font--size--xl": { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "1.125rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + }, + "pf-t--global--font--size--xl": { + "default": { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.500}" - }, - "name": "pf-t--global--font--size--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "font", - "size", - "xl" - ], - "references": [ - { + "value": "1.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - } - ] + "value": "1.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } }, "pf-t--global--font--size--2xl": { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] + "value": "1.375rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } }, "pf-t--global--font--size--3xl": { - "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.700}" - }, - "name": "pf-t--global--font--size--3xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "3xl" - }, - "path": [ - "global", - "font", - "size", - "3xl" - ], - "references": [ - { + "value": "1.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.700}" + }, + "name": "pf-t--global--font--size--3xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "font", + "size", + "3xl" + ], + "references": [ + { "type": "number", - "value": 28 - }, - "name": "pf-t--global--font--size--700", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "700" - }, - "path": [ - "global", - "font", - "size", - "700" - ] - } - ] + "value": "1.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + } + ] + } }, "pf-t--global--font--size--4xl": { - "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.800}" - }, - "name": "pf-t--global--font--size--4xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "4xl" - }, - "path": [ - "global", - "font", - "size", - "4xl" - ], - "references": [ - { + "value": "2.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.font.size.800}" + }, + "name": "pf-t--global--font--size--4xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "4xl" + }, + "path": [ + "global", + "font", + "size", + "4xl" + ], + "references": [ + { "type": "number", - "value": 36 - }, - "name": "pf-t--global--font--size--800", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "800" - }, - "path": [ - "global", - "font", - "size", - "800" - ] - } - ] + "value": "2.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + } + ] + } }, "pf-t--global--z-index--xs": { - "type": "number", - "value": 100, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "type": "number", - "value": "{global.z-index.100}" - }, - "name": "pf-t--global--z-index--xs", - "attributes": { - "category": "global", - "type": "z-index", - "item": "xs" - }, - "path": [ - "global", - "z-index", - "xs" - ], - "references": [ - { + "value": 100, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { "type": "number", - "value": 100, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.z-index.100}" + }, + "name": "pf-t--global--z-index--xs", + "attributes": { + "category": "global", + "type": "z-index", + "item": "xs" + }, + "path": [ + "global", + "z-index", + "xs" + ], + "references": [ + { "type": "number", - "value": 100 - }, - "name": "pf-t--global--z-index--100", - "attributes": { - "category": "global", - "type": "z-index", - "item": "100" - }, - "path": [ - "global", - "z-index", - "100" - ] - } - ] + "value": 100, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--z-index--100", + "attributes": { + "category": "global", + "type": "z-index", + "item": "100" + }, + "path": [ + "global", + "z-index", + "100" + ] + } + ] + } }, "pf-t--global--z-index--sm": { - "type": "number", - "value": 200, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "type": "number", - "value": "{global.z-index.200}" - }, - "name": "pf-t--global--z-index--sm", - "attributes": { - "category": "global", - "type": "z-index", - "item": "sm" - }, - "path": [ - "global", - "z-index", - "sm" - ], - "references": [ - { + "value": 200, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { "type": "number", - "value": 200, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.z-index.200}" + }, + "name": "pf-t--global--z-index--sm", + "attributes": { + "category": "global", + "type": "z-index", + "item": "sm" + }, + "path": [ + "global", + "z-index", + "sm" + ], + "references": [ + { "type": "number", - "value": 200 - }, - "name": "pf-t--global--z-index--200", - "attributes": { - "category": "global", - "type": "z-index", - "item": "200" - }, - "path": [ - "global", - "z-index", - "200" - ] - } - ] + "value": 200, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--z-index--200", + "attributes": { + "category": "global", + "type": "z-index", + "item": "200" + }, + "path": [ + "global", + "z-index", + "200" + ] + } + ] + } }, "pf-t--global--z-index--md": { - "type": "number", - "value": 300, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "type": "number", - "value": "{global.z-index.300}" - }, - "name": "pf-t--global--z-index--md", - "attributes": { - "category": "global", - "type": "z-index", - "item": "md" - }, - "path": [ - "global", - "z-index", - "md" - ], - "references": [ - { - "type": "number", - "value": 300, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": 300, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": "{global.z-index.300}" + }, + "name": "pf-t--global--z-index--md", + "attributes": { + "category": "global", + "type": "z-index", + "item": "md" + }, + "path": [ + "global", + "z-index", + "md" + ], + "references": [ + { "type": "number", - "value": 300 - }, - "name": "pf-t--global--z-index--300", - "attributes": { - "category": "global", - "type": "z-index", - "item": "300" - }, - "path": [ - "global", - "z-index", - "300" - ] - } - ] + "value": 300, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--z-index--300", + "attributes": { + "category": "global", + "type": "z-index", + "item": "300" + }, + "path": [ + "global", + "z-index", + "300" + ] + } + ] + } }, "pf-t--global--z-index--lg": { - "type": "number", - "value": 400, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "type": "number", - "value": "{global.z-index.400}" - }, - "name": "pf-t--global--z-index--lg", - "attributes": { - "category": "global", - "type": "z-index", - "item": "lg" - }, - "path": [ - "global", - "z-index", - "lg" - ], - "references": [ - { + "value": 400, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.z-index.400}" + }, + "name": "pf-t--global--z-index--lg", + "attributes": { + "category": "global", + "type": "z-index", + "item": "lg" + }, + "path": [ + "global", + "z-index", + "lg" + ], + "references": [ + { "type": "number", - "value": 400 - }, - "name": "pf-t--global--z-index--400", - "attributes": { - "category": "global", - "type": "z-index", - "item": "400" - }, - "path": [ - "global", - "z-index", - "400" - ] - } - ] + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--z-index--400", + "attributes": { + "category": "global", + "type": "z-index", + "item": "400" + }, + "path": [ + "global", + "z-index", + "400" + ] + } + ] + } }, "pf-t--global--z-index--xl": { - "type": "number", - "value": 500, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "type": "number", - "value": "{global.z-index.500}" - }, - "name": "pf-t--global--z-index--xl", - "attributes": { - "category": "global", - "type": "z-index", - "item": "xl" - }, - "path": [ - "global", - "z-index", - "xl" - ], - "references": [ - { + "value": 500, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { "type": "number", - "value": 500, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.z-index.500}" + }, + "name": "pf-t--global--z-index--xl", + "attributes": { + "category": "global", + "type": "z-index", + "item": "xl" + }, + "path": [ + "global", + "z-index", + "xl" + ], + "references": [ + { "type": "number", - "value": 500 - }, - "name": "pf-t--global--z-index--500", - "attributes": { - "category": "global", - "type": "z-index", - "item": "500" - }, - "path": [ - "global", - "z-index", - "500" - ] - } - ] + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--z-index--500", + "attributes": { + "category": "global", + "type": "z-index", + "item": "500" + }, + "path": [ + "global", + "z-index", + "500" + ] + } + ] + } }, "pf-t--global--z-index--2xl": { - "type": "number", - "value": 600, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "type": "number", - "value": "{global.z-index.600}" - }, - "name": "pf-t--global--z-index--2xl", - "attributes": { - "category": "global", - "type": "z-index", - "item": "2xl" - }, - "path": [ - "global", - "z-index", - "2xl" - ], - "references": [ - { + "value": 600, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { "type": "number", - "value": 600, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.z-index.600}" + }, + "name": "pf-t--global--z-index--2xl", + "attributes": { + "category": "global", + "type": "z-index", + "item": "2xl" + }, + "path": [ + "global", + "z-index", + "2xl" + ], + "references": [ + { "type": "number", - "value": 600 - }, - "name": "pf-t--global--z-index--600", - "attributes": { - "category": "global", - "type": "z-index", - "item": "600" - }, - "path": [ - "global", - "z-index", - "600" - ] - } - ] + "value": 600, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--z-index--600", + "attributes": { + "category": "global", + "type": "z-index", + "item": "600" + }, + "path": [ + "global", + "z-index", + "600" + ] + } + ] + } }, "pf-t--global--box-shadow--X--sm--default": { - "description": "Use to define the X value for a default small box-shadow, like in sticky sections", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the X value for a default small box-shadow, like in sticky sections", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--sm--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "default" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a default small box-shadow, like in sticky sections", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "default" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--sm--top": { - "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--sm--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "top" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "top" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--sm--bottom": { - "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--sm--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "bottom" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "bottom" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] - }, - "pf-t--global--box-shadow--X--sm--left": { - "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", - "type": "number", - "value": "-1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } + }, + "pf-t--global--box-shadow--X--sm--left": { + "default": { "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", - "value": "{global.box-shadow.X.300}" - }, - "name": "pf-t--global--box-shadow--X--sm--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "left" - ], - "references": [ - { + "value": "-1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", - "value": "-1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.X.300}" + }, + "name": "pf-t--global--box-shadow--X--sm--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "left" + ], + "references": [ + { "type": "number", - "value": -1 - }, - "name": "pf-t--global--box-shadow--X--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "X", - "300" - ] - } - ] + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--X--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "X", + "300" + ] + } + ] + } }, "pf-t--global--box-shadow--X--sm--right": { - "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", - "value": "{global.box-shadow.X.500}" - }, - "name": "pf-t--global--box-shadow--X--sm--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "right" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.X.500}" + }, + "name": "pf-t--global--box-shadow--X--sm--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "right" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--X--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "X", - "500" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--X--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "X", + "500" + ] + } + ] + } }, "pf-t--global--box-shadow--X--md--default": { - "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--md--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "default" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "default" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--md--top": { - "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--md--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "top" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "top" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--md--bottom": { - "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--md--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "bottom" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "bottom" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--md--left": { - "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", - "type": "number", - "value": "-4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", - "value": "{global.box-shadow.X.200}" - }, - "name": "pf-t--global--box-shadow--X--md--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "left" - ], - "references": [ - { + "value": "-4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", - "value": "-4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.X.200}" + }, + "name": "pf-t--global--box-shadow--X--md--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "left" + ], + "references": [ + { "type": "number", - "value": -4 - }, - "name": "pf-t--global--box-shadow--X--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "X", - "200" - ] - } - ] + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--X--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "X", + "200" + ] + } + ] + } }, "pf-t--global--box-shadow--X--md--right": { - "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", - "value": "{global.box-shadow.X.600}" - }, - "name": "pf-t--global--box-shadow--X--md--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "right" - ], - "references": [ - { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", + "type": "number", + "value": "{global.box-shadow.X.600}" + }, + "name": "pf-t--global--box-shadow--X--md--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "right" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--X--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "X", - "600" - ] - } - ] + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--X--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "X", + "600" + ] + } + ] + } }, "pf-t--global--box-shadow--X--lg--default": { - "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--lg--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "default" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "default" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--lg--top": { - "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--lg--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "top" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "top" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--lg--bottom": { - "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--lg--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "bottom" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "bottom" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--lg--left": { - "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", - "type": "number", - "value": "-8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", "type": "number", - "value": "{global.box-shadow.X.100}" - }, - "name": "pf-t--global--box-shadow--X--lg--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "left" - ], - "references": [ - { + "value": "-8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", "type": "number", - "value": "-8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.X.100}" + }, + "name": "pf-t--global--box-shadow--X--lg--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "left" + ], + "references": [ + { "type": "number", - "value": -8 - }, - "name": "pf-t--global--box-shadow--X--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "X", - "100" - ] - } - ] + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--X--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "X", + "100" + ] + } + ] + } }, "pf-t--global--box-shadow--X--lg--right": { - "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", "type": "number", - "value": "{global.box-shadow.X.700}" - }, - "name": "pf-t--global--box-shadow--X--lg--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "right" - ], - "references": [ - { + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.X.700}" + }, + "name": "pf-t--global--box-shadow--X--lg--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "right" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--X--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "X", - "700" - ] - } - ] + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--X--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "X", + "700" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--sm--default": { - "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", "type": "number", - "value": "{global.box-shadow.Y.500}" - }, - "name": "pf-t--global--box-shadow--Y--sm--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "default" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.Y.500}" + }, + "name": "pf-t--global--box-shadow--Y--sm--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "default" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--Y--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "Y", - "500" - ] - } - ] - }, - "pf-t--global--box-shadow--Y--sm--top": { - "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", - "type": "number", - "value": "-1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", - "type": "number", - "value": "{global.box-shadow.Y.300}" - }, - "name": "pf-t--global--box-shadow--Y--sm--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "top" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + } + ] + } + }, + "pf-t--global--box-shadow--Y--sm--top": { + "default": { + "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", + "type": "number", + "value": "-1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", - "value": "-1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.Y.300}" + }, + "name": "pf-t--global--box-shadow--Y--sm--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "top" + ], + "references": [ + { "type": "number", - "value": -1 - }, - "name": "pf-t--global--box-shadow--Y--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "Y", - "300" - ] - } - ] + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--Y--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "Y", + "300" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--sm--bottom": { - "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", - "value": "{global.box-shadow.Y.500}" - }, - "name": "pf-t--global--box-shadow--Y--sm--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "bottom" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.Y.500}" + }, + "name": "pf-t--global--box-shadow--Y--sm--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "bottom" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--Y--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "Y", - "500" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--sm--left": { - "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--sm--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "left" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--sm--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "left" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--sm--right": { - "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--sm--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "right" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--sm--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "right" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--md--default": { - "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", - "value": "{global.box-shadow.Y.600}" - }, - "name": "pf-t--global--box-shadow--Y--md--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "default" - ], - "references": [ - { + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.Y.600}" + }, + "name": "pf-t--global--box-shadow--Y--md--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "default" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--Y--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "Y", - "600" - ] - } - ] + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--md--top": { - "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", - "type": "number", - "value": "-4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", "type": "number", - "value": "{global.box-shadow.Y.200}" - }, - "name": "pf-t--global--box-shadow--Y--md--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "top" - ], - "references": [ - { + "value": "-4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", "type": "number", - "value": "-4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.Y.200}" + }, + "name": "pf-t--global--box-shadow--Y--md--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "top" + ], + "references": [ + { "type": "number", - "value": -4 - }, - "name": "pf-t--global--box-shadow--Y--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "Y", - "200" - ] - } - ] + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--Y--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "Y", + "200" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--md--bottom": { - "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", - "value": "{global.box-shadow.Y.600}" - }, - "name": "pf-t--global--box-shadow--Y--md--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "bottom" - ], - "references": [ - { + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.Y.600}" + }, + "name": "pf-t--global--box-shadow--Y--md--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "bottom" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--Y--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "Y", - "600" - ] - } - ] + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--md--left": { - "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--md--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "left" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--md--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "left" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--md--right": { - "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--md--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "right" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--md--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "right" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--lg--default": { - "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", "type": "number", - "value": "{global.box-shadow.Y.700}" - }, - "name": "pf-t--global--box-shadow--Y--lg--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "default" - ], - "references": [ - { + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.Y.700}" + }, + "name": "pf-t--global--box-shadow--Y--lg--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "default" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--Y--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "Y", - "700" - ] - } - ] + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--lg--top": { - "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", - "type": "number", - "value": "-8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", "type": "number", - "value": "{global.box-shadow.Y.100}" - }, - "name": "pf-t--global--box-shadow--Y--lg--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "top" - ], - "references": [ - { + "value": "-8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", "type": "number", - "value": "-8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.Y.100}" + }, + "name": "pf-t--global--box-shadow--Y--lg--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "top" + ], + "references": [ + { "type": "number", - "value": -8 - }, - "name": "pf-t--global--box-shadow--Y--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "Y", - "100" - ] - } - ] + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--Y--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "Y", + "100" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--lg--bottom": { - "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", - "value": "{global.box-shadow.Y.700}" - }, - "name": "pf-t--global--box-shadow--Y--lg--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "bottom" - ], - "references": [ - { + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.Y.700}" + }, + "name": "pf-t--global--box-shadow--Y--lg--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "bottom" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--Y--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "Y", - "700" - ] - } - ] + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--lg--left": { - "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--lg--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "left" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--lg--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "left" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--lg--right": { - "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--lg--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "right" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--lg--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "right" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--blur--sm": { - "description": "Use to define the blur for a small box-shadow", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the blur for a small box-shadow", "type": "number", - "value": "{global.box-shadow.blur.100}" - }, - "name": "pf-t--global--box-shadow--blur--sm", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "sm" - }, - "path": [ - "global", - "box-shadow", - "blur", - "sm" - ], - "references": [ - { + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the blur for a small box-shadow", "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.blur.100}" + }, + "name": "pf-t--global--box-shadow--blur--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "blur", + "sm" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--blur--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "blur", - "100" - ] - } - ] + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--blur--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "blur", + "100" + ] + } + ] + } }, "pf-t--global--box-shadow--blur--md": { - "description": "Use to define the blur for a medium box-shadow", - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the blur for a medium box-shadow", "type": "number", - "value": "{global.box-shadow.blur.200}" - }, - "name": "pf-t--global--box-shadow--blur--md", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "md" - }, - "path": [ - "global", - "box-shadow", - "blur", - "md" - ], - "references": [ - { + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the blur for a medium box-shadow", "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.blur.200}" + }, + "name": "pf-t--global--box-shadow--blur--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "blur", + "md" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--blur--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "blur", - "200" - ] - } - ] + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--blur--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "blur", + "200" + ] + } + ] + } }, "pf-t--global--box-shadow--blur--lg": { - "description": "Use to define the blue for a large box-shadow", - "type": "number", - "value": "24px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the blue for a large box-shadow", "type": "number", - "value": "{global.box-shadow.blur.300}" - }, - "name": "pf-t--global--box-shadow--blur--lg", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "lg" - }, - "path": [ - "global", - "box-shadow", - "blur", - "lg" - ], - "references": [ - { + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the blue for a large box-shadow", "type": "number", - "value": "24px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.blur.300}" + }, + "name": "pf-t--global--box-shadow--blur--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "blur", + "lg" + ], + "references": [ + { "type": "number", - "value": 24 - }, - "name": "pf-t--global--box-shadow--blur--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "blur", - "300" - ] - } - ] + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--box-shadow--blur--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "blur", + "300" + ] + } + ] + } }, "pf-t--global--box-shadow--spread--sm": { - "description": "Use to define the spread for a small box-shadow", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the spread for a small box-shadow", "type": "number", - "value": "{global.box-shadow.spread.100}" - }, - "name": "pf-t--global--box-shadow--spread--sm", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "sm" - }, - "path": [ - "global", - "box-shadow", - "spread", - "sm" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the spread for a small box-shadow", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "spread", + "sm" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--spread--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "spread", - "100" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + } }, "pf-t--global--box-shadow--spread--md": { - "description": "Use to define the spread of a medium box-shadow", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the spread of a medium box-shadow", "type": "number", - "value": "{global.box-shadow.spread.100}" - }, - "name": "pf-t--global--box-shadow--spread--md", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "md" - }, - "path": [ - "global", - "box-shadow", - "spread", - "md" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the spread of a medium box-shadow", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "spread", + "md" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--spread--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "spread", - "100" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + } }, "pf-t--global--box-shadow--spread--lg": { - "description": "Use to define the spread of a large box-shadow", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define the spread of a large box-shadow", "type": "number", - "value": "{global.box-shadow.spread.100}" - }, - "name": "pf-t--global--box-shadow--spread--lg", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "lg" - }, - "path": [ - "global", - "box-shadow", - "spread", - "lg" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define the spread of a large box-shadow", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--spread--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "spread", - "100" - ] - } - ] + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "spread", + "lg" + ], + "references": [ + { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + } }, "pf-t--global--breakpoint--xs": { - "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "0rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.100}" - }, - "name": "pf-t--global--breakpoint--xs", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "xs" - }, - "path": [ - "global", - "breakpoint", - "xs" - ], - "references": [ - { + "value": "0rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "0rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.breakpoint.100}" + }, + "name": "pf-t--global--breakpoint--xs", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "xs" + }, + "path": [ + "global", + "breakpoint", + "xs" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--breakpoint--100", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "100" - }, - "path": [ - "global", - "breakpoint", - "100" - ] - } - ] + "value": "0rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + } + ] + } }, "pf-t--global--breakpoint--sm": { - "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "36rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.200}" - }, - "name": "pf-t--global--breakpoint--sm", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "sm" - }, - "path": [ - "global", - "breakpoint", - "sm" - ], - "references": [ - { + "value": "36rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "36rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.breakpoint.200}" + }, + "name": "pf-t--global--breakpoint--sm", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "sm" + }, + "path": [ + "global", + "breakpoint", + "sm" + ], + "references": [ + { "type": "number", - "value": 576 - }, - "name": "pf-t--global--breakpoint--200", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "200" - }, - "path": [ - "global", - "breakpoint", - "200" - ] - } - ] + "value": "36rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 576 + }, + "name": "pf-t--global--breakpoint--200", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "200" + }, + "path": [ + "global", + "breakpoint", + "200" + ] + } + ] + } }, "pf-t--global--breakpoint--md": { - "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "48rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.300}" - }, - "name": "pf-t--global--breakpoint--md", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "md" - }, - "path": [ - "global", - "breakpoint", - "md" - ], - "references": [ - { + "value": "48rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "48rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.breakpoint.300}" + }, + "name": "pf-t--global--breakpoint--md", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "md" + }, + "path": [ + "global", + "breakpoint", + "md" + ], + "references": [ + { "type": "number", - "value": 768 - }, - "name": "pf-t--global--breakpoint--300", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "300" - }, - "path": [ - "global", - "breakpoint", - "300" - ] - } - ] + "value": "48rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + } + ] + } }, "pf-t--global--breakpoint--lg": { - "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "62rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.400}" - }, - "name": "pf-t--global--breakpoint--lg", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "lg" - }, - "path": [ - "global", - "breakpoint", - "lg" - ], - "references": [ - { + "value": "62rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "62rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.breakpoint.400}" + }, + "name": "pf-t--global--breakpoint--lg", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "lg" + }, + "path": [ + "global", + "breakpoint", + "lg" + ], + "references": [ + { "type": "number", - "value": 992 - }, - "name": "pf-t--global--breakpoint--400", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "400" - }, - "path": [ - "global", - "breakpoint", - "400" - ] - } - ] + "value": "62rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 992 + }, + "name": "pf-t--global--breakpoint--400", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "400" + }, + "path": [ + "global", + "breakpoint", + "400" + ] + } + ] + } }, "pf-t--global--breakpoint--xl": { - "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.500}" - }, - "name": "pf-t--global--breakpoint--xl", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "xl" - }, - "path": [ - "global", - "breakpoint", - "xl" - ], - "references": [ - { + "value": "75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.breakpoint.500}" + }, + "name": "pf-t--global--breakpoint--xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "xl" + }, + "path": [ + "global", + "breakpoint", + "xl" + ], + "references": [ + { "type": "number", - "value": 1200 - }, - "name": "pf-t--global--breakpoint--500", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "500" - }, - "path": [ - "global", - "breakpoint", - "500" - ] - } - ] + "value": "75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1200 + }, + "name": "pf-t--global--breakpoint--500", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "500" + }, + "path": [ + "global", + "breakpoint", + "500" + ] + } + ] + } }, "pf-t--global--breakpoint--2xl": { - "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "90.625rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.600}" - }, - "name": "pf-t--global--breakpoint--2xl", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "2xl" - }, - "path": [ - "global", - "breakpoint", - "2xl" - ], - "references": [ - { + "value": "90.625rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "90.625rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.breakpoint.600}" + }, + "name": "pf-t--global--breakpoint--2xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "2xl" + }, + "path": [ + "global", + "breakpoint", + "2xl" + ], + "references": [ + { "type": "number", - "value": 1450 - }, - "name": "pf-t--global--breakpoint--600", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "600" - }, - "path": [ - "global", - "breakpoint", - "600" - ] - } - ] - }, - "pf-t--global--breakpoint--height--sm": { - "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "0rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { - "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "{global.breakpoint.100}" - }, - "name": "pf-t--global--breakpoint--height--sm", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "sm" - }, - "path": [ - "global", - "breakpoint", - "height", - "sm" - ], - "references": [ - { + "value": "90.625rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1450 + }, + "name": "pf-t--global--breakpoint--600", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "600" + }, + "path": [ + "global", + "breakpoint", + "600" + ] + } + ] + } + }, + "pf-t--global--breakpoint--height--sm": { + "default": { + "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", + "type": "number", + "value": "0rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "0rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.breakpoint.100}" + }, + "name": "pf-t--global--breakpoint--height--sm", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "sm" + }, + "path": [ + "global", + "breakpoint", + "height", + "sm" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--breakpoint--100", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "100" - }, - "path": [ - "global", - "breakpoint", - "100" - ] - } - ] + "value": "0rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + } + ] + } }, "pf-t--global--breakpoint--height--md": { - "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "40rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.250}" - }, - "name": "pf-t--global--breakpoint--height--md", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "md" - }, - "path": [ - "global", - "breakpoint", - "height", - "md" - ], - "references": [ - { + "value": "40rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "40rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.breakpoint.250}" + }, + "name": "pf-t--global--breakpoint--height--md", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "md" + }, + "path": [ + "global", + "breakpoint", + "height", + "md" + ], + "references": [ + { "type": "number", - "value": 640 - }, - "name": "pf-t--global--breakpoint--250", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "250" - }, - "path": [ - "global", - "breakpoint", - "250" - ] - } - ] + "value": "40rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 640 + }, + "name": "pf-t--global--breakpoint--250", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "250" + }, + "path": [ + "global", + "breakpoint", + "250" + ] + } + ] + } }, "pf-t--global--breakpoint--height--lg": { - "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "48rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.300}" - }, - "name": "pf-t--global--breakpoint--height--lg", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "lg" - }, - "path": [ - "global", - "breakpoint", - "height", - "lg" - ], - "references": [ - { + "value": "48rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "48rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.breakpoint.300}" + }, + "name": "pf-t--global--breakpoint--height--lg", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "lg" + }, + "path": [ + "global", + "breakpoint", + "height", + "lg" + ], + "references": [ + { "type": "number", - "value": 768 - }, - "name": "pf-t--global--breakpoint--300", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "300" - }, - "path": [ - "global", - "breakpoint", - "300" - ] - } - ] + "value": "48rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + } + ] + } }, "pf-t--global--breakpoint--height--xl": { - "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "60rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.350}" - }, - "name": "pf-t--global--breakpoint--height--xl", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "xl" - }, - "path": [ - "global", - "breakpoint", - "height", - "xl" - ], - "references": [ - { + "value": "60rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "60rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.breakpoint.350}" + }, + "name": "pf-t--global--breakpoint--height--xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "xl" + }, + "path": [ + "global", + "breakpoint", + "height", + "xl" + ], + "references": [ + { "type": "number", - "value": 960 - }, - "name": "pf-t--global--breakpoint--350", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "350" - }, - "path": [ - "global", - "breakpoint", - "350" - ] - } - ] + "value": "60rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 960 + }, + "name": "pf-t--global--breakpoint--350", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "350" + }, + "path": [ + "global", + "breakpoint", + "350" + ] + } + ] + } }, "pf-t--global--breakpoint--height--2xl": { - "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "80rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": false, - "original": { + "default": { "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.550}" - }, - "name": "pf-t--global--breakpoint--height--2xl", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "2xl" - }, - "path": [ - "global", - "breakpoint", - "height", - "2xl" - ], - "references": [ - { + "value": "80rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": false, + "original": { + "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "80rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "value": "{global.breakpoint.550}" + }, + "name": "pf-t--global--breakpoint--height--2xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "2xl" + }, + "path": [ + "global", + "breakpoint", + "height", + "2xl" + ], + "references": [ + { "type": "number", - "value": 1280 - }, - "name": "pf-t--global--breakpoint--550", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "550" - }, - "path": [ - "global", - "breakpoint", - "550" - ] - } - ] + "value": "80rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1280 + }, + "name": "pf-t--global--breakpoint--550", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "550" + }, + "path": [ + "global", + "breakpoint", + "550" + ] + } + ] + } } }, "motion": { "pf-t--global--motion--duration--xs": { - "description": "Use for the quickest possible duration of an animation.", - "type": "number", - "value": "50ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use for the quickest possible duration of an animation.", "type": "number", - "value": "{global.duration.50}" - }, - "name": "pf-t--global--motion--duration--xs", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xs" - }, - "path": [ - "global", - "motion", - "duration", - "xs" - ], - "references": [ - { + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for the quickest possible duration of an animation.", "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.50}" + }, + "name": "pf-t--global--motion--duration--xs", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xs" + }, + "path": [ + "global", + "motion", + "duration", + "xs" + ], + "references": [ + { "type": "number", - "value": 50 - }, - "name": "pf-t--global--duration--50", - "attributes": { - "category": "global", - "type": "duration", - "item": "50" - }, - "path": [ - "global", - "duration", - "50" - ] - } - ] + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + } + ] + } }, "pf-t--global--motion--duration--sm": { - "description": "Use for a short animation duration. Use for simple and/or small animations.", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", - "value": "{global.duration.100}" - }, - "name": "pf-t--global--motion--duration--sm", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "sm" - }, - "path": [ - "global", - "motion", - "duration", - "sm" - ], - "references": [ - { + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { "type": "number", - "value": 100 - }, - "name": "pf-t--global--duration--100", - "attributes": { - "category": "global", - "type": "duration", - "item": "100" - }, - "path": [ - "global", - "duration", - "100" - ] - } - ] + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + } }, "pf-t--global--motion--duration--md": { - "description": "Use for a medium animation duration.", - "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use for a medium animation duration.", "type": "number", - "value": "{global.duration.200}" - }, - "name": "pf-t--global--motion--duration--md", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "md" - }, - "path": [ - "global", - "motion", - "duration", - "md" - ], - "references": [ - { + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a medium animation duration.", "type": "number", - "value": "200ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { "type": "number", - "value": 200 - }, - "name": "pf-t--global--duration--200", - "attributes": { - "category": "global", - "type": "duration", - "item": "200" - }, - "path": [ - "global", - "duration", - "200" - ] - } - ] + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + } }, "pf-t--global--motion--duration--lg": { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", - "value": "{global.duration.300}" - }, - "name": "pf-t--global--motion--duration--lg", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "lg" - }, - "path": [ - "global", - "motion", - "duration", - "lg" - ], - "references": [ - { + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - } - ] + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } }, "pf-t--global--motion--duration--xl": { - "description": "Use for extra long animation duration.", - "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use for extra long animation duration.", "type": "number", - "value": "{global.duration.400}" - }, - "name": "pf-t--global--motion--duration--xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xl" - }, - "path": [ - "global", - "motion", - "duration", - "xl" - ], - "references": [ - { + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for extra long animation duration.", "type": "number", - "value": "400ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { "type": "number", - "value": 400 - }, - "name": "pf-t--global--duration--400", - "attributes": { - "category": "global", - "type": "duration", - "item": "400" - }, - "path": [ - "global", - "duration", - "400" - ] - } - ] + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + } }, "pf-t--global--motion--duration--2xl": { - "description": "Use for significantly long animation duration.", - "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use for significantly long animation duration.", "type": "number", - "value": "{global.duration.500}" - }, - "name": "pf-t--global--motion--duration--2xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "2xl" - }, - "path": [ - "global", - "motion", - "duration", - "2xl" - ], - "references": [ - { + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for significantly long animation duration.", "type": "number", - "value": "500ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { "type": "number", - "value": 500 - }, - "name": "pf-t--global--duration--500", - "attributes": { - "category": "global", - "type": "duration", - "item": "500" - }, - "path": [ - "global", - "duration", - "500" - ] - } - ] + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + } }, "pf-t--global--motion--duration--3xl": { - "description": "Use for the longest possible duration of an animation.", - "type": "number", - "value": "600ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use for the longest possible duration of an animation.", "type": "number", - "value": "{global.duration.600}" - }, - "name": "pf-t--global--motion--duration--3xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "3xl" - }, - "path": [ - "global", - "motion", - "duration", - "3xl" - ], - "references": [ - { + "value": "600ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for the longest possible duration of an animation.", "type": "number", - "value": "600ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.600}" + }, + "name": "pf-t--global--motion--duration--3xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "3xl" + }, + "path": [ + "global", + "motion", + "duration", + "3xl" + ], + "references": [ + { "type": "number", - "value": 600 - }, - "name": "pf-t--global--duration--600", - "attributes": { - "category": "global", - "type": "duration", - "item": "600" - }, - "path": [ - "global", - "duration", - "600" - ] - } - ] + "value": "600ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--duration--600", + "attributes": { + "category": "global", + "type": "duration", + "item": "600" + }, + "path": [ + "global", + "duration", + "600" + ] + } + ] + } }, "pf-t--global--motion--duration--fade--short": { - "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", "type": "number", - "value": "{global.motion.duration.sm}" - }, - "name": "pf-t--global--motion--duration--fade--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "fade", - "state": "short" - }, - "path": [ - "global", - "motion", - "duration", - "fade", - "short" - ], - "references": [ - { - "description": "Use for a short animation duration. Use for simple and/or small animations.", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "value": "{global.motion.duration.sm}" + }, + "name": "pf-t--global--motion--duration--fade--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "short" + ], + "references": [ + { "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", - "value": "{global.duration.100}" - }, - "name": "pf-t--global--motion--duration--sm", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "sm" - }, - "path": [ - "global", - "motion", - "duration", - "sm" - ], - "references": [ - { + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { "type": "number", - "value": 100 - }, - "name": "pf-t--global--duration--100", - "attributes": { - "category": "global", - "type": "duration", - "item": "100" - }, - "path": [ - "global", - "duration", - "100" - ] - } - ] - } - ] + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--fade--default": { - "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", - "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", "type": "number", - "value": "{global.motion.duration.md}" - }, - "name": "pf-t--global--motion--duration--fade--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "fade", - "state": "default" - }, - "path": [ - "global", - "motion", - "duration", - "fade", - "default" - ], - "references": [ - { - "description": "Use for a medium animation duration.", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "value": "{global.motion.duration.md}" + }, + "name": "pf-t--global--motion--duration--fade--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "default" + ], + "references": [ + { "description": "Use for a medium animation duration.", "type": "number", - "value": "{global.duration.200}" - }, - "name": "pf-t--global--motion--duration--md", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "md" - }, - "path": [ - "global", - "motion", - "duration", - "md" - ], - "references": [ - { + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a medium animation duration.", "type": "number", - "value": "200ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { "type": "number", - "value": 200 - }, - "name": "pf-t--global--duration--200", - "attributes": { - "category": "global", - "type": "duration", - "item": "200" - }, - "path": [ - "global", - "duration", - "200" - ] - } - ] - } - ] + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--fade--long": { - "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", "type": "number", - "value": "{global.motion.duration.lg}" - }, - "name": "pf-t--global--motion--duration--fade--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "fade", - "state": "long" - }, - "path": [ - "global", - "motion", - "duration", - "fade", - "long" - ], - "references": [ - { - "description": "Use for long animation duration. Use for larger, more expressive animations.", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--fade--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "long" + ], + "references": [ + { "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", - "value": "{global.duration.300}" - }, - "name": "pf-t--global--motion--duration--lg", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "lg" - }, - "path": [ - "global", - "motion", - "duration", - "lg" - ], - "references": [ - { + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - } - ] - } - ] + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--slide-out--short": { - "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", - "value": "{global.motion.duration.lg}" - }, - "name": "pf-t--global--motion--duration--slide-out--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-out", - "state": "short" - }, - "path": [ - "global", - "motion", - "duration", - "slide-out", - "short" - ], - "references": [ - { - "description": "Use for long animation duration. Use for larger, more expressive animations.", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--slide-out--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "short" + ], + "references": [ + { "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", - "value": "{global.duration.300}" - }, - "name": "pf-t--global--motion--duration--lg", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "lg" - }, - "path": [ - "global", - "motion", - "duration", - "lg" - ], - "references": [ - { + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - } - ] - } - ] + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--slide-out--default": { - "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", - "value": "{global.motion.duration.xl}" - }, - "name": "pf-t--global--motion--duration--slide-out--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-out", - "state": "default" - }, - "path": [ - "global", - "motion", - "duration", - "slide-out", - "default" - ], - "references": [ - { - "description": "Use for extra long animation duration.", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "value": "{global.motion.duration.xl}" + }, + "name": "pf-t--global--motion--duration--slide-out--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "default" + ], + "references": [ + { "description": "Use for extra long animation duration.", "type": "number", - "value": "{global.duration.400}" - }, - "name": "pf-t--global--motion--duration--xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xl" - }, - "path": [ - "global", - "motion", - "duration", - "xl" - ], - "references": [ - { + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for extra long animation duration.", "type": "number", - "value": "400ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { "type": "number", - "value": 400 - }, - "name": "pf-t--global--duration--400", - "attributes": { - "category": "global", - "type": "duration", - "item": "400" - }, - "path": [ - "global", - "duration", - "400" - ] - } - ] - } - ] + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--slide-out--long": { - "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", - "value": "{global.motion.duration.2xl}" - }, - "name": "pf-t--global--motion--duration--slide-out--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-out", - "state": "long" - }, - "path": [ - "global", - "motion", - "duration", - "slide-out", - "long" - ], - "references": [ - { - "description": "Use for significantly long animation duration.", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "value": "{global.motion.duration.2xl}" + }, + "name": "pf-t--global--motion--duration--slide-out--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "long" + ], + "references": [ + { "description": "Use for significantly long animation duration.", "type": "number", - "value": "{global.duration.500}" - }, - "name": "pf-t--global--motion--duration--2xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "2xl" - }, - "path": [ - "global", - "motion", - "duration", - "2xl" - ], - "references": [ - { + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for significantly long animation duration.", "type": "number", - "value": "500ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { "type": "number", - "value": 500 - }, - "name": "pf-t--global--duration--500", - "attributes": { - "category": "global", - "type": "duration", - "item": "500" - }, - "path": [ - "global", - "duration", - "500" - ] - } - ] - } - ] + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--slide-in--short": { - "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", - "value": "{global.motion.duration.lg}" - }, - "name": "pf-t--global--motion--duration--slide-in--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-in", - "state": "short" - }, - "path": [ - "global", - "motion", - "duration", - "slide-in", - "short" - ], - "references": [ - { - "description": "Use for long animation duration. Use for larger, more expressive animations.", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--slide-in--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "short" + ], + "references": [ + { "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", - "value": "{global.duration.300}" - }, - "name": "pf-t--global--motion--duration--lg", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "lg" - }, - "path": [ - "global", - "motion", - "duration", - "lg" - ], - "references": [ - { + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - } - ] - } - ] + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--slide-in--default": { - "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", - "value": "{global.motion.duration.xl}" - }, - "name": "pf-t--global--motion--duration--slide-in--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-in", - "state": "default" - }, - "path": [ - "global", - "motion", - "duration", - "slide-in", - "default" - ], - "references": [ - { - "description": "Use for extra long animation duration.", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "value": "{global.motion.duration.xl}" + }, + "name": "pf-t--global--motion--duration--slide-in--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "default" + ], + "references": [ + { "description": "Use for extra long animation duration.", "type": "number", - "value": "{global.duration.400}" - }, - "name": "pf-t--global--motion--duration--xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xl" - }, - "path": [ - "global", - "motion", - "duration", - "xl" - ], - "references": [ - { + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for extra long animation duration.", "type": "number", - "value": "400ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { "type": "number", - "value": 400 - }, - "name": "pf-t--global--duration--400", - "attributes": { - "category": "global", - "type": "duration", - "item": "400" - }, - "path": [ - "global", - "duration", - "400" - ] - } - ] - } - ] + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--slide-in--long": { - "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", - "value": "{global.motion.duration.2xl}" - }, - "name": "pf-t--global--motion--duration--slide-in--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-in", - "state": "long" - }, - "path": [ - "global", - "motion", - "duration", - "slide-in", - "long" - ], - "references": [ - { - "description": "Use for significantly long animation duration.", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "value": "{global.motion.duration.2xl}" + }, + "name": "pf-t--global--motion--duration--slide-in--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "long" + ], + "references": [ + { "description": "Use for significantly long animation duration.", "type": "number", - "value": "{global.duration.500}" - }, - "name": "pf-t--global--motion--duration--2xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "2xl" - }, - "path": [ - "global", - "motion", - "duration", - "2xl" - ], - "references": [ - { + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for significantly long animation duration.", "type": "number", - "value": "500ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { "type": "number", - "value": 500 - }, - "name": "pf-t--global--duration--500", - "attributes": { - "category": "global", - "type": "duration", - "item": "500" - }, - "path": [ - "global", - "duration", - "500" - ] - } - ] - } - ] + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--icon--short": { - "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", - "type": "number", - "value": "50ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", "type": "number", - "value": "{global.motion.duration.xs}" - }, - "name": "pf-t--global--motion--duration--icon--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "icon", - "state": "short" - }, - "path": [ - "global", - "motion", - "duration", - "icon", - "short" - ], - "references": [ - { - "description": "Use for the quickest possible duration of an animation.", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", "type": "number", - "value": "50ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "value": "{global.motion.duration.xs}" + }, + "name": "pf-t--global--motion--duration--icon--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "short" + ], + "references": [ + { "description": "Use for the quickest possible duration of an animation.", "type": "number", - "value": "{global.duration.50}" - }, - "name": "pf-t--global--motion--duration--xs", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xs" - }, - "path": [ - "global", - "motion", - "duration", - "xs" - ], - "references": [ - { + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for the quickest possible duration of an animation.", "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.50}" + }, + "name": "pf-t--global--motion--duration--xs", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xs" + }, + "path": [ + "global", + "motion", + "duration", + "xs" + ], + "references": [ + { "type": "number", - "value": 50 - }, - "name": "pf-t--global--duration--50", - "attributes": { - "category": "global", - "type": "duration", - "item": "50" - }, - "path": [ - "global", - "duration", - "50" - ] - } - ] - } - ] + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--icon--default": { - "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", "type": "number", - "value": "{global.motion.duration.sm}" - }, - "name": "pf-t--global--motion--duration--icon--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "icon", - "state": "default" - }, - "path": [ - "global", - "motion", - "duration", - "icon", - "default" - ], - "references": [ - { - "description": "Use for a short animation duration. Use for simple and/or small animations.", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "value": "{global.motion.duration.sm}" + }, + "name": "pf-t--global--motion--duration--icon--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "default" + ], + "references": [ + { "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", - "value": "{global.duration.100}" - }, - "name": "pf-t--global--motion--duration--sm", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "sm" - }, - "path": [ - "global", - "motion", - "duration", - "sm" - ], - "references": [ - { + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { "type": "number", - "value": 100 - }, - "name": "pf-t--global--duration--100", - "attributes": { - "category": "global", - "type": "duration", - "item": "100" - }, - "path": [ - "global", - "duration", - "100" - ] - } - ] - } - ] + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--icon--long": { - "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", - "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", "type": "number", - "value": "{global.motion.duration.md}" - }, - "name": "pf-t--global--motion--duration--icon--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "icon", - "state": "long" - }, - "path": [ - "global", - "motion", - "duration", - "icon", - "long" - ], - "references": [ - { - "description": "Use for a medium animation duration.", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "value": "{global.motion.duration.md}" + }, + "name": "pf-t--global--motion--duration--icon--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "long" + ], + "references": [ + { "description": "Use for a medium animation duration.", "type": "number", - "value": "{global.duration.200}" - }, - "name": "pf-t--global--motion--duration--md", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "md" - }, - "path": [ - "global", - "motion", - "duration", - "md" - ], - "references": [ - { + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use for a medium animation duration.", "type": "number", - "value": "200ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { "type": "number", - "value": 200 - }, - "name": "pf-t--global--duration--200", - "attributes": { - "category": "global", - "type": "duration", - "item": "200" - }, - "path": [ - "global", - "duration", - "200" - ] - } - ] - } - ] + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--motion--delay--none": { - "description": "Use when there should be no delay before an animation plays.", - "type": "number", - "value": "0ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use when there should be no delay before an animation plays.", "type": "number", - "value": "{global.delay.100}" - }, - "name": "pf-t--global--motion--delay--none", - "attributes": { - "category": "global", - "type": "motion", - "item": "delay", - "subitem": "none" - }, - "path": [ - "global", - "motion", - "delay", - "none" - ], - "references": [ - { + "value": "0ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use when there should be no delay before an animation plays.", "type": "number", - "value": "0ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.delay.100}" + }, + "name": "pf-t--global--motion--delay--none", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "none" + }, + "path": [ + "global", + "motion", + "delay", + "none" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--delay--100", - "attributes": { - "category": "global", - "type": "delay", - "item": "100" - }, - "path": [ - "global", - "delay", - "100" - ] - } - ] + "value": "0ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--delay--100", + "attributes": { + "category": "global", + "type": "delay", + "item": "100" + }, + "path": [ + "global", + "delay", + "100" + ] + } + ] + } }, "pf-t--global--motion--delay--short": { - "description": "Use when there should be a short delay before an animation plays.", - "type": "number", - "value": "50ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use when there should be a short delay before an animation plays.", "type": "number", - "value": "{global.delay.200}" - }, - "name": "pf-t--global--motion--delay--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "delay", - "subitem": "short" - }, - "path": [ - "global", - "motion", - "delay", - "short" - ], - "references": [ - { + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use when there should be a short delay before an animation plays.", "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.delay.200}" + }, + "name": "pf-t--global--motion--delay--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "short" + }, + "path": [ + "global", + "motion", + "delay", + "short" + ], + "references": [ + { "type": "number", - "value": 50 - }, - "name": "pf-t--global--delay--200", - "attributes": { - "category": "global", - "type": "delay", - "item": "200" - }, - "path": [ - "global", - "delay", - "200" - ] - } - ] + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--delay--200", + "attributes": { + "category": "global", + "type": "delay", + "item": "200" + }, + "path": [ + "global", + "delay", + "200" + ] + } + ] + } }, "pf-t--global--motion--delay--default": { - "description": "Use when there should be the default delay length before an animation plays.", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use when there should be the default delay length before an animation plays.", "type": "number", - "value": "{global.delay.300}" - }, - "name": "pf-t--global--motion--delay--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "delay", - "subitem": "default" - }, - "path": [ - "global", - "motion", - "delay", - "default" - ], - "references": [ - { + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use when there should be the default delay length before an animation plays.", "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.delay.300}" + }, + "name": "pf-t--global--motion--delay--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "default" + }, + "path": [ + "global", + "motion", + "delay", + "default" + ], + "references": [ + { "type": "number", - "value": 100 - }, - "name": "pf-t--global--delay--300", - "attributes": { - "category": "global", - "type": "delay", - "item": "300" - }, - "path": [ - "global", - "delay", - "300" - ] - } - ] + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--delay--300", + "attributes": { + "category": "global", + "type": "delay", + "item": "300" + }, + "path": [ + "global", + "delay", + "300" + ] + } + ] + } }, "pf-t--global--motion--delay--long": { - "description": "Use when there should be a long delay before an animation plays.", - "type": "number", - "value": "7000ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use when there should be a long delay before an animation plays.", "type": "number", - "value": "{global.delay.400}" - }, - "name": "pf-t--global--motion--delay--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "delay", - "subitem": "long" - }, - "path": [ - "global", - "motion", - "delay", - "long" - ], - "references": [ - { + "value": "7000ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use when there should be a long delay before an animation plays.", "type": "number", - "value": "7000ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "{global.delay.400}" + }, + "name": "pf-t--global--motion--delay--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "long" + }, + "path": [ + "global", + "motion", + "delay", + "long" + ], + "references": [ + { "type": "number", - "value": 7000 - }, - "name": "pf-t--global--delay--400", - "attributes": { - "category": "global", - "type": "delay", - "item": "400" - }, - "path": [ - "global", - "delay", - "400" - ] - } - ] + "value": "7000ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 7000 + }, + "name": "pf-t--global--delay--400", + "attributes": { + "category": "global", + "type": "delay", + "item": "400" + }, + "path": [ + "global", + "delay", + "400" + ] + } + ] + } }, "pf-t--global--motion--timing-function--accelerate": { - "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", - "type": "number", - "value": "cubic-bezier(.4, 0, .7, .2)", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", "type": "number", - "value": "{global.timing-function.100}" - }, - "name": "pf-t--global--motion--timing-function--accelerate", - "attributes": { - "category": "global", - "type": "motion", - "item": "timing-function", - "subitem": "accelerate" - }, - "path": [ - "global", - "motion", - "timing-function", - "accelerate" - ], - "references": [ - { - "type": "string", - "value": "cubic-bezier(.4, 0, .7, .2)", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", + "type": "number", + "value": "{global.timing-function.100}" + }, + "name": "pf-t--global--motion--timing-function--accelerate", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "accelerate" + }, + "path": [ + "global", + "motion", + "timing-function", + "accelerate" + ], + "references": [ + { "type": "string", - "value": "cubic-bezier(.4, 0, .7, .2)" - }, - "name": "pf-t--global--timing-function--100", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "100" - }, - "path": [ - "global", - "timing-function", - "100" - ] - } - ] + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)" + }, + "name": "pf-t--global--timing-function--100", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "100" + }, + "path": [ + "global", + "timing-function", + "100" + ] + } + ] + } }, "pf-t--global--motion--timing-function--default": { - "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", - "type": "number", - "value": "cubic-bezier(.4, 0, .2, 1)", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", "type": "number", - "value": "{global.timing-function.200}" - }, - "name": "pf-t--global--motion--timing-function--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "timing-function", - "subitem": "default" - }, - "path": [ - "global", - "motion", - "timing-function", - "default" - ], - "references": [ - { - "type": "string", - "value": "cubic-bezier(.4, 0, .2, 1)", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", + "type": "number", + "value": "{global.timing-function.200}" + }, + "name": "pf-t--global--motion--timing-function--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "default" + }, + "path": [ + "global", + "motion", + "timing-function", + "default" + ], + "references": [ + { "type": "string", - "value": "cubic-bezier(.4, 0, .2, 1)" - }, - "name": "pf-t--global--timing-function--200", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "200" - }, - "path": [ - "global", - "timing-function", - "200" - ] - } - ] + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--200", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "200" + }, + "path": [ + "global", + "timing-function", + "200" + ] + } + ] + } }, "pf-t--global--motion--timing-function--decelerate": { - "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", - "type": "number", - "value": "cubic-bezier(0, 0, .2, 1)", - "filePath": "tokens/default/semantic.motion.json", - "isSource": false, - "original": { + "default": { "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", "type": "number", - "value": "{global.timing-function.300}" - }, - "name": "pf-t--global--motion--timing-function--decelerate", - "attributes": { - "category": "global", - "type": "motion", - "item": "timing-function", - "subitem": "decelerate" - }, - "path": [ - "global", - "motion", - "timing-function", - "decelerate" - ], - "references": [ - { - "type": "string", - "value": "cubic-bezier(0, 0, .2, 1)", - "filePath": "tokens/default/base.motion.json", - "isSource": false, - "original": { - "type": "string", - "value": "cubic-bezier(0, 0, .2, 1)" - }, - "name": "pf-t--global--timing-function--300", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "300" - }, - "path": [ - "global", - "timing-function", - "300" - ] - } - ] + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": false, + "original": { + "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", + "type": "number", + "value": "{global.timing-function.300}" + }, + "name": "pf-t--global--motion--timing-function--decelerate", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "decelerate" + }, + "path": [ + "global", + "motion", + "timing-function", + "decelerate" + ], + "references": [ + { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--300", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "300" + }, + "path": [ + "global", + "timing-function", + "300" + ] + } + ] + } } } }, "base": { "colors": { "pf-t--global--icon--color--100": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } }, "pf-t--global--icon--color--200": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--icon--color--200", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "icon", - "color", - "200" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--global--icon--color--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } }, "pf-t--global--icon--color--300": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } }, "pf-t--global--border--color--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--border--color--100", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "border", - "color", - "100" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--global--border--color--100", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "border", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - }, + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + }, "pf-t--global--border--color--200": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--border--color--200", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "border", - "color", - "200" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--global--border--color--200", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "border", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } }, "pf-t--global--border--color--300": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--border--color--300", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "border", - "color", - "300" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--global--border--color--300", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "border", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } }, "pf-t--global--box-shadow--color--100": { - "type": "color", - "value": "rgba(0, 0, 0, 0.1600)", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "rgba(0, 0, 0, 0.1600)" - }, - "name": "pf-t--global--box-shadow--color--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "color", - "100" - ] + "value": "rgba(0, 0, 0, 0.1600)", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)" + }, + "name": "pf-t--global--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "color", + "100" + ] + } }, "pf-t--global--box-shadow--color--200": { - "type": "color", - "value": "rgba(0, 0, 0, 0.1200)", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "rgba(0, 0, 0, 0.1200)" - }, - "name": "pf-t--global--box-shadow--color--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "color", - "200" - ] + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)" + }, + "name": "pf-t--global--box-shadow--color--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "color", + "200" + ] + } }, "pf-t--global--background--color--100": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - }, - "pf-t--global--background--color--200": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--background--color--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "background", - "color", - "200" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + }, + "pf-t--global--background--color--200": { + "default": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } }, "pf-t--global--background--color--300": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--background--color--300", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "background", - "color", - "300" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.20}" + }, + "name": "pf-t--global--background--color--300", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "background", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } }, "pf-t--global--background--color--400": { - "type": "color", - "value": "#292929", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--background--color--400", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "400" - }, - "path": [ - "global", - "background", - "color", - "400" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.80}" + }, + "name": "pf-t--global--background--color--400", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "background", + "color", + "400" + ], + "references": [ + { "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } }, "pf-t--global--background--color--500": { - "type": "color", - "value": "rgba(21, 21, 21, 0.2000)", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "rgba(21, 21, 21, 0.2000)" - }, - "name": "pf-t--global--background--color--500", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "500" - }, - "path": [ - "global", - "background", - "color", - "500" - ] + "value": "rgba(21, 21, 21, 0.2000)", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)" + }, + "name": "pf-t--global--background--color--500", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "500" + }, + "path": [ + "global", + "background", + "color", + "500" + ] + } }, "pf-t--global--background--color--600": { - "type": "color", - "value": "rgba(199, 199, 199, 0.2500)", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "rgba(199, 199, 199, 0.2500)" - }, - "name": "pf-t--global--background--color--600", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "600" - }, - "path": [ - "global", - "background", - "color", - "600" - ] + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)" + }, + "name": "pf-t--global--background--color--600", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "600" + }, + "path": [ + "global", + "background", + "color", + "600" + ] + } }, "pf-t--global--background--color--highlight--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--background--color--highlight--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "100" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--background--color--highlight--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "100" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } }, "pf-t--global--background--color--highlight--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--background--color--highlight--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "200" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--background--color--highlight--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "200" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "200" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } }, "pf-t--global--color--brand--100": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--brand--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "brand", - "subitem": "100" - }, - "path": [ - "global", - "color", - "brand", - "100" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--brand--100", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "100" + }, + "path": [ + "global", + "color", + "brand", + "100" + ], + "references": [ + { "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } }, "pf-t--global--color--brand--200": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - }, - "pf-t--global--color--brand--300": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", "type": "color", - "value": "#004d99", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } }, - "pf-t--global--color--disabled--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "pf-t--global--color--brand--300": { + "default": { "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--disabled--100", - "attributes": { - "category": "global", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + }, + "pf-t--global--color--disabled--100": { + "default": { "type": "color", - "item": "disabled", - "subitem": "100" - }, - "path": [ - "global", - "color", - "disabled", - "100" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--disabled--100", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "100" + }, + "path": [ + "global", + "color", + "disabled", + "100" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } }, "pf-t--global--color--disabled--200": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--disabled--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "disabled", - "subitem": "200" - }, - "path": [ - "global", - "color", - "disabled", - "200" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--disabled--200", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "200" + }, + "path": [ + "global", + "color", + "disabled", + "200" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } }, "pf-t--global--color--disabled--300": { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--global--color--disabled--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "disabled", - "subitem": "300" - }, - "path": [ - "global", - "color", - "disabled", - "300" - ], - "references": [ - { + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.60}" + }, + "name": "pf-t--global--color--disabled--300", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "300" + }, + "path": [ + "global", + "color", + "disabled", + "300" + ], + "references": [ + { "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] + "value": "#4d4d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } }, "pf-t--global--color--favorite--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--favorite--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "favorite", - "subitem": "100" - }, - "path": [ - "global", - "color", - "favorite", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--favorite--100", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "100" + }, + "path": [ + "global", + "color", + "favorite", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } }, "pf-t--global--color--favorite--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--favorite--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "favorite", - "subitem": "200" - }, - "path": [ - "global", - "color", - "favorite", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } }, "pf-t--global--color--status--success--100": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--global--color--status--success--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "success", - "100" - ], - "references": [ - { + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#3d7317", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] + "value": "#3d7317", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } }, "pf-t--global--color--status--success--200": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#204d00", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] + "value": "#204d00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } }, "pf-t--global--color--status--warning--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--status--warning--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "warning", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "warning", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--status--warning--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "warning", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } }, "pf-t--global--color--status--warning--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--status--warning--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "warning", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "warning", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } }, "pf-t--global--color--status--warning--300": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--global--color--status--warning--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "warning", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "warning", - "300" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } }, "pf-t--global--color--status--danger--100": { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--status--danger--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "danger", - "100" - ], - "references": [ - { + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#b1380b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] + "value": "#b1380b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } }, "pf-t--global--color--status--danger--200": { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#731f00", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] + "value": "#731f00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } }, "pf-t--global--color--status--danger--300": { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "danger", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "danger", - "300" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#731f00", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "danger", + "300" + ], + "references": [ + { "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] + "value": "#731f00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } }, "pf-t--global--color--status--info--100": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--color--status--info--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "info", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "info", - "100" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } }, "pf-t--global--color--status--info--200": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } }, "pf-t--global--color--status--custom--100": { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--global--color--status--custom--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "custom", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "custom", - "100" - ], - "references": [ - { + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#147878", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] + "value": "#147878", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } }, "pf-t--global--color--status--custom--200": { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#004d4d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] + "value": "#004d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } }, "pf-t--global--color--severity--undefined--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--severity--undefined--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "severity", - "subitem": "undefined", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "undefined", - "100" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--severity--undefined--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "undefined", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "undefined", + "100" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } }, "pf-t--global--color--severity--none--100": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--severity--none--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "severity", - "subitem": "none", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "none", - "100" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--severity--none--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "none", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "none", + "100" + ], + "references": [ + { "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } }, "pf-t--global--color--severity--minor--100": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--color--severity--minor--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "severity", - "subitem": "minor", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "minor", - "100" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--global--color--severity--minor--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "minor", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "minor", + "100" + ], + "references": [ + { "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } }, "pf-t--global--color--severity--moderate--100": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--severity--moderate--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "severity", - "subitem": "moderate", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "moderate", - "100" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--severity--moderate--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "moderate", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "moderate", + "100" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } }, "pf-t--global--color--severity--important--100": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--global--color--severity--important--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "severity", - "subitem": "important", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "important", - "100" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.50}" + }, + "name": "pf-t--global--color--severity--important--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "important", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "important", + "100" + ], + "references": [ + { "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } }, "pf-t--global--color--severity--critical--100": { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--severity--critical--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "critical", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "critical", - "100" - ], - "references": [ - { + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#b1380b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--severity--critical--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "critical", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "critical", + "100" + ], + "references": [ + { "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] + "value": "#b1380b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } }, "pf-t--global--color--nonstatus--red--100": { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red.20}" - }, - "name": "pf-t--global--color--nonstatus--red--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "100" - ], - "references": [ - { + "value": "#fbc5c5", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red.20}" + }, + "name": "pf-t--global--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - } - ] + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } }, "pf-t--global--color--nonstatus--red--200": { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red.30}" - }, - "name": "pf-t--global--color--nonstatus--red--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { + "value": "#f9a8a8", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red.30}" + }, + "name": "pf-t--global--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - } - ] + "value": "#f9a8a8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--red--300": { - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.red.40}" - }, - "name": "pf-t--global--color--nonstatus--red--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "300" - ], - "references": [ - { + "value": "#f56e6e", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#f56e6e", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red.40}" + }, + "name": "pf-t--global--color--nonstatus--red--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "300" + ], + "references": [ + { "type": "color", - "value": "#f56e6e" - }, - "name": "pf-t--color--red--40", - "attributes": { - "category": "color", - "type": "red", - "item": "40" - }, - "path": [ - "color", - "red", - "40" - ] - } - ] + "value": "#f56e6e", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + } + ] + } }, "pf-t--global--color--nonstatus--orangered--100": { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--color--nonstatus--orangered--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "100" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } }, "pf-t--global--color--nonstatus--orangered--200": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orangered--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--orangered--300": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--color--nonstatus--orangered--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "300" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orangered--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "300" + ], + "references": [ + { "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } }, "pf-t--global--color--nonstatus--orange--100": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--global--color--nonstatus--orange--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "100" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } }, "pf-t--global--color--nonstatus--orange--200": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orange--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--orange--300": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--global--color--nonstatus--orange--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "300" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orange--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "300" + ], + "references": [ + { "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } }, "pf-t--global--color--nonstatus--yellow--100": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--color--nonstatus--yellow--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "100" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--color--nonstatus--yellow--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } }, "pf-t--global--color--nonstatus--yellow--200": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--nonstatus--yellow--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--yellow--300": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--nonstatus--yellow--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "300" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--nonstatus--yellow--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "300" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } }, "pf-t--global--color--nonstatus--green--100": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--color--nonstatus--green--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "100" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.20}" + }, + "name": "pf-t--global--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } }, "pf-t--global--color--nonstatus--green--200": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--color--nonstatus--green--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.30}" + }, + "name": "pf-t--global--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--green--300": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--color--nonstatus--green--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "300" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.40}" + }, + "name": "pf-t--global--color--nonstatus--green--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "300" + ], + "references": [ + { "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } }, "pf-t--global--color--nonstatus--teal--100": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--color--nonstatus--teal--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "100" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.20}" + }, + "name": "pf-t--global--color--nonstatus--teal--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "100" + ], + "references": [ + { "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } }, "pf-t--global--color--nonstatus--teal--200": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--color--nonstatus--teal--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--teal--300": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--color--nonstatus--teal--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "300" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.40}" + }, + "name": "pf-t--global--color--nonstatus--teal--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "300" + ], + "references": [ + { "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } }, "pf-t--global--color--nonstatus--blue--100": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--color--nonstatus--blue--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "100" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.20}" + }, + "name": "pf-t--global--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } }, "pf-t--global--color--nonstatus--blue--200": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--color--nonstatus--blue--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.30}" + }, + "name": "pf-t--global--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--blue--300": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--nonstatus--blue--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "300" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--nonstatus--blue--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "300" + ], + "references": [ + { "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } }, "pf-t--global--color--nonstatus--purple--100": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--color--nonstatus--purple--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "100" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.20}" + }, + "name": "pf-t--global--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--purple--200": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--color--nonstatus--purple--200", - "attributes": { - "category": "global", + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + }, + "pf-t--global--color--nonstatus--purple--200": { + "default": { "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.30}" + }, + "name": "pf-t--global--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--purple--300": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--global--color--nonstatus--purple--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "300" - ], - "references": [ - { + "value": "#876fd4", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.40}" + }, + "name": "pf-t--global--color--nonstatus--purple--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "300" + ], + "references": [ + { "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } }, "pf-t--global--color--nonstatus--gray--100": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--color--nonstatus--gray--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "100" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.20}" + }, + "name": "pf-t--global--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } }, "pf-t--global--color--nonstatus--gray--200": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--nonstatus--gray--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--gray--300": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--nonstatus--gray--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "300" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--nonstatus--gray--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "300" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } }, "pf-t--global--text--color--100": { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#151515", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] + "value": "#151515", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } }, "pf-t--global--text--color--200": { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--global--text--color--200", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "text", - "color", - "200" - ], - "references": [ - { + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.60}" + }, + "name": "pf-t--global--text--color--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "text", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] + "value": "#4d4d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } }, "pf-t--global--text--color--300": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } }, "pf-t--global--text--color--400": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--text--color--400", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "400" - }, - "path": [ - "global", - "text", - "color", - "400" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--text--color--400", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "text", + "color", + "400" + ], + "references": [ + { "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } }, "pf-t--global--text--color--link--100": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--text--color--link--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "100" - }, - "path": [ - "global", - "text", - "color", - "link", - "100" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.50}" + }, + "name": "pf-t--global--text--color--link--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "100" + }, + "path": [ + "global", + "text", + "color", + "link", + "100" + ], + "references": [ + { "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } }, "pf-t--global--text--color--link--200": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--text--color--link--200", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "200" - }, - "path": [ - "global", - "text", - "color", - "link", - "200" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#004d99", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.60}" + }, + "name": "pf-t--global--text--color--link--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "200" + }, + "path": [ + "global", + "text", + "color", + "link", + "200" + ], + "references": [ + { "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] + "value": "#004d99", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } }, "pf-t--global--text--color--link--300": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": false, - "original": { + "default": { "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--text--color--link--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "300" - }, - "path": [ - "global", - "text", - "color", - "link", - "300" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": false, + "original": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] + "value": "{color.purple.50}" + }, + "name": "pf-t--global--text--color--link--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "300" + }, + "path": [ + "global", + "text", + "color", + "link", + "300" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } }, "pf-t--global--dark--background--color--100": { - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--dark--background--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "background", - "color", - "100" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#151515", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.95}" + }, + "name": "pf-t--global--dark--background--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "background", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] + "value": "#151515", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } }, "pf-t--global--dark--background--color--200": { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--dark--background--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "background", - "color", - "200" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.80}" + }, + "name": "pf-t--global--dark--background--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "background", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } }, "pf-t--global--dark--background--color--300": { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--background--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "background", - "color", - "300" - ], - "references": [ - { + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--background--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "background", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } }, "pf-t--global--dark--background--color--400": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--dark--background--color--400", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "400" - }, - "path": [ - "global", - "dark", - "background", - "color", - "400" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--background--color--400", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "400" + }, + "path": [ + "global", + "dark", + "background", + "color", + "400" + ], + "references": [ + { "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } }, "pf-t--global--dark--background--color--500": { - "type": "color", - "value": "rgba(21, 21, 21, 0.8000)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "rgba(21, 21, 21, 0.8000)" - }, - "name": "pf-t--global--dark--background--color--500", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "500" - }, - "path": [ - "global", - "dark", - "background", - "color", - "500" - ] + "value": "rgba(21, 21, 21, 0.8000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(21, 21, 21, 0.8000)" + }, + "name": "pf-t--global--dark--background--color--500", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "500" + }, + "path": [ + "global", + "dark", + "background", + "color", + "500" + ] + } }, "pf-t--global--dark--background--color--600": { - "type": "color", - "value": "rgba(199, 199, 199, 0.1500)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "rgba(199, 199, 199, 0.1500)" - }, - "name": "pf-t--global--dark--background--color--600", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "600" - }, - "path": [ - "global", - "dark", - "background", - "color", - "600" - ] + "value": "rgba(199, 199, 199, 0.1500)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.1500)" + }, + "name": "pf-t--global--dark--background--color--600", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "600" + }, + "path": [ + "global", + "dark", + "background", + "color", + "600" + ] + } }, "pf-t--global--dark--background--color--highlight--100": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--background--color--highlight--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "highlight" - }, - "path": [ - "global", - "dark", - "background", - "color", - "highlight", - "100" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--background--color--highlight--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "highlight" + }, + "path": [ + "global", + "dark", + "background", + "color", + "highlight", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } }, "pf-t--global--dark--background--color--highlight--200": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--background--color--highlight--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "background", - "subitem": "color", - "state": "highlight" - }, - "path": [ - "global", - "dark", - "background", - "color", - "highlight", - "200" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--background--color--highlight--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "background", + "subitem": "color", + "state": "highlight" + }, + "path": [ + "global", + "dark", + "background", + "color", + "highlight", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--brand--100": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--brand--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "100" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--brand--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "100" + ], + "references": [ + { "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--brand--200": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--brand--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "200" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--brand--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "200" + ], + "references": [ + { "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } }, "pf-t--global--dark--color--brand--300": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--color--brand--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "brand", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "brand", - "300" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--brand--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "brand", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "brand", + "300" + ], + "references": [ + { "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } }, "pf-t--global--dark--color--disabled--100": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--color--disabled--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "100" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--color--disabled--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "100" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } }, "pf-t--global--dark--color--disabled--200": { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--dark--color--disabled--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "200" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--global--dark--color--disabled--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "200" + ], + "references": [ + { "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } }, "pf-t--global--dark--color--disabled--300": { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--global--dark--color--disabled--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "disabled", - "state": "300" - }, - "path": [ - "global", - "dark", - "color", - "disabled", - "300" - ], - "references": [ - { + "value": "#383838", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.70}" + }, + "name": "pf-t--global--dark--color--disabled--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "disabled", + "state": "300" + }, + "path": [ + "global", + "dark", + "color", + "disabled", + "300" + ], + "references": [ + { "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } }, "pf-t--global--dark--color--favorite--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--favorite--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "favorite", - "state": "100" - }, - "path": [ - "global", - "dark", - "color", - "favorite", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--favorite--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "100" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--favorite--200": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--favorite--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "favorite", - "state": "200" - }, - "path": [ - "global", - "dark", - "color", - "favorite", - "200" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--favorite--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "favorite", + "state": "200" + }, + "path": [ + "global", + "dark", + "color", + "favorite", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } }, "pf-t--global--dark--color--severity--undefined--100": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--color--severity--undefined--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "undefined" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "undefined", - "100" - ], - "references": [ - { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--color--severity--undefined--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "undefined" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "undefined", + "100" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } }, "pf-t--global--dark--color--severity--none--100": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--severity--none--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "none" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "none", - "100" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--severity--none--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "none" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "none", + "100" + ], + "references": [ + { "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--severity--minor--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--dark--color--severity--minor--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "minor" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "minor", - "100" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--color--severity--minor--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "minor" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "minor", + "100" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--severity--moderate--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--severity--moderate--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "moderate" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "moderate", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--severity--moderate--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "moderate" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "moderate", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - }, - "pf-t--global--dark--color--severity--important--100": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--global--dark--color--severity--important--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "important" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "important", - "100" - ], - "references": [ - { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + }, + "pf-t--global--dark--color--severity--important--100": { + "dark": { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.orange.40}" + }, + "name": "pf-t--global--dark--color--severity--important--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "important" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "important", + "100" + ], + "references": [ + { "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } }, "pf-t--global--dark--color--severity--critical--100": { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--global--dark--color--severity--critical--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "severity", - "state": "critical" - }, - "path": [ - "global", - "dark", - "color", - "severity", - "critical", - "100" - ], - "references": [ - { + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--severity--critical--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "severity", + "state": "critical" + }, + "path": [ + "global", + "dark", + "color", + "severity", + "critical", + "100" + ], + "references": [ + { "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } }, "pf-t--global--dark--color--status--success--100": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--dark--color--status--success--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "100" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.40}" + }, + "name": "pf-t--global--dark--color--status--success--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "100" + ], + "references": [ + { "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } }, "pf-t--global--dark--color--status--success--200": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--status--success--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "dark", - "color", - "status", - "success", - "200" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--status--success--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "dark", + "color", + "status", + "success", + "200" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--status--warning--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--status--warning--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--status--warning--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--status--warning--200": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--status--warning--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "dark", - "color", - "status", - "warning", - "200" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--status--warning--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "dark", + "color", + "status", + "warning", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } }, "pf-t--global--dark--color--status--danger--100": { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--global--dark--color--status--danger--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "100" - ], - "references": [ - { + "value": "#f0561d", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.50}" + }, + "name": "pf-t--global--dark--color--status--danger--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "100" + ], + "references": [ + { "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } }, "pf-t--global--dark--color--status--danger--200": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--dark--color--status--danger--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "200" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--dark--color--status--danger--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } }, "pf-t--global--dark--color--status--danger--250": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--dark--color--status--danger--250", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "250" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--color--status--danger--250", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "250" + ], + "references": [ + { "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--status--danger--300": { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--dark--color--status--danger--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "dark", - "color", - "status", - "danger", - "300" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--status--danger--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "dark", + "color", + "status", + "danger", + "300" + ], + "references": [ + { "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } }, "pf-t--global--dark--color--status--info--100": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--color--status--info--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "100" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--status--info--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "100" + ], + "references": [ + { "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--status--info--200": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--status--info--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "dark", - "color", - "status", - "info", - "200" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--status--info--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "dark", + "color", + "status", + "info", + "200" + ], + "references": [ + { "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } }, "pf-t--global--dark--color--status--custom--100": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--dark--color--status--custom--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "100" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.40}" + }, + "name": "pf-t--global--dark--color--status--custom--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "100" + ], + "references": [ + { "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } }, "pf-t--global--dark--color--status--custom--200": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--status--custom--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "dark", - "color", - "status", - "custom", - "200" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--status--custom--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "dark", + "color", + "status", + "custom", + "200" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--red--100": { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.red.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "100" - ], - "references": [ - { + "value": "#f9a8a8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - } - ] + "value": "#f9a8a8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--red--200": { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.red.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { + "value": "#fbc5c5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - } - ] + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--red--300": { - "type": "color", - "value": "#fce3e3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.red.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--red--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "red", - "300" - ], - "references": [ - { + "value": "#fce3e3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fce3e3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--red--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "red", + "300" + ], + "references": [ + { "type": "color", - "value": "#fce3e3" - }, - "name": "pf-t--color--red--10", - "attributes": { - "category": "color", - "type": "red", - "item": "10" - }, - "path": [ - "color", - "red", - "10" - ] - } - ] + "value": "#fce3e3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fce3e3" + }, + "name": "pf-t--color--red--10", + "attributes": { + "category": "color", + "type": "red", + "item": "10" + }, + "path": [ + "color", + "red", + "10" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--orangered--100": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "100" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--orangered--200": { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--orangered--300": { - "type": "color", - "value": "#ffe3d9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.red-orange.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--orangered--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orangered", - "300" - ], - "references": [ - { + "value": "#ffe3d9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe3d9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--orangered--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orangered", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffe3d9" - }, - "name": "pf-t--color--red-orange--10", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "10" - }, - "path": [ - "color", - "red-orange", - "10" - ] - } - ] - }, - "pf-t--global--dark--color--nonstatus--orange--100": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "#ffe3d9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe3d9" + }, + "name": "pf-t--color--red-orange--10", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "10" + }, + "path": [ + "color", + "red-orange", + "10" + ] + } + ] + } + }, + "pf-t--global--dark--color--nonstatus--orange--100": { + "dark": { "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "100" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--orange--200": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--orange--300": { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.orange.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--orange--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "orange", - "300" - ], - "references": [ - { + "value": "#ffe8cc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--orange--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "orange", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] - } - ] + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--yellow--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--yellow--200": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--yellow--300": { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.yellow.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--yellow--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "yellow", - "300" - ], - "references": [ - { + "value": "#fff4cc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--yellow--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "yellow", + "300" + ], + "references": [ + { "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] - } - ] + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--green--100": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "100" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--green--200": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--green--300": { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.green.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--green--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "green", - "300" - ], - "references": [ - { + "value": "#e9f7df", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--green--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "green", + "300" + ], + "references": [ + { "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] - } - ] + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--teal--100": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "100" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "100" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--teal--200": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - }, + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + }, "pf-t--global--dark--color--nonstatus--teal--300": { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.teal.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--teal--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "teal", - "300" - ], - "references": [ - { + "value": "#daf2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--teal--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "teal", + "300" + ], + "references": [ + { "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - } - ] + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--blue--100": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "100" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--blue--200": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--blue--300": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--blue--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "blue", - "300" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--blue--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--purple--100": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "100" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--purple--200": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--purple--300": { - "type": "color", - "value": "#ece6ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.purple.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--purple--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "purple", - "300" - ], - "references": [ - { + "value": "#ece6ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ece6ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--purple--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "purple", + "300" + ], + "references": [ + { "type": "color", - "value": "#ece6ff" - }, - "name": "pf-t--color--purple--10", - "attributes": { - "category": "color", - "type": "purple", - "item": "10" - }, - "path": [ - "color", - "purple", - "10" - ] - } - ] + "value": "#ece6ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ece6ff" + }, + "name": "pf-t--color--purple--10", + "attributes": { + "category": "color", + "type": "purple", + "item": "10" + }, + "path": [ + "color", + "purple", + "10" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--gray--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "100" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--gray--200": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.20}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } }, "pf-t--global--dark--color--nonstatus--gray--300": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--dark--color--nonstatus--gray--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "dark", - "color", - "nonstatus", - "gray", - "300" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--color--nonstatus--gray--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "dark", + "color", + "nonstatus", + "gray", + "300" + ], + "references": [ + { "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } }, "pf-t--global--dark--border--color--100": { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--dark--border--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "border", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "border", - "color", - "100" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--global--dark--border--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "border", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "border", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - }, - "pf-t--global--dark--border--color--200": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + }, + "pf-t--global--dark--border--color--200": { + "dark": { "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--border--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "border", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "border", - "color", - "200" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--border--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "border", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "border", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } }, "pf-t--global--dark--text--color--100": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--dark--text--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "text", - "color", - "100" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--text--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } }, "pf-t--global--dark--text--color--200": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--dark--text--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "text", - "color", - "200" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--global--dark--text--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "text", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } }, "pf-t--global--dark--text--color--300": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--text--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "text", - "color", - "300" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--text--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } }, "pf-t--global--dark--text--color--400": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--dark--text--color--400", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "400" - }, - "path": [ - "global", - "dark", - "text", - "color", - "400" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--dark--text--color--400", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "400" + }, + "path": [ + "global", + "dark", + "text", + "color", + "400" + ], + "references": [ + { "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } }, "pf-t--global--dark--text--color--link--100": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--dark--text--color--link--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "link" - }, - "path": [ - "global", - "dark", - "text", - "color", - "link", - "100" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.20}" + }, + "name": "pf-t--global--dark--text--color--link--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "100" + ], + "references": [ + { "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } }, "pf-t--global--dark--text--color--link--200": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--global--dark--text--color--link--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "link" - }, - "path": [ - "global", - "dark", - "text", - "color", - "link", - "200" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.10}" + }, + "name": "pf-t--global--dark--text--color--link--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "200" + ], + "references": [ + { "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } }, "pf-t--global--dark--text--color--link--300": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--dark--text--color--link--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "text", - "subitem": "color", - "state": "link" - }, - "path": [ - "global", - "dark", - "text", - "color", - "link", - "300" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.30}" + }, + "name": "pf-t--global--dark--text--color--link--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "text", + "subitem": "color", + "state": "link" + }, + "path": [ + "global", + "dark", + "text", + "color", + "link", + "300" + ], + "references": [ + { "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } }, "pf-t--global--dark--icon--color--100": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--dark--icon--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "100" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.10}" + }, + "name": "pf-t--global--dark--icon--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } }, "pf-t--global--dark--icon--color--200": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--dark--icon--color--200", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "200" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "200" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--global--dark--icon--color--200", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "200" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } }, "pf-t--global--dark--icon--color--300": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--dark--icon--color--300", - "attributes": { - "category": "global", - "type": "dark", - "item": "icon", - "subitem": "color", - "state": "300" - }, - "path": [ - "global", - "dark", - "icon", - "color", - "300" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.90}" + }, + "name": "pf-t--global--dark--icon--color--300", + "attributes": { + "category": "global", + "type": "dark", + "item": "icon", + "subitem": "color", + "state": "300" + }, + "path": [ + "global", + "dark", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } }, "pf-t--global--dark--box-shadow--color--100": { - "type": "color", - "value": "rgba(0, 0, 0, 0.5000)", - "filePath": "tokens/dark/base.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "rgba(0, 0, 0, 0.5000)" - }, - "name": "pf-t--global--dark--box-shadow--color--100", - "attributes": { - "category": "global", - "type": "dark", - "item": "box-shadow", - "subitem": "color", - "state": "100" - }, - "path": [ - "global", - "dark", - "box-shadow", - "color", - "100" - ] + "value": "rgba(0, 0, 0, 0.5000)", + "filePath": "tokens/dark/base.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.5000)" + }, + "name": "pf-t--global--dark--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "dark", + "item": "box-shadow", + "subitem": "color", + "state": "100" + }, + "path": [ + "global", + "dark", + "box-shadow", + "color", + "100" + ] + } } }, "dimension": { "pf-t--global--spacer--100": { - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "default": { "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] + "value": "0.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } }, "pf-t--global--spacer--200": { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "default": { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + }, + "pf-t--global--spacer--300": { + "default": { + "type": "number", + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + }, + "pf-t--global--spacer--400": { + "default": { + "type": "number", + "value": "1.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + }, + "pf-t--global--spacer--500": { + "default": { + "type": "number", + "value": "2rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + } + }, + "pf-t--global--spacer--600": { + "default": { + "type": "number", + "value": "3rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + } + }, + "pf-t--global--spacer--700": { + "default": { + "type": "number", + "value": "4rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 64 + }, + "name": "pf-t--global--spacer--700", + "attributes": { + "category": "global", + "type": "spacer", + "item": "700" + }, + "path": [ + "global", + "spacer", + "700" + ] + } + }, + "pf-t--global--spacer--800": { + "default": { + "type": "number", + "value": "5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 80 + }, + "name": "pf-t--global--spacer--800", + "attributes": { + "category": "global", + "type": "spacer", + "item": "800" + }, + "path": [ + "global", + "spacer", + "800" + ] + } + }, + "pf-t--global--icon--size--100": { + "default": { + "type": "number", + "value": "0.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--icon--size--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "size", + "100" + ] + } + }, + "pf-t--global--icon--size--200": { + "default": { + "type": "number", + "value": "0.875rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--icon--size--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "size", + "200" + ] + } + }, + "pf-t--global--icon--size--250": { + "default": { + "type": "number", + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--icon--size--250", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "250" + }, + "path": [ + "global", + "icon", + "size", + "250" + ] + } + }, + "pf-t--global--icon--size--300": { + "default": { + "type": "number", + "value": "1.375rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--icon--size--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "size", + "300" + ] + } + }, + "pf-t--global--icon--size--400": { + "default": { + "type": "number", + "value": "3.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 56 + }, + "name": "pf-t--global--icon--size--400", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "icon", + "size", + "400" + ] + } + }, + "pf-t--global--icon--size--500": { + "default": { + "type": "number", + "value": "6rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 96 + }, + "name": "pf-t--global--icon--size--500", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "icon", + "size", + "500" + ] + } + }, + "pf-t--global--border--width--100": { + "default": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + }, + "pf-t--global--border--width--200": { + "default": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + }, + "pf-t--global--border--width--300": { + "default": { + "type": "number", + "value": "3px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 3 + }, + "name": "pf-t--global--border--width--300", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "300" + }, + "path": [ + "global", + "border", + "width", + "300" + ] + } + }, + "pf-t--global--border--radius--0": { + "default": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--border--radius--0", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "0" + }, + "path": [ + "global", + "border", + "radius", + "0" + ] + } + }, + "pf-t--global--border--radius--100": { + "default": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--border--radius--100", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "100" + }, + "path": [ + "global", + "border", + "radius", + "100" + ] + } + }, + "pf-t--global--border--radius--200": { + "default": { + "type": "number", + "value": "6px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 6 + }, + "name": "pf-t--global--border--radius--200", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "200" + }, + "path": [ + "global", + "border", + "radius", + "200" + ] + } + }, + "pf-t--global--border--radius--300": { + "default": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--border--radius--300", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "300" + }, + "path": [ + "global", + "border", + "radius", + "300" + ] + } + }, + "pf-t--global--border--radius--400": { + "default": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--border--radius--400", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "400" + }, + "path": [ + "global", + "border", + "radius", + "400" + ] + } + }, + "pf-t--global--border--radius--500": { + "default": { + "type": "number", + "value": "999px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 999 + }, + "name": "pf-t--global--border--radius--500", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "500" + }, + "path": [ + "global", + "border", + "radius", + "500" + ] + } + }, + "pf-t--global--font--family--100": { + "default": { + "type": "string", + "value": "Red Hat Text VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Text VF" + }, + "name": "pf-t--global--font--family--100", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "100" + }, + "path": [ + "global", + "font", + "family", + "100" + ] + } + }, + "pf-t--global--font--family--200": { + "default": { + "type": "string", + "value": "Red Hat Display VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Display VF" + }, + "name": "pf-t--global--font--family--200", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "200" + }, + "path": [ + "global", + "font", + "family", + "200" + ] + } + }, + "pf-t--global--font--family--300": { + "default": { + "type": "string", + "value": "Red Hat Mono VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "string", + "value": "Red Hat Mono VF" + }, + "name": "pf-t--global--font--family--300", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "300" + }, + "path": [ + "global", + "font", + "family", + "300" + ] + } + }, + "pf-t--global--font--weight--100": { + "default": { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--font--weight--100", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "100" + }, + "path": [ + "global", + "font", + "weight", + "100" + ] + } + }, + "pf-t--global--font--weight--200": { + "default": { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--font--weight--200", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "200" + }, + "path": [ + "global", + "font", + "weight", + "200" + ] + } + }, + "pf-t--global--font--weight--300": { + "default": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 700 + }, + "name": "pf-t--global--font--weight--300", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "300" + }, + "path": [ + "global", + "font", + "weight", + "300" + ] + } }, - "pf-t--global--spacer--300": { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--font--weight--400": { + "default": { "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 700 + }, + "name": "pf-t--global--font--weight--400", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "400" + }, + "path": [ + "global", + "font", + "weight", + "400" + ] + } }, - "pf-t--global--spacer--400": { - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--font--line-height--100": { + "default": { "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] + "value": 1.2999999523162842, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1.2999999523162842 + }, + "name": "pf-t--global--font--line-height--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "100" + }, + "path": [ + "global", + "font", + "line-height", + "100" + ] + } }, - "pf-t--global--spacer--500": { - "type": "number", - "value": "2rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--font--line-height--200": { + "default": { "type": "number", - "value": 32 - }, - "name": "pf-t--global--spacer--500", - "attributes": { - "category": "global", - "type": "spacer", - "item": "500" - }, - "path": [ - "global", - "spacer", - "500" - ] + "value": 1.5, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1.5 + }, + "name": "pf-t--global--font--line-height--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "200" + }, + "path": [ + "global", + "font", + "line-height", + "200" + ] + } }, - "pf-t--global--spacer--600": { - "type": "number", - "value": "3rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--font--size--100": { + "default": { "type": "number", - "value": 48 - }, - "name": "pf-t--global--spacer--600", - "attributes": { - "category": "global", - "type": "spacer", - "item": "600" - }, - "path": [ - "global", - "spacer", - "600" - ] + "value": "0.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } }, - "pf-t--global--spacer--700": { - "type": "number", - "value": "4rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--font--size--200": { + "default": { "type": "number", - "value": 64 - }, - "name": "pf-t--global--spacer--700", - "attributes": { - "category": "global", - "type": "spacer", - "item": "700" - }, - "path": [ - "global", - "spacer", - "700" - ] + "value": "0.875rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } }, - "pf-t--global--spacer--800": { - "type": "number", - "value": "5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--font--size--300": { + "default": { "type": "number", - "value": 80 - }, - "name": "pf-t--global--spacer--800", - "attributes": { - "category": "global", - "type": "spacer", - "item": "800" - }, - "path": [ - "global", - "spacer", - "800" - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } }, - "pf-t--global--icon--size--100": { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--font--size--400": { + "default": { "type": "number", - "value": 12 - }, - "name": "pf-t--global--icon--size--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "size", - "100" - ] + "value": "1.125rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } }, - "pf-t--global--icon--size--200": { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--font--size--500": { + "default": { "type": "number", - "value": 14 - }, - "name": "pf-t--global--icon--size--200", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "icon", - "size", - "200" - ] + "value": "1.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } }, - "pf-t--global--icon--size--250": { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--font--size--600": { + "default": { "type": "number", - "value": 16 - }, - "name": "pf-t--global--icon--size--250", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "250" - }, - "path": [ - "global", - "icon", - "size", - "250" - ] + "value": "1.375rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } }, - "pf-t--global--icon--size--300": { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--font--size--700": { + "default": { "type": "number", - "value": 22 - }, - "name": "pf-t--global--icon--size--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "size", - "300" - ] + "value": "1.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + } }, - "pf-t--global--icon--size--400": { - "type": "number", - "value": "3.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--font--size--800": { + "default": { "type": "number", - "value": 56 - }, - "name": "pf-t--global--icon--size--400", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "icon", - "size", - "400" - ] + "value": "2.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + } }, - "pf-t--global--icon--size--500": { - "type": "number", - "value": "6rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--z-index--100": { + "default": { "type": "number", - "value": 96 - }, - "name": "pf-t--global--icon--size--500", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "icon", - "size", - "500" - ] + "value": 100, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--z-index--100", + "attributes": { + "category": "global", + "type": "z-index", + "item": "100" + }, + "path": [ + "global", + "z-index", + "100" + ] + } }, - "pf-t--global--border--width--100": { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--z-index--200": { + "default": { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] + "value": 200, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--z-index--200", + "attributes": { + "category": "global", + "type": "z-index", + "item": "200" + }, + "path": [ + "global", + "z-index", + "200" + ] + } }, - "pf-t--global--border--width--200": { - "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--z-index--300": { + "default": { "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] + "value": 300, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--z-index--300", + "attributes": { + "category": "global", + "type": "z-index", + "item": "300" + }, + "path": [ + "global", + "z-index", + "300" + ] + } }, - "pf-t--global--border--width--300": { - "type": "number", - "value": "3px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--z-index--400": { + "default": { "type": "number", - "value": 3 - }, - "name": "pf-t--global--border--width--300", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "300" - }, - "path": [ - "global", - "border", - "width", - "300" - ] + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--z-index--400", + "attributes": { + "category": "global", + "type": "z-index", + "item": "400" + }, + "path": [ + "global", + "z-index", + "400" + ] + } }, - "pf-t--global--border--radius--0": { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--z-index--500": { + "default": { "type": "number", - "value": 0 - }, - "name": "pf-t--global--border--radius--0", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "0" - }, - "path": [ - "global", - "border", - "radius", - "0" - ] + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--z-index--500", + "attributes": { + "category": "global", + "type": "z-index", + "item": "500" + }, + "path": [ + "global", + "z-index", + "500" + ] + } }, - "pf-t--global--border--radius--100": { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--z-index--600": { + "default": { "type": "number", - "value": 4 - }, - "name": "pf-t--global--border--radius--100", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "100" - }, - "path": [ - "global", - "border", - "radius", - "100" - ] + "value": 600, + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--z-index--600", + "attributes": { + "category": "global", + "type": "z-index", + "item": "600" + }, + "path": [ + "global", + "z-index", + "600" + ] + } }, - "pf-t--global--border--radius--200": { - "type": "number", - "value": "6px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--box-shadow--X--100": { + "default": { "type": "number", - "value": 6 - }, - "name": "pf-t--global--border--radius--200", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "200" - }, - "path": [ - "global", - "border", - "radius", - "200" - ] + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--X--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "X", + "100" + ] + } }, - "pf-t--global--border--radius--300": { - "type": "number", - "value": "16px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--box-shadow--X--200": { + "default": { "type": "number", - "value": 16 - }, - "name": "pf-t--global--border--radius--300", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "300" - }, - "path": [ - "global", - "border", - "radius", - "300" - ] + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--X--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "X", + "200" + ] + } }, - "pf-t--global--border--radius--400": { - "type": "number", - "value": "24px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--box-shadow--X--300": { + "default": { "type": "number", - "value": 24 - }, - "name": "pf-t--global--border--radius--400", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "400" - }, - "path": [ - "global", - "border", - "radius", - "400" - ] + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--X--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "X", + "300" + ] + } }, - "pf-t--global--border--radius--500": { - "type": "number", - "value": "999px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--box-shadow--X--400": { + "default": { "type": "number", - "value": 999 - }, - "name": "pf-t--global--border--radius--500", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "500" - }, - "path": [ - "global", - "border", - "radius", - "500" - ] - }, - "pf-t--global--font--family--100": { - "type": "string", - "value": "Red Hat Text VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "string", - "value": "Red Hat Text VF" - }, - "name": "pf-t--global--font--family--100", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "100" - }, - "path": [ - "global", - "font", - "family", - "100" - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } }, - "pf-t--global--font--family--200": { - "type": "string", - "value": "Red Hat Display VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "string", - "value": "Red Hat Display VF" - }, - "name": "pf-t--global--font--family--200", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "200" - }, - "path": [ - "global", - "font", - "family", - "200" - ] + "pf-t--global--box-shadow--X--500": { + "default": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--X--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "X", + "500" + ] + } }, - "pf-t--global--font--family--300": { - "type": "string", - "value": "Red Hat Mono VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { - "type": "string", - "value": "Red Hat Mono VF" - }, - "name": "pf-t--global--font--family--300", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "300" - }, - "path": [ - "global", - "font", - "family", - "300" - ] + "pf-t--global--box-shadow--X--600": { + "default": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--X--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "X", + "600" + ] + } }, - "pf-t--global--font--weight--100": { - "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--box-shadow--X--700": { + "default": { "type": "number", - "value": 400 - }, - "name": "pf-t--global--font--weight--100", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "100" - }, - "path": [ - "global", - "font", - "weight", - "100" - ] + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--X--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "X", + "700" + ] + } }, - "pf-t--global--font--weight--200": { - "type": "number", - "value": 500, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--box-shadow--Y--100": { + "default": { "type": "number", - "value": 500 - }, - "name": "pf-t--global--font--weight--200", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "200" - }, - "path": [ - "global", - "font", - "weight", - "200" - ] + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--Y--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "Y", + "100" + ] + } }, - "pf-t--global--font--weight--300": { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--box-shadow--Y--200": { + "default": { "type": "number", - "value": 700 - }, - "name": "pf-t--global--font--weight--300", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "300" - }, - "path": [ - "global", - "font", - "weight", - "300" - ] + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--Y--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "Y", + "200" + ] + } }, - "pf-t--global--font--weight--400": { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--box-shadow--Y--300": { + "default": { "type": "number", - "value": 700 - }, - "name": "pf-t--global--font--weight--400", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "400" - }, - "path": [ - "global", - "font", - "weight", - "400" - ] + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--Y--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "Y", + "300" + ] + } }, - "pf-t--global--font--line-height--100": { - "type": "number", - "value": 1.2999999523162842, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--box-shadow--Y--400": { + "default": { "type": "number", - "value": 1.2999999523162842 - }, - "name": "pf-t--global--font--line-height--100", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "100" - }, - "path": [ - "global", - "font", - "line-height", - "100" - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } }, - "pf-t--global--font--line-height--200": { - "type": "number", - "value": 1.5, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--box-shadow--Y--500": { + "default": { "type": "number", - "value": 1.5 - }, - "name": "pf-t--global--font--line-height--200", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "200" - }, - "path": [ - "global", - "font", - "line-height", - "200" - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + } }, - "pf-t--global--font--size--100": { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--box-shadow--Y--600": { + "default": { "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + } }, - "pf-t--global--font--size--200": { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--box-shadow--Y--700": { + "default": { "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + } }, - "pf-t--global--font--size--300": { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--box-shadow--blur--100": { + "default": { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--blur--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "blur", + "100" + ] + } }, - "pf-t--global--font--size--400": { - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--box-shadow--blur--200": { + "default": { "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--blur--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "blur", + "200" + ] + } }, - "pf-t--global--font--size--500": { - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--box-shadow--blur--300": { + "default": { "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--box-shadow--blur--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "blur", + "300" + ] + } }, - "pf-t--global--font--size--600": { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--box-shadow--spread--100": { + "default": { "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } }, - "pf-t--global--font--size--700": { - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--breakpoint--100": { + "default": { "type": "number", - "value": 28 - }, - "name": "pf-t--global--font--size--700", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "700" - }, - "path": [ - "global", - "font", - "size", - "700" - ] + "value": "0rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + } }, - "pf-t--global--font--size--800": { - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--breakpoint--200": { + "default": { "type": "number", - "value": 36 - }, - "name": "pf-t--global--font--size--800", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "800" - }, - "path": [ - "global", - "font", - "size", - "800" - ] + "value": "36rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 576 + }, + "name": "pf-t--global--breakpoint--200", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "200" + }, + "path": [ + "global", + "breakpoint", + "200" + ] + } }, - "pf-t--global--z-index--100": { - "type": "number", - "value": 100, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--breakpoint--250": { + "default": { "type": "number", - "value": 100 - }, - "name": "pf-t--global--z-index--100", - "attributes": { - "category": "global", - "type": "z-index", - "item": "100" - }, - "path": [ - "global", - "z-index", - "100" - ] + "value": "40rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 640 + }, + "name": "pf-t--global--breakpoint--250", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "250" + }, + "path": [ + "global", + "breakpoint", + "250" + ] + } }, - "pf-t--global--z-index--200": { - "type": "number", - "value": 200, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--breakpoint--300": { + "default": { "type": "number", - "value": 200 - }, - "name": "pf-t--global--z-index--200", - "attributes": { - "category": "global", - "type": "z-index", - "item": "200" - }, - "path": [ - "global", - "z-index", - "200" - ] + "value": "48rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + } }, - "pf-t--global--z-index--300": { - "type": "number", - "value": 300, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--breakpoint--350": { + "default": { "type": "number", - "value": 300 - }, - "name": "pf-t--global--z-index--300", - "attributes": { - "category": "global", - "type": "z-index", - "item": "300" - }, - "path": [ - "global", - "z-index", - "300" - ] + "value": "60rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 960 + }, + "name": "pf-t--global--breakpoint--350", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "350" + }, + "path": [ + "global", + "breakpoint", + "350" + ] + } }, - "pf-t--global--z-index--400": { - "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--breakpoint--400": { + "default": { "type": "number", - "value": 400 - }, - "name": "pf-t--global--z-index--400", - "attributes": { - "category": "global", - "type": "z-index", - "item": "400" - }, - "path": [ - "global", - "z-index", - "400" - ] + "value": "62rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 992 + }, + "name": "pf-t--global--breakpoint--400", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "400" + }, + "path": [ + "global", + "breakpoint", + "400" + ] + } }, - "pf-t--global--z-index--500": { - "type": "number", - "value": 500, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--breakpoint--500": { + "default": { "type": "number", - "value": 500 - }, - "name": "pf-t--global--z-index--500", - "attributes": { - "category": "global", - "type": "z-index", - "item": "500" - }, - "path": [ - "global", - "z-index", - "500" - ] + "value": "75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1200 + }, + "name": "pf-t--global--breakpoint--500", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "500" + }, + "path": [ + "global", + "breakpoint", + "500" + ] + } }, - "pf-t--global--z-index--600": { - "type": "number", - "value": 600, - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--breakpoint--550": { + "default": { "type": "number", - "value": 600 - }, - "name": "pf-t--global--z-index--600", - "attributes": { - "category": "global", - "type": "z-index", - "item": "600" - }, - "path": [ - "global", - "z-index", - "600" - ] + "value": "80rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1280 + }, + "name": "pf-t--global--breakpoint--550", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "550" + }, + "path": [ + "global", + "breakpoint", + "550" + ] + } }, - "pf-t--global--box-shadow--X--100": { - "type": "number", - "value": "-8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--breakpoint--600": { + "default": { "type": "number", - "value": -8 - }, - "name": "pf-t--global--box-shadow--X--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "X", - "100" - ] + "value": "90.625rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": false, + "original": { + "type": "number", + "value": 1450 + }, + "name": "pf-t--global--breakpoint--600", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "600" + }, + "path": [ + "global", + "breakpoint", + "600" + ] + } + } + }, + "motion": { + "pf-t--global--duration--50": { + "default": { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + } }, - "pf-t--global--box-shadow--X--200": { - "type": "number", - "value": "-4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--duration--100": { + "default": { "type": "number", - "value": -4 - }, - "name": "pf-t--global--box-shadow--X--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "X", - "200" - ] + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } }, - "pf-t--global--box-shadow--X--300": { - "type": "number", - "value": "-1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--duration--200": { + "default": { "type": "number", - "value": -1 - }, - "name": "pf-t--global--box-shadow--X--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "X", - "300" - ] + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } }, - "pf-t--global--box-shadow--X--400": { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--duration--300": { + "default": { + "type": "number", + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + }, + "pf-t--global--duration--400": { + "default": { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } }, - "pf-t--global--box-shadow--X--500": { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--duration--500": { + "default": { "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--X--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "X", - "500" - ] + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } }, - "pf-t--global--box-shadow--X--600": { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--duration--600": { + "default": { "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--X--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "X", - "600" - ] + "value": "600ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--duration--600", + "attributes": { + "category": "global", + "type": "duration", + "item": "600" + }, + "path": [ + "global", + "duration", + "600" + ] + } }, - "pf-t--global--box-shadow--X--700": { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--delay--100": { + "default": { "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--X--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "X", - "700" - ] + "value": "0ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--delay--100", + "attributes": { + "category": "global", + "type": "delay", + "item": "100" + }, + "path": [ + "global", + "delay", + "100" + ] + } }, - "pf-t--global--box-shadow--Y--100": { - "type": "number", - "value": "-8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--delay--200": { + "default": { "type": "number", - "value": -8 - }, - "name": "pf-t--global--box-shadow--Y--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "Y", - "100" - ] + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--delay--200", + "attributes": { + "category": "global", + "type": "delay", + "item": "200" + }, + "path": [ + "global", + "delay", + "200" + ] + } }, - "pf-t--global--box-shadow--Y--200": { - "type": "number", - "value": "-4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--delay--300": { + "default": { "type": "number", - "value": -4 - }, - "name": "pf-t--global--box-shadow--Y--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "Y", - "200" - ] + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--delay--300", + "attributes": { + "category": "global", + "type": "delay", + "item": "300" + }, + "path": [ + "global", + "delay", + "300" + ] + } }, - "pf-t--global--box-shadow--Y--300": { - "type": "number", - "value": "-1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, - "original": { + "pf-t--global--delay--400": { + "default": { "type": "number", - "value": -1 - }, - "name": "pf-t--global--box-shadow--Y--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "Y", - "300" - ] + "value": "7000ms", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "number", + "value": 7000 + }, + "name": "pf-t--global--delay--400", + "attributes": { + "category": "global", + "type": "delay", + "item": "400" + }, + "path": [ + "global", + "delay", + "400" + ] + } }, - "pf-t--global--box-shadow--Y--400": { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + "pf-t--global--timing-function--100": { + "default": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)" + }, + "name": "pf-t--global--timing-function--100", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "100" + }, + "path": [ + "global", + "timing-function", + "100" + ] + } + }, + "pf-t--global--timing-function--200": { + "default": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--200", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "200" + }, + "path": [ + "global", + "timing-function", + "200" + ] + } + }, + "pf-t--global--timing-function--300": { + "default": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": false, + "original": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--300", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "300" + }, + "path": [ + "global", + "timing-function", + "300" + ] + } + } + } + }, + "palette": { + "pf-t--color--white": { + "dark": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 0 + "type": "color", + "value": "#ffffff" }, - "name": "pf-t--global--box-shadow--Y--400", + "name": "pf-t--color--white", "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" + "category": "color", + "type": "white" }, "path": [ - "global", - "box-shadow", - "Y", - "400" + "color", + "white" ] - }, - "pf-t--global--box-shadow--Y--500": { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + } + }, + "pf-t--color--gray--10": { + "dark": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 1 + "type": "color", + "value": "#f2f2f2" }, - "name": "pf-t--global--box-shadow--Y--500", + "name": "pf-t--color--gray--10", "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "500" + "category": "color", + "type": "gray", + "item": "10" }, "path": [ - "global", - "box-shadow", - "Y", - "500" + "color", + "gray", + "10" ] - }, - "pf-t--global--box-shadow--Y--600": { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + } + }, + "pf-t--color--gray--20": { + "dark": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 4 + "type": "color", + "value": "#e0e0e0" }, - "name": "pf-t--global--box-shadow--Y--600", + "name": "pf-t--color--gray--20", "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "600" + "category": "color", + "type": "gray", + "item": "20" }, "path": [ - "global", - "box-shadow", - "Y", - "600" + "color", + "gray", + "20" ] - }, - "pf-t--global--box-shadow--Y--700": { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + } + }, + "pf-t--color--gray--30": { + "dark": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 8 + "type": "color", + "value": "#c7c7c7" }, - "name": "pf-t--global--box-shadow--Y--700", + "name": "pf-t--color--gray--30", "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "700" + "category": "color", + "type": "gray", + "item": "30" }, "path": [ - "global", - "box-shadow", - "Y", - "700" + "color", + "gray", + "30" ] - }, - "pf-t--global--box-shadow--blur--100": { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + } + }, + "pf-t--color--gray--40": { + "dark": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 4 + "type": "color", + "value": "#a3a3a3" }, - "name": "pf-t--global--box-shadow--blur--100", + "name": "pf-t--color--gray--40", "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "100" + "category": "color", + "type": "gray", + "item": "40" }, "path": [ - "global", - "box-shadow", - "blur", - "100" + "color", + "gray", + "40" ] - }, - "pf-t--global--box-shadow--blur--200": { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + } + }, + "pf-t--color--gray--50": { + "dark": { + "type": "color", + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 8 + "type": "color", + "value": "#707070" }, - "name": "pf-t--global--box-shadow--blur--200", + "name": "pf-t--color--gray--50", "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "200" + "category": "color", + "type": "gray", + "item": "50" }, "path": [ - "global", - "box-shadow", - "blur", - "200" + "color", + "gray", + "50" ] - }, - "pf-t--global--box-shadow--blur--300": { - "type": "number", - "value": "24px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + } + }, + "pf-t--color--gray--60": { + "dark": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 24 + "type": "color", + "value": "#4d4d4d" }, - "name": "pf-t--global--box-shadow--blur--300", + "name": "pf-t--color--gray--60", "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "300" + "category": "color", + "type": "gray", + "item": "60" }, "path": [ - "global", - "box-shadow", - "blur", - "300" + "color", + "gray", + "60" ] - }, - "pf-t--global--box-shadow--spread--100": { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + } + }, + "pf-t--color--gray--70": { + "dark": { + "type": "color", + "value": "#383838", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 0 + "type": "color", + "value": "#383838" }, - "name": "pf-t--global--box-shadow--spread--100", + "name": "pf-t--color--gray--70", "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "100" + "category": "color", + "type": "gray", + "item": "70" }, "path": [ - "global", - "box-shadow", - "spread", - "100" + "color", + "gray", + "70" ] - }, - "pf-t--global--breakpoint--100": { - "type": "number", - "value": "0rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + } + }, + "pf-t--color--gray--80": { + "dark": { + "type": "color", + "value": "#292929", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 0 + "type": "color", + "value": "#292929" }, - "name": "pf-t--global--breakpoint--100", + "name": "pf-t--color--gray--80", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "100" + "category": "color", + "type": "gray", + "item": "80" }, "path": [ - "global", - "breakpoint", - "100" + "color", + "gray", + "80" ] - }, - "pf-t--global--breakpoint--200": { - "type": "number", - "value": "36rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + } + }, + "pf-t--color--gray--90": { + "dark": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 576 + "type": "color", + "value": "#1f1f1f" }, - "name": "pf-t--global--breakpoint--200", + "name": "pf-t--color--gray--90", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "200" + "category": "color", + "type": "gray", + "item": "90" }, "path": [ - "global", - "breakpoint", - "200" + "color", + "gray", + "90" ] - }, - "pf-t--global--breakpoint--250": { - "type": "number", - "value": "40rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + } + }, + "pf-t--color--gray--95": { + "dark": { + "type": "color", + "value": "#151515", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 640 + "type": "color", + "value": "#151515" }, - "name": "pf-t--global--breakpoint--250", + "name": "pf-t--color--gray--95", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "250" + "category": "color", + "type": "gray", + "item": "95" }, "path": [ - "global", - "breakpoint", - "250" + "color", + "gray", + "95" ] - }, - "pf-t--global--breakpoint--300": { - "type": "number", - "value": "48rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + } + }, + "pf-t--color--black": { + "dark": { + "type": "color", + "value": "#000000", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 768 + "type": "color", + "value": "#000000" }, - "name": "pf-t--global--breakpoint--300", + "name": "pf-t--color--black", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "300" + "category": "color", + "type": "black" }, "path": [ - "global", - "breakpoint", - "300" + "color", + "black" ] - }, - "pf-t--global--breakpoint--350": { - "type": "number", - "value": "60rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + } + }, + "pf-t--color--blue--10": { + "dark": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 960 + "type": "color", + "value": "#e0f0ff" }, - "name": "pf-t--global--breakpoint--350", + "name": "pf-t--color--blue--10", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "350" + "category": "color", + "type": "blue", + "item": "10" }, "path": [ - "global", - "breakpoint", - "350" + "color", + "blue", + "10" ] - }, - "pf-t--global--breakpoint--400": { - "type": "number", - "value": "62rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + } + }, + "pf-t--color--blue--20": { + "dark": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 992 + "type": "color", + "value": "#b9dafc" }, - "name": "pf-t--global--breakpoint--400", + "name": "pf-t--color--blue--20", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "400" + "category": "color", + "type": "blue", + "item": "20" }, "path": [ - "global", - "breakpoint", - "400" + "color", + "blue", + "20" ] - }, - "pf-t--global--breakpoint--500": { - "type": "number", - "value": "75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + } + }, + "pf-t--color--blue--30": { + "dark": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 1200 + "type": "color", + "value": "#92c5f9" }, - "name": "pf-t--global--breakpoint--500", + "name": "pf-t--color--blue--30", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "500" + "category": "color", + "type": "blue", + "item": "30" }, "path": [ - "global", - "breakpoint", - "500" + "color", + "blue", + "30" ] - }, - "pf-t--global--breakpoint--550": { - "type": "number", - "value": "80rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + } + }, + "pf-t--color--blue--40": { + "dark": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 1280 + "type": "color", + "value": "#4394e5" }, - "name": "pf-t--global--breakpoint--550", + "name": "pf-t--color--blue--40", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "550" + "category": "color", + "type": "blue", + "item": "40" }, "path": [ - "global", - "breakpoint", - "550" + "color", + "blue", + "40" ] - }, - "pf-t--global--breakpoint--600": { - "type": "number", - "value": "90.625rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": false, + } + }, + "pf-t--color--blue--50": { + "dark": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 1450 + "type": "color", + "value": "#0066cc" }, - "name": "pf-t--global--breakpoint--600", + "name": "pf-t--color--blue--50", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "600" + "category": "color", + "type": "blue", + "item": "50" }, "path": [ - "global", - "breakpoint", - "600" + "color", + "blue", + "50" ] } }, - "motion": { - "pf-t--global--duration--50": { - "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, + "pf-t--color--blue--60": { + "dark": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 50 + "type": "color", + "value": "#004d99" }, - "name": "pf-t--global--duration--50", + "name": "pf-t--color--blue--60", "attributes": { - "category": "global", - "type": "duration", - "item": "50" + "category": "color", + "type": "blue", + "item": "60" }, "path": [ - "global", - "duration", - "50" + "color", + "blue", + "60" ] - }, - "pf-t--global--duration--100": { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, + } + }, + "pf-t--color--blue--70": { + "dark": { + "type": "color", + "value": "#003366", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 100 + "type": "color", + "value": "#003366" }, - "name": "pf-t--global--duration--100", + "name": "pf-t--color--blue--70", "attributes": { - "category": "global", - "type": "duration", - "item": "100" + "category": "color", + "type": "blue", + "item": "70" }, "path": [ - "global", - "duration", - "100" + "color", + "blue", + "70" ] - }, - "pf-t--global--duration--200": { - "type": "number", - "value": "200ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, + } + }, + "pf-t--color--teal--10": { + "dark": { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 200 + "type": "color", + "value": "#daf2f2" }, - "name": "pf-t--global--duration--200", + "name": "pf-t--color--teal--10", "attributes": { - "category": "global", - "type": "duration", - "item": "200" + "category": "color", + "type": "teal", + "item": "10" }, "path": [ - "global", - "duration", - "200" + "color", + "teal", + "10" ] - }, - "pf-t--global--duration--300": { - "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, + } + }, + "pf-t--color--teal--20": { + "dark": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 300 + "type": "color", + "value": "#b9e5e5" }, - "name": "pf-t--global--duration--300", + "name": "pf-t--color--teal--20", "attributes": { - "category": "global", - "type": "duration", - "item": "300" + "category": "color", + "type": "teal", + "item": "20" }, "path": [ - "global", - "duration", - "300" + "color", + "teal", + "20" ] - }, - "pf-t--global--duration--400": { - "type": "number", - "value": "400ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, + } + }, + "pf-t--color--teal--30": { + "dark": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 400 + "type": "color", + "value": "#9ad8d8" }, - "name": "pf-t--global--duration--400", + "name": "pf-t--color--teal--30", "attributes": { - "category": "global", - "type": "duration", - "item": "400" + "category": "color", + "type": "teal", + "item": "30" }, "path": [ - "global", - "duration", - "400" + "color", + "teal", + "30" ] - }, - "pf-t--global--duration--500": { - "type": "number", - "value": "500ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, + } + }, + "pf-t--color--teal--40": { + "dark": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 500 + "type": "color", + "value": "#63bdbd" }, - "name": "pf-t--global--duration--500", + "name": "pf-t--color--teal--40", "attributes": { - "category": "global", - "type": "duration", - "item": "500" + "category": "color", + "type": "teal", + "item": "40" }, "path": [ - "global", - "duration", - "500" + "color", + "teal", + "40" ] - }, - "pf-t--global--duration--600": { - "type": "number", - "value": "600ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, + } + }, + "pf-t--color--teal--50": { + "dark": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 600 + "type": "color", + "value": "#37a3a3" }, - "name": "pf-t--global--duration--600", + "name": "pf-t--color--teal--50", "attributes": { - "category": "global", - "type": "duration", - "item": "600" + "category": "color", + "type": "teal", + "item": "50" }, "path": [ - "global", - "duration", - "600" + "color", + "teal", + "50" ] - }, - "pf-t--global--delay--100": { - "type": "number", - "value": "0ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, + } + }, + "pf-t--color--teal--60": { + "dark": { + "type": "color", + "value": "#147878", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 0 + "type": "color", + "value": "#147878" }, - "name": "pf-t--global--delay--100", + "name": "pf-t--color--teal--60", "attributes": { - "category": "global", - "type": "delay", - "item": "100" + "category": "color", + "type": "teal", + "item": "60" }, "path": [ - "global", - "delay", - "100" + "color", + "teal", + "60" ] - }, - "pf-t--global--delay--200": { - "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, + } + }, + "pf-t--color--teal--70": { + "dark": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 50 + "type": "color", + "value": "#004d4d" }, - "name": "pf-t--global--delay--200", + "name": "pf-t--color--teal--70", "attributes": { - "category": "global", - "type": "delay", - "item": "200" + "category": "color", + "type": "teal", + "item": "70" }, "path": [ - "global", - "delay", - "200" + "color", + "teal", + "70" ] - }, - "pf-t--global--delay--300": { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, + } + }, + "pf-t--color--yellow--10": { + "dark": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 100 + "type": "color", + "value": "#fff4cc" }, - "name": "pf-t--global--delay--300", + "name": "pf-t--color--yellow--10", "attributes": { - "category": "global", - "type": "delay", - "item": "300" + "category": "color", + "type": "yellow", + "item": "10" }, "path": [ - "global", - "delay", - "300" + "color", + "yellow", + "10" ] - }, - "pf-t--global--delay--400": { - "type": "number", - "value": "7000ms", - "filePath": "tokens/default/base.motion.json", - "isSource": false, + } + }, + "pf-t--color--yellow--20": { + "dark": { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "number", - "value": 7000 + "type": "color", + "value": "#ffe072" }, - "name": "pf-t--global--delay--400", + "name": "pf-t--color--yellow--20", "attributes": { - "category": "global", - "type": "delay", - "item": "400" + "category": "color", + "type": "yellow", + "item": "20" }, "path": [ - "global", - "delay", - "400" + "color", + "yellow", + "20" ] - }, - "pf-t--global--timing-function--100": { - "type": "string", - "value": "cubic-bezier(.4, 0, .7, .2)", - "filePath": "tokens/default/base.motion.json", - "isSource": false, + } + }, + "pf-t--color--yellow--30": { + "dark": { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "string", - "value": "cubic-bezier(.4, 0, .7, .2)" + "type": "color", + "value": "#ffcc17" }, - "name": "pf-t--global--timing-function--100", + "name": "pf-t--color--yellow--30", "attributes": { - "category": "global", - "type": "timing-function", - "item": "100" + "category": "color", + "type": "yellow", + "item": "30" }, "path": [ - "global", - "timing-function", - "100" + "color", + "yellow", + "30" ] - }, - "pf-t--global--timing-function--200": { - "type": "string", - "value": "cubic-bezier(.4, 0, .2, 1)", - "filePath": "tokens/default/base.motion.json", - "isSource": false, + } + }, + "pf-t--color--yellow--40": { + "dark": { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "string", - "value": "cubic-bezier(.4, 0, .2, 1)" + "type": "color", + "value": "#dca614" }, - "name": "pf-t--global--timing-function--200", + "name": "pf-t--color--yellow--40", "attributes": { - "category": "global", - "type": "timing-function", - "item": "200" + "category": "color", + "type": "yellow", + "item": "40" }, "path": [ - "global", - "timing-function", - "200" + "color", + "yellow", + "40" ] - }, - "pf-t--global--timing-function--300": { - "type": "string", - "value": "cubic-bezier(0, 0, .2, 1)", - "filePath": "tokens/default/base.motion.json", - "isSource": false, + } + }, + "pf-t--color--yellow--50": { + "dark": { + "type": "color", + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, "original": { - "type": "string", - "value": "cubic-bezier(0, 0, .2, 1)" + "type": "color", + "value": "#b98412" }, - "name": "pf-t--global--timing-function--300", + "name": "pf-t--color--yellow--50", "attributes": { - "category": "global", - "type": "timing-function", - "item": "300" + "category": "color", + "type": "yellow", + "item": "50" }, "path": [ - "global", - "timing-function", - "300" + "color", + "yellow", + "50" ] } - } - }, - "palette": { - "pf-t--color--white": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - }, - "pf-t--color--gray--10": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - }, - "pf-t--color--gray--20": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - }, - "pf-t--color--gray--30": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - }, - "pf-t--color--gray--40": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - }, - "pf-t--color--gray--50": { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - }, - "pf-t--color--gray--60": { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - }, - "pf-t--color--gray--70": { - "type": "color", - "value": "#383838", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - }, - "pf-t--color--gray--80": { - "type": "color", - "value": "#292929", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - }, - "pf-t--color--gray--90": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - }, - "pf-t--color--gray--95": { - "type": "color", - "value": "#151515", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - }, - "pf-t--color--black": { - "type": "color", - "value": "#000000", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#000000" - }, - "name": "pf-t--color--black", - "attributes": { - "category": "color", - "type": "black" - }, - "path": [ - "color", - "black" - ] - }, - "pf-t--color--blue--10": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - }, - "pf-t--color--blue--20": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - }, - "pf-t--color--blue--30": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - }, - "pf-t--color--blue--40": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - }, - "pf-t--color--blue--50": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - }, - "pf-t--color--blue--60": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - }, - "pf-t--color--blue--70": { - "type": "color", - "value": "#003366", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#003366" - }, - "name": "pf-t--color--blue--70", - "attributes": { - "category": "color", - "type": "blue", - "item": "70" - }, - "path": [ - "color", - "blue", - "70" - ] - }, - "pf-t--color--teal--10": { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - }, - "pf-t--color--teal--20": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - }, - "pf-t--color--teal--30": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - }, - "pf-t--color--teal--40": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - }, - "pf-t--color--teal--50": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - }, - "pf-t--color--teal--60": { - "type": "color", - "value": "#147878", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - }, - "pf-t--color--teal--70": { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - }, - "pf-t--color--yellow--10": { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] - }, - "pf-t--color--yellow--20": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - }, - "pf-t--color--yellow--30": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - }, - "pf-t--color--yellow--40": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - }, - "pf-t--color--yellow--50": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] }, "pf-t--color--yellow--60": { - "type": "color", - "value": "#96640f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#96640f" - }, - "name": "pf-t--color--yellow--60", - "attributes": { - "category": "color", - "type": "yellow", - "item": "60" - }, - "path": [ - "color", - "yellow", - "60" - ] + "value": "#96640f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + } }, "pf-t--color--yellow--70": { - "type": "color", - "value": "#73480b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#73480b" - }, - "name": "pf-t--color--yellow--70", - "attributes": { - "category": "color", - "type": "yellow", - "item": "70" - }, - "path": [ - "color", - "yellow", - "70" - ] + "value": "#73480b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#73480b" + }, + "name": "pf-t--color--yellow--70", + "attributes": { + "category": "color", + "type": "yellow", + "item": "70" + }, + "path": [ + "color", + "yellow", + "70" + ] + } }, "pf-t--color--green--10": { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } }, "pf-t--color--green--20": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } }, "pf-t--color--green--30": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } }, "pf-t--color--green--40": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } }, "pf-t--color--green--50": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } }, "pf-t--color--green--60": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] + "value": "#3d7317", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } }, "pf-t--color--green--70": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] + "value": "#204d00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } }, "pf-t--color--orange--10": { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } }, "pf-t--color--orange--20": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } }, "pf-t--color--orange--30": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } }, "pf-t--color--orange--40": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } }, "pf-t--color--orange--50": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } }, "pf-t--color--orange--60": { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#9e4a06" - }, - "name": "pf-t--color--orange--60", - "attributes": { - "category": "color", - "type": "orange", - "item": "60" - }, - "path": [ - "color", - "orange", - "60" - ] + "value": "#9e4a06", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + } }, "pf-t--color--orange--70": { - "type": "color", - "value": "#732e00", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#732e00" - }, - "name": "pf-t--color--orange--70", - "attributes": { - "category": "color", - "type": "orange", - "item": "70" - }, - "path": [ - "color", - "orange", - "70" - ] + "value": "#732e00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + } }, "pf-t--color--red-orange--10": { - "type": "color", - "value": "#ffe3d9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#ffe3d9" - }, - "name": "pf-t--color--red-orange--10", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "10" - }, - "path": [ - "color", - "red-orange", - "10" - ] + "value": "#ffe3d9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe3d9" + }, + "name": "pf-t--color--red-orange--10", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "10" + }, + "path": [ + "color", + "red-orange", + "10" + ] + } }, "pf-t--color--red-orange--20": { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } }, "pf-t--color--red-orange--30": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } }, "pf-t--color--red-orange--40": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } }, "pf-t--color--red-orange--50": { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } }, "pf-t--color--red-orange--60": { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] + "value": "#b1380b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } }, "pf-t--color--red-orange--70": { - "type": "color", - "value": "#731f00", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] + "value": "#731f00", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } }, "pf-t--color--purple--10": { - "type": "color", - "value": "#ece6ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#ece6ff" - }, - "name": "pf-t--color--purple--10", - "attributes": { - "category": "color", - "type": "purple", - "item": "10" - }, - "path": [ - "color", - "purple", - "10" - ] + "value": "#ece6ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ece6ff" + }, + "name": "pf-t--color--purple--10", + "attributes": { + "category": "color", + "type": "purple", + "item": "10" + }, + "path": [ + "color", + "purple", + "10" + ] + } }, "pf-t--color--purple--20": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } }, "pf-t--color--purple--30": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } }, "pf-t--color--purple--40": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } }, "pf-t--color--purple--50": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } }, "pf-t--color--purple--60": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } }, "pf-t--color--purple--70": { - "type": "color", - "value": "#21134d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#21134d" - }, - "name": "pf-t--color--purple--70", - "attributes": { - "category": "color", - "type": "purple", - "item": "70" - }, - "path": [ - "color", - "purple", - "70" - ] + "value": "#21134d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#21134d" + }, + "name": "pf-t--color--purple--70", + "attributes": { + "category": "color", + "type": "purple", + "item": "70" + }, + "path": [ + "color", + "purple", + "70" + ] + } }, "pf-t--color--red--10": { - "type": "color", - "value": "#fce3e3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#fce3e3" - }, - "name": "pf-t--color--red--10", - "attributes": { - "category": "color", - "type": "red", - "item": "10" - }, - "path": [ - "color", - "red", - "10" - ] + "value": "#fce3e3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fce3e3" + }, + "name": "pf-t--color--red--10", + "attributes": { + "category": "color", + "type": "red", + "item": "10" + }, + "path": [ + "color", + "red", + "10" + ] + } }, "pf-t--color--red--20": { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] + "value": "#fbc5c5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } }, "pf-t--color--red--30": { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] + "value": "#f9a8a8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } }, "pf-t--color--red--40": { - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#f56e6e" - }, - "name": "pf-t--color--red--40", - "attributes": { - "category": "color", - "type": "red", - "item": "40" - }, - "path": [ - "color", - "red", - "40" - ] + "value": "#f56e6e", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + } }, "pf-t--color--red--50": { - "type": "color", - "value": "#ee0000", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#ee0000" - }, - "name": "pf-t--color--red--50", - "attributes": { - "category": "color", - "type": "red", - "item": "50" - }, - "path": [ - "color", - "red", - "50" - ] + "value": "#ee0000", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ee0000" + }, + "name": "pf-t--color--red--50", + "attributes": { + "category": "color", + "type": "red", + "item": "50" + }, + "path": [ + "color", + "red", + "50" + ] + } }, "pf-t--color--red--60": { - "type": "color", - "value": "#a60000", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#a60000" - }, - "name": "pf-t--color--red--60", - "attributes": { - "category": "color", - "type": "red", - "item": "60" - }, - "path": [ - "color", - "red", - "60" - ] + "value": "#a60000", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a60000" + }, + "name": "pf-t--color--red--60", + "attributes": { + "category": "color", + "type": "red", + "item": "60" + }, + "path": [ + "color", + "red", + "60" + ] + } }, "pf-t--color--red--70": { - "type": "color", - "value": "#5f0000", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "#5f0000" - }, - "name": "pf-t--color--red--70", - "attributes": { - "category": "color", - "type": "red", - "item": "70" - }, - "path": [ - "color", - "red", - "70" - ] + "value": "#5f0000", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5f0000" + }, + "name": "pf-t--color--red--70", + "attributes": { + "category": "color", + "type": "red", + "item": "70" + }, + "path": [ + "color", + "red", + "70" + ] + } } }, "chart": { "pf-t--chart--color--blue--100": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } }, "pf-t--chart--color--blue--200": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } }, "pf-t--chart--color--blue--300": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--color--blue--300", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "blue", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "blue", - "300" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } }, "pf-t--chart--color--blue--400": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--chart--color--blue--400", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "blue", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "blue", - "400" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.20}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } }, "pf-t--chart--color--blue--500": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--chart--color--blue--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "blue", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "blue", - "500" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.10}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } }, "pf-t--chart--color--green--100": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.50}" - }, - "name": "pf-t--chart--color--green--100", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "green", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "green", - "100" - ], - "references": [ - { + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } - ] + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } }, "pf-t--chart--color--green--200": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--chart--color--green--200", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "green", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "green", - "200" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } }, "pf-t--chart--color--green--300": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--chart--color--green--300", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "green", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "green", - "300" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } }, "pf-t--chart--color--green--400": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.20}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } }, "pf-t--chart--color--green--500": { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.green.10}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.10}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] - } - ] + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + } }, "pf-t--chart--color--teal--100": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } }, "pf-t--chart--color--teal--200": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } }, "pf-t--chart--color--teal--300": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--chart--color--teal--300", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "teal", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "teal", - "300" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } }, "pf-t--chart--color--teal--400": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--chart--color--teal--400", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "teal", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "teal", - "400" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.20}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } }, "pf-t--chart--color--teal--500": { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.teal.10}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.10}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - } - ] + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + } }, "pf-t--chart--color--purple--100": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--chart--color--purple--100", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "purple", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "purple", - "100" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } }, "pf-t--chart--color--purple--200": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--chart--color--purple--200", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "purple", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "purple", - "200" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } }, "pf-t--chart--color--purple--300": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--chart--color--purple--300", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "purple", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "purple", - "300" - ], - "references": [ - { + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } }, "pf-t--chart--color--purple--400": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--chart--color--purple--400", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "purple", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "purple", - "400" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } }, "pf-t--chart--color--purple--500": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--chart--color--purple--500", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "purple", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "purple", - "500" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.20}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } }, "pf-t--chart--color--yellow--100": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } }, "pf-t--chart--color--yellow--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--color--yellow--200", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "yellow", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "yellow", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } }, "pf-t--chart--color--yellow--300": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--color--yellow--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "yellow", - "300" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } }, "pf-t--chart--color--yellow--400": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--400", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "yellow", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "yellow", - "400" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } }, "pf-t--chart--color--yellow--500": { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.10}" - }, - "name": "pf-t--chart--color--yellow--500", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "yellow", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "yellow", - "500" - ], - "references": [ - { + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.10}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] - } - ] + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + } }, "pf-t--chart--color--orange--100": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } }, "pf-t--chart--color--orange--200": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--color--orange--200", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "orange", - "200" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } }, "pf-t--chart--color--orange--300": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--color--orange--300", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "orange", - "300" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } }, "pf-t--chart--color--orange--400": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--chart--color--orange--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "orange", - "400" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.20}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } }, "pf-t--chart--color--orange--500": { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.10}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.10}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] - } - ] + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + } }, "pf-t--chart--color--red-orange--100": { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--chart--color--red-orange--100", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "red-orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "red-orange", - "100" - ], - "references": [ - { + "value": "#f0561d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.50}" + }, + "name": "pf-t--chart--color--red-orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "red-orange", + "100" + ], + "references": [ + { "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } }, "pf-t--chart--color--red-orange--200": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--chart--color--red-orange--200", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "red-orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "red-orange", - "200" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f4784a", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.40}" + }, + "name": "pf-t--chart--color--red-orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "red-orange", + "200" + ], + "references": [ + { "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] + "value": "#f4784a", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } }, "pf-t--chart--color--red-orange--300": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--chart--color--red-orange--300", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "red-orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "red-orange", - "300" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.30}" + }, + "name": "pf-t--chart--color--red-orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "red-orange", + "300" + ], + "references": [ + { "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] + "value": "#f89b78", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } }, "pf-t--chart--color--red-orange--400": { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--chart--color--red-orange--400", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "red-orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "red-orange", - "400" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbbea8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.20}" + }, + "name": "pf-t--chart--color--red-orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "red-orange", + "400" + ], + "references": [ + { "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] + "value": "#fbbea8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } }, "pf-t--chart--color--red-orange--500": { - "type": "color", - "value": "#ffe3d9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.red-orange.10}" - }, - "name": "pf-t--chart--color--red-orange--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "red-orange", - "500" - ], - "references": [ - { + "value": "#ffe3d9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe3d9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.10}" + }, + "name": "pf-t--chart--color--red-orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "red-orange", + "500" + ], + "references": [ + { "type": "color", - "value": "#ffe3d9" - }, - "name": "pf-t--color--red-orange--10", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "10" - }, - "path": [ - "color", - "red-orange", - "10" - ] - } - ] + "value": "#ffe3d9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe3d9" + }, + "name": "pf-t--color--red-orange--10", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "10" + }, + "path": [ + "color", + "red-orange", + "10" + ] + } + ] + } }, "pf-t--chart--color--black--100": { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--chart--color--black--100", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "black", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "black", - "100" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } }, "pf-t--chart--color--black--200": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--chart--color--black--200", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "black", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "black", - "200" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } }, "pf-t--chart--color--black--300": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--chart--color--black--300", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "black", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "black", - "300" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } }, "pf-t--chart--color--black--400": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--chart--color--black--400", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "black", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "black", - "400" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } }, "pf-t--chart--color--black--500": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--chart--color--black--500", - "attributes": { - "category": "chart", + "dark": { "type": "color", - "item": "black", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "black", - "500" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } }, "pf-t--chart--global--BorderWidth--xs": { - "type": "number", - "value": 1, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "number", - "value": 1 - }, - "name": "pf-t--chart--global--BorderWidth--xs", - "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "xs" - }, - "path": [ - "chart", - "global", - "BorderWidth", - "xs" - ] + "value": 1, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--chart--global--BorderWidth--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "xs" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "xs" + ] + } }, "pf-t--chart--global--BorderWidth--sm": { - "type": "number", - "value": 2, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "number", - "value": 2 - }, - "name": "pf-t--chart--global--BorderWidth--sm", - "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "sm" - }, - "path": [ - "chart", - "global", - "BorderWidth", - "sm" - ] + "value": 2, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--chart--global--BorderWidth--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "sm" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "sm" + ] + } }, "pf-t--chart--global--BorderWidth--lg": { - "type": "number", - "value": 8, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "number", - "value": 8 - }, - "name": "pf-t--chart--global--BorderWidth--lg", - "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "lg" - }, - "path": [ - "chart", - "global", - "BorderWidth", - "lg" - ] + "value": 8, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--chart--global--BorderWidth--lg", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "lg" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "lg" + ] + } }, "pf-t--chart--global--stroke--width--xs": { - "type": "number", - "value": 1, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "number", - "value": 1 - }, - "name": "pf-t--chart--global--stroke--width--xs", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke", - "subitem": "width", - "state": "xs" - }, - "path": [ - "chart", - "global", - "stroke", - "width", - "xs" - ] + "value": 1, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--chart--global--stroke--width--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke", + "subitem": "width", + "state": "xs" + }, + "path": [ + "chart", + "global", + "stroke", + "width", + "xs" + ] + } }, "pf-t--chart--global--stroke--width--sm": { - "type": "number", - "value": 2, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "number", - "value": 2 - }, - "name": "pf-t--chart--global--stroke--width--sm", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke", - "subitem": "width", - "state": "sm" - }, - "path": [ - "chart", - "global", - "stroke", - "width", - "sm" - ] + "value": 2, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--chart--global--stroke--width--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke", + "subitem": "width", + "state": "sm" + }, + "path": [ + "chart", + "global", + "stroke", + "width", + "sm" + ] + } }, "pf-t--chart--global--fill--color--100": { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--chart--global--fill--color--100", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "100" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "100" - ], - "references": [ - { + "value": "#4d4d4d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.60}" + }, + "name": "pf-t--chart--global--fill--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] + "value": "#4d4d4d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } }, "pf-t--chart--global--fill--color--200": { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--chart--global--fill--color--200", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "200" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "200" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--global--fill--color--200", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "200" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } }, "pf-t--chart--global--fill--color--300": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--chart--global--fill--color--300", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "300" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "300" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--global--fill--color--300", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "300" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } }, "pf-t--chart--global--fill--color--400": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--chart--global--fill--color--400", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "400" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "400" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--global--fill--color--400", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "400" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "400" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } }, "pf-t--chart--global--fill--color--500": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--chart--global--fill--color--500", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "500" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "500" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--global--fill--color--500", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "500" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "500" + ], + "references": [ + { "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } }, "pf-t--chart--global--fill--color--700": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--chart--global--fill--color--700", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "700" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "700" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--global--fill--color--700", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "700" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "700" + ], + "references": [ + { "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } }, "pf-t--chart--global--fill--color--900": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--chart--global--fill--color--900", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "900" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "900" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.white}" + }, + "name": "pf-t--chart--global--fill--color--900", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "900" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "900" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } }, "pf-t--chart--global--fill--color--white": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--chart--global--fill--color--white", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "white" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "white" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.white}" + }, + "name": "pf-t--chart--global--fill--color--white", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "white" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "white" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } }, "pf-t--chart--global--warning--color--100": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--global--warning--color--100", - "attributes": { - "category": "chart", - "type": "global", - "item": "warning", - "subitem": "color", - "state": "100" - }, - "path": [ - "chart", - "global", - "warning", - "color", - "100" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--global--warning--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "warning", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "warning", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } }, "pf-t--chart--global--warning--color--200": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--global--warning--color--200", - "attributes": { - "category": "chart", - "type": "global", - "item": "warning", - "subitem": "color", - "state": "200" - }, - "path": [ - "chart", - "global", - "warning", - "color", - "200" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--global--warning--color--200", + "attributes": { + "category": "chart", + "type": "global", + "item": "warning", + "subitem": "color", + "state": "200" + }, + "path": [ + "chart", + "global", + "warning", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } }, "pf-t--chart--global--success--color--100": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--global--success--color--100", - "attributes": { - "category": "chart", - "type": "global", - "item": "success", - "subitem": "color", - "state": "100" - }, - "path": [ - "chart", - "global", - "success", - "color", - "100" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--global--success--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "success", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "success", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } }, "pf-t--chart--global--danger--color--100": { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--chart--global--danger--color--100", - "attributes": { - "category": "chart", - "type": "global", - "item": "danger", - "subitem": "color", - "state": "100" - }, - "path": [ - "chart", - "global", - "danger", - "color", - "100" - ], - "references": [ - { + "value": "#f0561d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f0561d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.50}" + }, + "name": "pf-t--chart--global--danger--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "danger", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "danger", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] + "value": "#f0561d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } }, "pf-t--chart--global--FontSize--xs": { - "type": "number", - "value": 12, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "number", - "value": 12 - }, - "name": "pf-t--chart--global--FontSize--xs", - "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "xs" - }, - "path": [ - "chart", - "global", - "FontSize", - "xs" - ] + "value": 12, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--chart--global--FontSize--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "xs" + }, + "path": [ + "chart", + "global", + "FontSize", + "xs" + ] + } }, "pf-t--chart--global--FontSize--sm": { - "type": "number", - "value": 14, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "number", - "value": 14 - }, - "name": "pf-t--chart--global--FontSize--sm", - "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "sm" - }, - "path": [ - "chart", - "global", - "FontSize", - "sm" - ] + "value": 14, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--chart--global--FontSize--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "sm" + }, + "path": [ + "chart", + "global", + "FontSize", + "sm" + ] + } }, "pf-t--chart--global--FontSize--lg": { - "type": "number", - "value": 18, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "number", - "value": 18 - }, - "name": "pf-t--chart--global--FontSize--lg", - "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "lg" - }, - "path": [ - "chart", - "global", - "FontSize", - "lg" - ] + "value": 18, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--chart--global--FontSize--lg", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "lg" + }, + "path": [ + "chart", + "global", + "FontSize", + "lg" + ] + } }, "pf-t--chart--global--FontSize--2xl": { - "type": "number", - "value": 22, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "number", - "value": 22 - }, - "name": "pf-t--chart--global--FontSize--2xl", - "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "2xl" - }, - "path": [ - "chart", - "global", - "FontSize", - "2xl" - ] + "value": 22, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--chart--global--FontSize--2xl", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "2xl" + }, + "path": [ + "chart", + "global", + "FontSize", + "2xl" + ] + } }, "pf-t--chart--global--letter-spacing": { - "type": "string", - "value": "normal", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "string", - "value": "normal" - }, - "name": "pf-t--chart--global--letter-spacing", - "attributes": { - "category": "chart", - "type": "global", - "item": "letter-spacing" - }, - "path": [ - "chart", - "global", - "letter-spacing" - ] + "value": "normal", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "string", + "value": "normal" + }, + "name": "pf-t--chart--global--letter-spacing", + "attributes": { + "category": "chart", + "type": "global", + "item": "letter-spacing" + }, + "path": [ + "chart", + "global", + "letter-spacing" + ] + } }, "pf-t--chart--global--stroke-line-cap": { - "type": "string", - "value": "round", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "string", - "value": "round" - }, - "name": "pf-t--chart--global--stroke-line-cap", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke-line-cap" - }, - "path": [ - "chart", - "global", - "stroke-line-cap" - ] + "value": "round", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "string", + "value": "round" + }, + "name": "pf-t--chart--global--stroke-line-cap", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke-line-cap" + }, + "path": [ + "chart", + "global", + "stroke-line-cap" + ] + } }, "pf-t--chart--global--label--padding": { - "type": "number", - "value": 10, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "number", - "value": 10 - }, - "name": "pf-t--chart--global--label--padding", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "padding" - }, - "path": [ - "chart", - "global", - "label", - "padding" - ] + "value": 10, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 10 + }, + "name": "pf-t--chart--global--label--padding", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "padding" + }, + "path": [ + "chart", + "global", + "label", + "padding" + ] + } }, "pf-t--chart--global--label--margin": { - "type": "number", - "value": 8, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "number", - "value": 8 - }, - "name": "pf-t--chart--global--label--margin", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "margin" - }, - "path": [ - "chart", - "global", - "label", - "margin" - ] + "value": 8, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--chart--global--label--margin", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "margin" + }, + "path": [ + "chart", + "global", + "label", + "margin" + ] + } }, "pf-t--chart--global--label--stroke": { - "width": { - "type": "number", - "value": 0, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true - }, - "type": "string", - "value": "transparent", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "width": { "type": "number", "value": 0, @@ -50942,7208 +52614,7422 @@ "isSource": true }, "type": "string", - "value": "transparent" - }, - "name": "pf-t--chart--global--label--stroke", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "stroke" - }, - "path": [ - "chart", - "global", - "label", - "stroke" - ] + "value": "transparent", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "width": { + "type": "number", + "value": 0, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true + }, + "type": "string", + "value": "transparent" + }, + "name": "pf-t--chart--global--label--stroke", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "stroke" + }, + "path": [ + "chart", + "global", + "label", + "stroke" + ] + } }, "pf-t--chart--global--label--text-anchor": { - "type": "string", - "value": "middle", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "string", - "value": "middle" - }, - "name": "pf-t--chart--global--label--text-anchor", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "text-anchor" - }, - "path": [ - "chart", - "global", - "label", - "text-anchor" - ] + "value": "middle", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "string", + "value": "middle" + }, + "name": "pf-t--chart--global--label--text-anchor", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "text-anchor" + }, + "path": [ + "chart", + "global", + "label", + "text-anchor" + ] + } }, "pf-t--chart--global--label--fill": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--chart--global--label--fill", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "fill" - }, - "path": [ - "chart", - "global", - "label", - "fill" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.white}" + }, + "name": "pf-t--chart--global--label--fill", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "fill" + }, + "path": [ + "chart", + "global", + "label", + "fill" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } }, "pf-t--chart--global--layout--padding": { - "type": "number", - "value": 50, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "number", - "value": 50 - }, - "name": "pf-t--chart--global--layout--padding", - "attributes": { - "category": "chart", - "type": "global", - "item": "layout", - "subitem": "padding" - }, - "path": [ - "chart", - "global", - "layout", - "padding" - ] + "value": 50, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--chart--global--layout--padding", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "padding" + }, + "path": [ + "chart", + "global", + "layout", + "padding" + ] + } }, "pf-t--chart--global--layout--height": { - "type": "number", - "value": 300, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "number", - "value": 300 - }, - "name": "pf-t--chart--global--layout--height", - "attributes": { - "category": "chart", - "type": "global", - "item": "layout", - "subitem": "height" - }, - "path": [ - "chart", - "global", - "layout", - "height" - ] + "value": 300, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--chart--global--layout--height", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "height" + }, + "path": [ + "chart", + "global", + "layout", + "height" + ] + } }, "pf-t--chart--global--layout--width": { - "type": "number", - "value": 450, - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "number", - "value": 450 - }, - "name": "pf-t--chart--global--layout--width", - "attributes": { - "category": "chart", - "type": "global", - "item": "layout", - "subitem": "width" - }, - "path": [ - "chart", - "global", - "layout", - "width" - ] + "value": 450, + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "number", + "value": 450 + }, + "name": "pf-t--chart--global--layout--width", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "width" + }, + "path": [ + "chart", + "global", + "layout", + "width" + ] + } }, "pf-t--chart--global--stroke-line-join": { - "type": "string", - "value": "round", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "string", - "value": "round" - }, - "name": "pf-t--chart--global--stroke-line-join", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke-line-join" - }, - "path": [ - "chart", - "global", - "stroke-line-join" - ] + "value": "round", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "string", + "value": "round" + }, + "name": "pf-t--chart--global--stroke-line-join", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke-line-join" + }, + "path": [ + "chart", + "global", + "stroke-line-join" + ] + } }, "pf-t--chart--theme--colorscales--blue--colorscale--100": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.blue.300}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "100" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--color--blue--300", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "blue", - "300" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--blue--colorscale--200": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.blue.100}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "200" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--blue--colorscale--300": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.blue.500}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "300" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--chart--color--blue--500", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "blue", - "500" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.10}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--blue--colorscale--400": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.blue.200}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "400" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--blue--colorscale--500": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.blue.400}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "500" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--chart--color--blue--400", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "blue", - "400" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.20}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--teal--colorscale--100": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.teal.300}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "100" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--chart--color--teal--300", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "teal", - "300" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--teal--colorscale--200": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.teal.100}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] - } - ] + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--teal--colorscale--300": { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.teal.500}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "300" - ], - "references": [ - { + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.10}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.10}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - } - ] - } - ] + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--teal--colorscale--400": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.teal.200}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "400" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--teal--colorscale--500": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.teal.400}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "500" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--chart--color--teal--400", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "teal", - "400" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.20}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - } - ] + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--yellow--colorscale--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.yellow.300}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--color--yellow--300", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "yellow", - "300" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--yellow--colorscale--200": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.yellow.100}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "200" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--yellow--colorscale--300": { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.yellow.500}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "300" - ], - "references": [ - { + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.10}" - }, - "name": "pf-t--chart--color--yellow--500", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "yellow", - "500" - ], - "references": [ - { + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.10}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] - } - ] - } - ] + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--yellow--colorscale--400": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.yellow.200}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "400" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--color--yellow--200", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "yellow", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--yellow--colorscale--500": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.yellow.400}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "500" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--400", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "yellow", - "400" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--gray--colorscale--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.black.300}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "100" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--chart--color--black--300", - "attributes": { - "category": "chart", + "value": "{chart.color.black.300}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "black", - "300" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--gray--colorscale--200": { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.black.100}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "200" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--chart--color--black--100", - "attributes": { - "category": "chart", + "value": "{chart.color.black.100}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "black", - "100" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--gray--colorscale--300": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.black.500}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "300" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--chart--color--black--500", - "attributes": { - "category": "chart", + "value": "{chart.color.black.500}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "black", - "500" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--gray--colorscale--400": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.black.200}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "400" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--chart--color--black--200", - "attributes": { - "category": "chart", + "value": "{chart.color.black.200}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "black", - "200" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--gray--colorscale--500": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.black.400}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "500" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--chart--color--black--400", - "attributes": { - "category": "chart", + "value": "{chart.color.black.400}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "black", - "400" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--green--colorscale--100": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.green.300}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "100" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--chart--color--green--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "green", - "300" - ], - "references": [ - { + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "100" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--green--colorscale--200": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.green.100}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.50}" - }, - "name": "pf-t--chart--color--green--100", - "attributes": { - "category": "chart", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "green", - "100" - ], - "references": [ - { + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } - ] - } - ] + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--green--colorscale--300": { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.green.500}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "300" - ], - "references": [ - { + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.10}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.10}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] - } - ] - } - ] + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--green--colorscale--400": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.green.200}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "400" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--chart--color--green--200", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "green", - "200" - ], - "references": [ - { + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "400" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--green--colorscale--500": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.green.400}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "500" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.20}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - } - ] + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--purple--colorscale--100": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.purple.300}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "100" - ], - "references": [ - { + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--chart--color--purple--300", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.300}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "purple", - "300" - ], - "references": [ - { + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] - } - ] + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--purple--colorscale--200": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.purple.100}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "200" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--chart--color--purple--100", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.100}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "purple", - "100" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--purple--colorscale--300": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.purple.500}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "300" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--chart--color--purple--500", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.500}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "purple", - "500" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.20}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--purple--colorscale--400": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.purple.200}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "400" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--chart--color--purple--200", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.200}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "purple", - "200" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--purple--colorscale--500": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.purple.400}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "500" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--chart--color--purple--400", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.400}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "purple", - "400" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--orange--colorscale--100": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.orange.300}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "100" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--color--orange--300", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "orange", - "300" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--orange--colorscale--200": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.orange.100}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "200" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - } - ] + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--orange--colorscale--300": { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.orange.500}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "300" - ], - "references": [ - { + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.10}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.10}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] - } - ] - } - ] + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--orange--colorscale--400": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.orange.200}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "400" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--color--orange--200", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "orange", - "200" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--orange--colorscale--500": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.orange.400}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "500" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--chart--color--orange--400", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "orange", - "400" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.20}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - } - ] + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.blue.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "100" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.green.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "200" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--chart--color--green--300", - "attributes": { - "category": "chart", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "green", - "300" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.teal.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "300" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.yellow.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "400" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--color--yellow--300", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "yellow", - "300" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.orange.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "500" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--color--orange--200", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "orange", - "200" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.blue.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "600" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--color--blue--300", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "600" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "blue", - "300" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.green.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "700" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--chart--color--green--200", - "attributes": { - "category": "chart", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "700" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "green", - "200" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.teal.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "800" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--chart--color--teal--300", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "800" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "teal", - "300" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.yellow.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "900" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--color--yellow--200", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "900" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "yellow", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.orange.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1000" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--color--orange--300", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1000" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "orange", - "300" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.blue.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1100" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--chart--color--blue--500", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1100" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "blue", - "500" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.10}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.green.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1200" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.50}" - }, - "name": "pf-t--chart--color--green--100", - "attributes": { - "category": "chart", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1200" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "green", - "100" - ], - "references": [ - { + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } - ] - } - ] + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300": { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.teal.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1300" - ], - "references": [ - { + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.10}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1300" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.10}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - } - ] - } - ] + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.yellow.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1400" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1400" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500": { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.orange.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1500" - ], - "references": [ - { + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.10}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1500" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.10}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] - } - ] - } - ] + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.blue.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1600" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1600" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700": { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.green.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1700" - ], - "references": [ - { + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.10}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1700" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.10}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] - } - ] - } - ] + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.teal.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1800" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1800" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] - } - ] + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900": { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.yellow.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1900" - ], - "references": [ - { + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.10}" - }, - "name": "pf-t--chart--color--yellow--500", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1900" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "yellow", - "500" - ], - "references": [ - { + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.10}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] - } - ] - } - ] + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.orange.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2000" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2000" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - } - ] + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.blue.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2100" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--chart--color--blue--400", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2100" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "blue", - "400" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.20}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.green.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2200" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2200" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.20}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - } - ] + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.teal.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2300" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--chart--color--teal--400", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2300" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "teal", - "400" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.20}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - } - ] + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.yellow.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2400" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--400", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2400" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "yellow", - "400" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.orange.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2500" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--chart--color--orange--400", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2500" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "orange", - "400" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.20}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - } - ] + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.blue.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "100" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] + "value": "#4394e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.yellow.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "200" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--color--yellow--300", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "yellow", - "300" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.green.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "300" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--chart--color--green--200", - "attributes": { - "category": "chart", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "green", - "200" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] + "value": "#87bb62", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.purple.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "400" - ], - "references": [ - { + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--chart--color--purple--300", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "purple", - "300" - ], - "references": [ - { + "value": "#876fd4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] - } - ] + "value": "#876fd4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.orange.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "500" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--color--orange--200", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "orange", - "200" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] + "value": "#f5921b", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.teal.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "600" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--chart--color--teal--300", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "600" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "teal", - "300" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.black.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "700" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--chart--color--black--200", - "attributes": { - "category": "chart", + "value": "{chart.color.black.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "700" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "black", - "200" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.blue.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "800" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--color--blue--300", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "800" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "blue", - "300" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] + "value": "#92c5f9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.yellow.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "900" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--color--yellow--200", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "900" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "yellow", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] + "value": "#dca614", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.green.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1000" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--chart--color--green--300", - "attributes": { - "category": "chart", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1000" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "green", - "300" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.purple.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1100" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--chart--color--purple--200", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1100" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "purple", - "200" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] + "value": "#5e40be", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.orange.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1200" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--color--orange--300", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1200" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "orange", - "300" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] + "value": "#f8ae54", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.teal.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1300" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1300" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] + "value": "#63bdbd", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.black.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1400" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--chart--color--black--300", - "attributes": { - "category": "chart", + "value": "{chart.color.black.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1400" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "black", - "300" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.blue.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1500" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1500" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] + "value": "#0066cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600": { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.yellow.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1600" - ], - "references": [ - { + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.10}" - }, - "name": "pf-t--chart--color--yellow--500", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1600" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "yellow", - "500" - ], - "references": [ - { + "value": "#fff4cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fff4cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.10}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] - } - ] - } - ] + "value": "#fff4cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fff4cc" + }, + "name": "pf-t--color--yellow--10", + "attributes": { + "category": "color", + "type": "yellow", + "item": "10" + }, + "path": [ + "color", + "yellow", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.green.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1700" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.50}" - }, - "name": "pf-t--chart--color--green--100", - "attributes": { - "category": "chart", + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1700" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "green", - "100" - ], - "references": [ - { + "value": "#63993d", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#63993d", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } - ] - } - ] + "value": "#63993d", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.purple.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1800" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--chart--color--purple--500", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1800" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "purple", - "500" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.20}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] + "value": "#d0c5f4", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.orange.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1900" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1900" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - } - ] + "value": "#ca6c0f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000": { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.teal.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2000" - ], - "references": [ - { + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.10}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2000" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { + "value": "#daf2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#daf2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.10}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - } - ] - } - ] + "value": "#daf2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#daf2f2" + }, + "name": "pf-t--color--teal--10", + "attributes": { + "category": "color", + "type": "teal", + "item": "10" + }, + "path": [ + "color", + "teal", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100": { - "type": "color", - "value": "#707070", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.black.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2100" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--chart--color--black--100", - "attributes": { - "category": "chart", + "value": "{chart.color.black.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2100" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "black", - "100" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] + "value": "#707070", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.blue.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2200" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.10}" - }, - "name": "pf-t--chart--color--blue--500", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2200" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "blue", - "500" - ], - "references": [ - { + "value": "#e0f0ff", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.10}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - } - ] - } - ] + "value": "#e0f0ff", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0f0ff" + }, + "name": "pf-t--color--blue--10", + "attributes": { + "category": "color", + "type": "blue", + "item": "10" + }, + "path": [ + "color", + "blue", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.yellow.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2300" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2300" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] + "value": "#b98412", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400": { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.green.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2400" - ], - "references": [ - { + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.10}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2400" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { + "value": "#e9f7df", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e9f7df", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.10}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] - } - ] - } - ] + "value": "#e9f7df", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.purple.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2500" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--chart--color--purple--100", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2500" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "purple", - "100" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] + "value": "#3d2785", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600": { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.orange.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2600" - ], - "references": [ - { + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.10}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2600" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { + "value": "#ffe8cc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.10}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] - } - ] - } - ] - }, - "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.teal.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2700" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", + "value": "#ffe8cc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } + ] + } + ] + } + }, + "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700": { + "dark": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2700" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { + "value": "#37a3a3", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#37a3a3", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] - } - ] + "value": "#37a3a3", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.black.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2800" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--chart--color--black--500", - "attributes": { - "category": "chart", + "value": "{chart.color.black.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2800" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "black", - "500" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] + "value": "#f2f2f2", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.blue.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2900" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--chart--color--blue--400", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2900" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "blue", - "400" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.20}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] + "value": "#b9dafc", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.yellow.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3000" - ], - "references": [ - { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--400", - "attributes": { - "category": "chart", + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3000" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "yellow", - "400" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.green.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3100" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3100" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.20}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - } - ] + "value": "#d1f1bb", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.purple.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3200" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--chart--color--purple--400", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3200" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "purple", - "400" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] + "value": "#b6a6e9", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.orange.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3300" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--chart--color--orange--400", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3300" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "orange", - "400" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.20}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - } - ] + "value": "#fccb8f", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.teal.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3400" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--chart--color--teal--400", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3400" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "teal", - "400" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.20}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - } - ] + "value": "#b9e5e5", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { + "dark": { "type": "color", - "value": "{chart.color.black.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3500" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/charts.dark.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--chart--color--black--400", - "attributes": { - "category": "chart", + "value": "{chart.color.black.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3500" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "black", - "400" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/dark/charts.dark.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/dark/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] + "value": "#e0e0e0", + "filePath": "tokens/dark/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + } } } } \ No newline at end of file diff --git a/packages/module/patternfly-docs/content/token-layers-default.json b/packages/module/patternfly-docs/content/token-layers-default.json index e0deb59..d4f5793 100644 --- a/packages/module/patternfly-docs/content/token-layers-default.json +++ b/packages/module/patternfly-docs/content/token-layers-default.json @@ -2,46896 +2,48420 @@ "semantic": { "colors": { "pf-t--global--icon--color--brand--default": { - "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", "type": "color", - "value": "{global.color.brand.default}" - }, - "name": "pf-t--global--icon--color--brand--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "brand", - "state": "default" - }, - "path": [ - "global", - "icon", - "color", - "brand", - "default" - ], - "references": [ - { - "description": "Use this color for elements that you want to reinforce your brand", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that convey your brand and/or are paired with branded text color.", "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--icon--color--brand--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "default" + ], + "references": [ + { "description": "Use this color for elements that you want to reinforce your brand", "type": "color", - "value": "{global.color.brand.200}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - } - ] + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--brand--hover": { - "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", "type": "color", - "value": "{global.color.brand.hover}" - }, - "name": "pf-t--global--icon--color--brand--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "brand", - "state": "hover" - }, - "path": [ - "global", - "icon", - "color", - "brand", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for elements that have a branded background color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that convey your brand and/or are paired with branded text color.", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--icon--color--brand--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "hover" + ], + "references": [ + { "description": "Use as the hover state for elements that have a branded background color", "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--brand--clicked": { - "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", "type": "color", - "value": "{global.color.brand.clicked}" - }, - "name": "pf-t--global--icon--color--brand--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "brand", - "state": "clicked" - }, - "path": [ - "global", - "icon", - "color", - "brand", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for elements that have a brand background color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for icons that convey your brand and/or are paired with branded text color.", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--icon--color--brand--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "brand", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for elements that have a brand background color", "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--on-brand--default": { - "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--on-brand--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "on-brand", - "state": "default" - }, - "path": [ - "global", - "icon", - "color", - "on-brand", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--on-brand--hover": { - "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--on-brand--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "on-brand", - "state": "hover" - }, - "path": [ - "global", - "icon", - "color", - "on-brand", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--on-brand--clicked": { - "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--on-brand--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "on-brand", - "state": "clicked" - }, - "path": [ - "global", - "icon", - "color", - "on-brand", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a brand background color and/or are paired with on-brand colored text.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--on-brand--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-brand", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "on-brand", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--favorite--default": { - "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", - "value": "{global.color.favorite.default}" - }, - "name": "pf-t--global--icon--color--favorite--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "favorite", - "state": "default" - }, - "path": [ - "global", - "icon", - "color", - "favorite", - "default" - ], - "references": [ - { - "description": "Use as the default color for elements that have been favorited", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.favorite.default}" + }, + "name": "pf-t--global--icon--color--favorite--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "default" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "default" + ], + "references": [ + { "description": "Use as the default color for elements that have been favorited", "type": "color", - "value": "{global.color.favorite.100}" - }, - "name": "pf-t--global--color--favorite--default", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "default" - }, - "path": [ - "global", - "color", - "favorite", - "default" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that have been favorited", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--favorite--100", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "100" - }, - "path": [ - "global", - "color", - "favorite", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.favorite.100}" + }, + "name": "pf-t--global--color--favorite--default", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "default" + }, + "path": [ + "global", + "color", + "favorite", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--favorite--100", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "100" + }, + "path": [ + "global", + "color", + "favorite", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--favorite--hover": { - "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", - "value": "{global.color.favorite.hover}" - }, - "name": "pf-t--global--icon--color--favorite--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "favorite", - "state": "hover" - }, - "path": [ - "global", - "icon", - "color", - "favorite", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for elements that have been favorited", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.favorite.hover}" + }, + "name": "pf-t--global--icon--color--favorite--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "hover" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "hover" + ], + "references": [ + { "description": "Use as the hover state for elements that have been favorited", "type": "color", - "value": "{global.color.favorite.200}" - }, - "name": "pf-t--global--color--favorite--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "favorite", - "hover" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have been favorited", "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--favorite--200", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "200" - }, - "path": [ - "global", - "color", - "favorite", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - } - ] + "value": "{global.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "favorite", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--favorite--clicked": { - "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", - "value": "{global.color.favorite.clicked}" - }, - "name": "pf-t--global--icon--color--favorite--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "favorite", - "state": "clicked" - }, - "path": [ - "global", - "icon", - "color", - "favorite", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for elements that have been favorited", + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state icon color for icons that have been favorited (this color is typically applied to the star or favorite icon)", "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.favorite.clicked}" + }, + "name": "pf-t--global--icon--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "favorite", + "state": "clicked" + }, + "path": [ + "global", + "icon", + "color", + "favorite", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for elements that have been favorited", "type": "color", - "value": "{global.color.favorite.200}" - }, - "name": "pf-t--global--color--favorite--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "favorite", - "clicked" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have been favorited", "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--favorite--200", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "200" - }, - "path": [ - "global", - "color", - "favorite", - "200" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "favorite", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - } - ] + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--success--default": { - "description": "Use as the default color for text that communicates a success status.", - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that communicates a success status.", "type": "color", - "value": "{global.color.status.success.default}" - }, - "name": "pf-t--global--icon--color--status--success--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates a success status.", "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--icon--color--status--success--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", - "value": "{global.color.status.success.100}" - }, - "name": "pf-t--global--color--status--success--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "success", - "default" - ], - "references": [ - { + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--global--color--status--success--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - } - ] - } - ] + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--success--hover": { - "description": "Use as the hover state color for text that communicates a success status.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that communicates a success status.", "type": "color", - "value": "{global.color.status.success.hover}" - }, - "name": "pf-t--global--icon--color--status--success--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a success status.", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates a success status.", "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--icon--color--status--success--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys a success status.", "type": "color", - "value": "{global.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "success", - "hover" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - } - ] + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--success--clicked": { - "description": "Use as the clicked state color for text that communicates a success status.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that communicates a success status.", "type": "color", - "value": "{global.color.status.success.clicked}" - }, - "name": "pf-t--global--icon--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a success status.", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates a success status.", "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--icon--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", - "value": "{global.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - } - ] + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-success--default": { - "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-success--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-success", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-success--hover": { - "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-success--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-success", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-success--clicked": { - "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-success--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-success", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a success background color and/or are paired with on-success colored text", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-success--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-success", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--warning--default": { - "description": "Use as the default color for text that communicates a warning status.", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that communicates a warning status.", "type": "color", - "value": "{global.color.status.warning.200}" - }, - "name": "pf-t--global--icon--color--status--warning--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "warning", - "default" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates a warning status.", "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--status--warning--200", - "attributes": { - "category": "global", + "value": "{global.color.status.warning.200}" + }, + "name": "pf-t--global--icon--color--status--warning--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "default" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "warning", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "warning", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--warning--hover": { - "description": "Use as the hover state color for text that communicates a warning status.", - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that communicates a warning status.", "type": "color", - "value": "{global.color.status.warning.300}" - }, - "name": "pf-t--global--icon--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates a warning status.", "type": "color", - "value": "#b98412", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--global--color--status--warning--300", - "attributes": { - "category": "global", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--icon--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "warning", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "warning", - "300" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--warning--clicked": { - "description": "Use as the clicked state color for text that communicates a warning status.", - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that communicates a warning status.", "type": "color", - "value": "{global.color.status.warning.300}" - }, - "name": "pf-t--global--icon--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates a warning status.", "type": "color", - "value": "#b98412", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--global--color--status--warning--300", - "attributes": { - "category": "global", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--icon--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "warning", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "warning", - "300" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-warning--default": { - "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--status--on-warning--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-warning", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--status--on-warning--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "default" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-warning--hover": { - "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--status--on-warning--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-warning", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--status--on-warning--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "hover" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-warning--clicked": { - "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--status--on-warning--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-warning", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a warning background color and/or are paired with on-warning colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--status--on-warning--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-warning", + "clicked" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--danger--default": { - "description": "Use as the default color for icons that convey danger, like in alerts or banners.", - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that convey danger, like in alerts or banners.", "type": "color", - "value": "{global.color.status.danger.default}" - }, - "name": "pf-t--global--icon--color--status--danger--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that convey danger, like in alerts or banners.", "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--icon--color--status--danger--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "{global.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--status--danger--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - } - ] - } - ] + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--danger--hover": { - "description": "Use as the hover state for icons that indicate danger.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state for icons that indicate danger.", "type": "color", - "value": "{global.color.status.danger.hover}" - }, - "name": "pf-t--global--icon--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a danger status.", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for icons that indicate danger.", "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--icon--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - } - ] + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--danger--clicked": { - "description": "Use as the clicked state for icons that indicate danger.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state for icons that indicate danger.", "type": "color", - "value": "{global.color.status.danger.clicked}" - }, - "name": "pf-t--global--icon--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a danger status.", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for icons that indicate danger.", "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--icon--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - } - ] + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-danger--default": { - "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-danger--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-danger", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-danger--hover": { - "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-danger--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-danger", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-danger--clicked": { - "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-danger--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-danger", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a danger background color and/or are paired with on-danger colored text", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-danger--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-danger", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--info--default": { - "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", "type": "color", - "value": "{global.color.status.info.default}" - }, - "name": "pf-t--global--icon--color--status--info--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that identify informational messages, like in alerts or banners.", "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--icon--color--status--info--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", - "value": "{global.color.status.info.100}" - }, - "name": "pf-t--global--color--status--info--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "info", - "default" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--color--status--info--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] - } - ] + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--info--hover": { - "description": "Use as the hover state for icons that identify informational messages.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state for icons that identify informational messages.", "type": "color", - "value": "{global.color.status.info.hover}" - }, - "name": "pf-t--global--icon--color--status--info--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys an info status.", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for icons that identify informational messages.", "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--icon--color--status--info--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys an info status.", "type": "color", - "value": "{global.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "info", - "hover" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - } - ] + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--info--clicked": { - "description": "Use as the clicked state for icons that identify informational messages.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state for icons that identify informational messages.", "type": "color", - "value": "{global.color.status.info.clicked}" - }, - "name": "pf-t--global--icon--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys an info status.", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for icons that identify informational messages.", "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--icon--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", - "value": "{global.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - } - ] + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-info--default": { - "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-info--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-info", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-info--hover": { - "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-info--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-info", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-info--clicked": { - "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-info--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-info", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on an info background color and/or are paired with on-info colored text", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-info--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-info", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--custom--default": { - "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#147878", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.color.status.custom.default}" - }, - "name": "pf-t--global--icon--color--status--custom--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that convey generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#147878", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--icon--color--status--custom--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "default" + ], + "references": [ + { "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.color.status.custom.100}" - }, - "name": "pf-t--global--color--status--custom--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "custom", - "default" - ], - "references": [ - { + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#147878", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--global--color--status--custom--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - } - ] - } - ] + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--custom--hover": { - "description": "Use as the hover state for icons that convey generic status with no associated severity.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state for icons that convey generic status with no associated severity.", "type": "color", - "value": "{global.color.status.custom.hover}" - }, - "name": "pf-t--global--icon--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for icons that convey generic status with no associated severity.", "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--icon--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - } - ] + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--custom--clicked": { - "description": "Use as the clicked state for icons that convey generic status with no associated severity.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state for icons that convey generic status with no associated severity.", "type": "color", - "value": "{global.color.status.custom.clicked}" - }, - "name": "pf-t--global--icon--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for icons that convey generic status with no associated severity.", "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--icon--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - } - ] + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-custom--default": { - "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-custom--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-custom", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status color, make sure that this token meets contrast requirements with your new custom status color.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-custom--hover": { - "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-custom--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-custom", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status hover color, make sure that this token meets contrast requirements with your new custom status hover color.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--on-custom--clicked": { - "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--on-custom--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "icon", - "color", - "status", - "on-custom", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a custom background color and/or are paired with on-custom colored text. If you change the custom status clicked color, make sure that this token meets contrast requirements with your new custom status clicked color.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--on-custom--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "icon", + "color", + "status", + "on-custom", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--unread--on-default--default": { - "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-default--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-default", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--unread--on-default--hover": { - "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-default--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-default", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--unread--on-default--clicked": { - "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-default--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-default", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-default--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-default", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--unread--on-attention--default": { - "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-attention--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-attention", - "default" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "default" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--unread--on-attention--hover": { - "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-attention--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-attention", - "hover" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "hover" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--status--unread--on-attention--clicked": { - "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--icon--color--status--unread--on-attention--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "icon", - "color", - "status", - "unread", - "on-attention", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed in and/or are paired with elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--icon--color--status--unread--on-attention--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "icon", + "color", + "status", + "unread", + "on-attention", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--regular": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--subtle": { - "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", - "type": "color", - "value": "#707070", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", "type": "color", - "value": "{global.icon.color.200}" - }, - "name": "pf-t--global--icon--color--subtle", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "subtle" - }, - "path": [ - "global", - "icon", - "color", - "subtle" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons when you want the icon to have less emphasis and/or when paired with subtle-colored text", "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.icon.color.200}" + }, + "name": "pf-t--global--icon--color--subtle", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "icon", + "color", + "subtle" + ], + "references": [ + { "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--icon--color--200", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "icon", - "color", - "200" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--inverse": { - "description": "Use as the color for icons that are placed on an inverse background color", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--global--icon--color--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + } + }, + "pf-t--global--icon--color--inverse": { + "default": { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--disabled": { - "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", "type": "color", - "value": "{global.color.disabled.200}" - }, - "name": "pf-t--global--icon--color--disabled", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "disabled" - }, - "path": [ - "global", - "icon", - "color", - "disabled" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that show in disabled icon buttons and/or when paired with disabled-color text", "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--disabled--200", - "attributes": { - "category": "global", + "value": "{global.color.disabled.200}" + }, + "name": "pf-t--global--icon--color--disabled", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "icon", + "color", + "disabled" + ], + "references": [ + { "type": "color", - "item": "disabled", - "subitem": "200" - }, - "path": [ - "global", - "color", - "disabled", - "200" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--disabled--200", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "200" + }, + "path": [ + "global", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--on-disabled": { - "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", "type": "color", - "value": "{global.color.disabled.300}" - }, - "name": "pf-t--global--icon--color--on-disabled", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "on-disabled" - }, - "path": [ - "global", - "icon", - "color", - "on-disabled" - ], - "references": [ - { + "value": "#4d4d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on a disabled background color and/or are paired with on-disabled colored text.", "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--global--color--disabled--300", - "attributes": { - "category": "global", + "value": "{global.color.disabled.300}" + }, + "name": "pf-t--global--icon--color--on-disabled", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "on-disabled" + }, + "path": [ + "global", + "icon", + "color", + "on-disabled" + ], + "references": [ + { "type": "color", - "item": "disabled", - "subitem": "300" - }, - "path": [ - "global", - "color", - "disabled", - "300" - ], - "references": [ - { + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] - } - ] + "value": "{color.gray.60}" + }, + "name": "pf-t--global--color--disabled--300", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "300" + }, + "path": [ + "global", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--severity--undefined--default": { - "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", "type": "color", - "value": "{global.color.severity.undefined.100}" - }, - "name": "pf-t--global--icon--color--severity--undefined--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "undefined" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "undefined", - "default" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that don’t communicate a specific severity level for issues.", "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--severity--undefined--100", - "attributes": { - "category": "global", + "value": "{global.color.severity.undefined.100}" + }, + "name": "pf-t--global--icon--color--severity--undefined--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "undefined" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "undefined", + "default" + ], + "references": [ + { "type": "color", - "item": "severity", - "subitem": "undefined", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "undefined", - "100" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--severity--undefined--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "undefined", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "undefined", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--severity--none--default": { - "description": "Use as the default color for severity icons that identify no issues.", - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for severity icons that identify no issues.", "type": "color", - "value": "{global.color.severity.none.100}" - }, - "name": "pf-t--global--icon--color--severity--none--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "none" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "none", - "default" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify no issues.", "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--severity--none--100", - "attributes": { - "category": "global", + "value": "{global.color.severity.none.100}" + }, + "name": "pf-t--global--icon--color--severity--none--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "none" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "none", + "default" + ], + "references": [ + { "type": "color", - "item": "severity", - "subitem": "none", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "none", - "100" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--severity--none--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "none", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "none", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--severity--minor--default": { - "description": "Use as the default color for severity icons that identify issues of minor severity.", - "type": "color", - "value": "#707070", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for severity icons that identify issues of minor severity.", "type": "color", - "value": "{global.color.severity.minor.100}" - }, - "name": "pf-t--global--icon--color--severity--minor--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "minor" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "minor", - "default" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify issues of minor severity.", "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--color--severity--minor--100", - "attributes": { - "category": "global", + "value": "{global.color.severity.minor.100}" + }, + "name": "pf-t--global--icon--color--severity--minor--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "minor" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "minor", + "default" + ], + "references": [ + { "type": "color", - "item": "severity", - "subitem": "minor", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "minor", - "100" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] + "value": "{color.gray.50}" + }, + "name": "pf-t--global--color--severity--minor--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "minor", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "minor", + "100" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--severity--moderate--default": { - "description": "Use as the default color for severity icons that identify issues of moderate severity.", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for severity icons that identify issues of moderate severity.", "type": "color", - "value": "{global.color.severity.moderate.100}" - }, - "name": "pf-t--global--icon--color--severity--moderate--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "moderate" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "moderate", - "default" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify issues of moderate severity.", "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.color.severity.moderate.100}" + }, + "name": "pf-t--global--icon--color--severity--moderate--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "moderate" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "moderate", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--severity--moderate--100", - "attributes": { - "category": "global", + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--severity--moderate--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "moderate", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "moderate", + "100" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } + }, + "pf-t--global--icon--color--severity--important--default": { + "default": { + "description": "Use as the default color for severity icons that identify issues of important severity.", + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify issues of important severity.", + "type": "color", + "value": "{global.color.severity.important.100}" + }, + "name": "pf-t--global--icon--color--severity--important--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "important" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "important", + "default" + ], + "references": [ + { "type": "color", - "item": "severity", - "subitem": "moderate", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "moderate", - "100" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--icon--color--severity--important--default": { - "description": "Use as the default color for severity icons that identify issues of important severity.", - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for severity icons that identify issues of important severity.", - "type": "color", - "value": "{global.color.severity.important.100}" - }, - "name": "pf-t--global--icon--color--severity--important--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "important" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "important", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--global--color--severity--important--100", - "attributes": { - "category": "global", - "type": "color", - "item": "severity", - "subitem": "important", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "important", - "100" - ], - "references": [ - { + "value": "{color.orange.50}" + }, + "name": "pf-t--global--color--severity--important--100", + "attributes": { + "category": "global", "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - } - ] + "item": "severity", + "subitem": "important", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "important", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--severity--critical--default": { - "description": "Use as the default color for severity icons that identify issues of critical severity.", - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for severity icons that identify issues of critical severity.", "type": "color", - "value": "{global.color.severity.critical.100}" - }, - "name": "pf-t--global--icon--color--severity--critical--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "severity", - "state": "critical" - }, - "path": [ - "global", - "icon", - "color", - "severity", - "critical", - "default" - ], - "references": [ - { + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for severity icons that identify issues of critical severity.", "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--severity--critical--100", - "attributes": { - "category": "global", + "value": "{global.color.severity.critical.100}" + }, + "name": "pf-t--global--icon--color--severity--critical--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "severity", + "state": "critical" + }, + "path": [ + "global", + "icon", + "color", + "severity", + "critical", + "default" + ], + "references": [ + { "type": "color", - "item": "severity", - "subitem": "critical", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "critical", - "100" - ], - "references": [ - { + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - } - ] + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--severity--critical--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "critical", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "critical", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-red--default": { - "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-red--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-red", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "default" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-red--hover": { - "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-red--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-red", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a non status red background color and/or are paired with on-red colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "hover" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-red--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-red--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-red", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus red background color and/or are paired with on-red colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-red--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-red", + "clicked" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-orangered--default": { - "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orangered--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orangered", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "default" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-orangered--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orangered--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orangered", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "hover" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-orangered--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orangered--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orangered", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orangered background color and/or are paired with on-orangered colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orangered--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orangered", + "clicked" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-orange--default": { - "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orange--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orange", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "default" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-orange--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orange--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orange", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "hover" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-orange--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-orange--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-orange", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus orange background color and/or are paired with on-orange colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-orange--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-orange", + "clicked" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-yellow--default": { - "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-yellow--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-yellow", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "default" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-yellow--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-yellow--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-yellow", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "hover" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-yellow--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-yellow--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-yellow", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus yellow background color and/or are paired with on-yellow colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-yellow--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-yellow", + "clicked" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-green--default": { - "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-green--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-green", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "default" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-green--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-green--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-green", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "hover" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-green--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-green--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-green", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus green background color and/or are paired with on-green colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-green--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-green", + "clicked" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-teal--default": { - "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-teal--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-teal", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "default" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-teal--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-teal--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-teal", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "hover" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-teal--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-teal--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-teal", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus teal background color and/or are paired with on-teal colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-teal--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-teal", + "clicked" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-blue--default": { - "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-blue--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-blue", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "default" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-blue--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-blue--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-blue", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "hover" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-blue--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-blue--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-blue", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus blue background color and/or are paired with on-blue colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-blue--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-blue", + "clicked" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-purple--default": { - "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-purple--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-purple", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "default" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-purple--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-purple--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-purple", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", + "type": "color", + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "hover" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-purple--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-purple--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-purple", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus purple background color and/or are paired with on-purple colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-purple--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-purple", + "clicked" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-gray--default": { - "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-gray--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-gray", - "default" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "default" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-gray--hover": { - "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-gray--hover", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-gray", - "hover" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--hover", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "hover" + ], + "references": [ + { "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--color--nonstatus--on-gray--clicked": { - "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", - "value": "{global.icon.color.regular}" - }, - "name": "pf-t--global--icon--color--nonstatus--on-gray--clicked", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "icon", - "color", - "nonstatus", - "on-gray", - "clicked" - ], - "references": [ - { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for icons that are placed on a nonstatus gray background color and/or are paired with on-gray colored text.", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", - "type": "color", - "value": "{global.icon.color.100}" - }, - "name": "pf-t--global--icon--color--regular", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "icon", - "color", - "regular" - ], - "references": [ - { + "value": "{global.icon.color.regular}" + }, + "name": "pf-t--global--icon--color--nonstatus--on-gray--clicked", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "icon", + "color", + "nonstatus", + "on-gray", + "clicked" + ], + "references": [ + { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for icons in icon buttons and/or when paired with regular-colored text", "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.100}" + }, + "name": "pf-t--global--icon--color--regular", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "icon", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] - } - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--brand--default": { - "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", "type": "color", - "value": "{global.color.brand.default}" - }, - "name": "pf-t--global--border--color--brand--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "brand", - "state": "default" - }, - "path": [ - "global", - "border", - "color", - "brand", - "default" - ], - "references": [ - { - "description": "Use this color for elements that you want to reinforce your brand", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any branded element, like color-coded labels, banners, etc.", "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--border--color--brand--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "border", + "color", + "brand", + "default" + ], + "references": [ + { "description": "Use this color for elements that you want to reinforce your brand", "type": "color", - "value": "{global.color.brand.200}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - } - ] + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--brand--hover": { - "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", - "value": "{global.color.brand.hover}" - }, - "name": "pf-t--global--border--color--brand--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "brand", - "state": "hover" - }, - "path": [ - "global", - "border", - "color", - "brand", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for elements that have a branded background color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--border--color--brand--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "border", + "color", + "brand", + "hover" + ], + "references": [ + { "description": "Use as the hover state for elements that have a branded background color", "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--brand--clicked": { - "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", - "value": "{global.color.brand.clicked}" - }, - "name": "pf-t--global--border--color--brand--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "brand", - "state": "clicked" - }, - "path": [ - "global", - "border", - "color", - "brand", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for elements that have a brand background color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any branded element, like color-coded labels, banners, etc.", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--border--color--brand--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "border", + "color", + "brand", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for elements that have a brand background color", "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--success--default": { - "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.success.default}" - }, - "name": "pf-t--global--border--color--status--success--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "border", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey a success status, like in alerts, notifications or status labels.", "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--border--color--status--success--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", - "value": "{global.color.status.success.100}" - }, - "name": "pf-t--global--color--status--success--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "success", - "default" - ], - "references": [ - { + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--global--color--status--success--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - } - ] - } - ] + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--success--hover": { - "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", - "value": "{global.color.status.success.hover}" - }, - "name": "pf-t--global--border--color--status--success--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "border", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a success status.", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--border--color--status--success--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys a success status.", "type": "color", - "value": "{global.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "success", - "hover" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - } - ] + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--success--clicked": { - "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", - "value": "{global.color.status.success.clicked}" - }, - "name": "pf-t--global--border--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "border", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a success status.", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey a success status, like in alerts, notifications, or status labels.", "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--border--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "border", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", - "value": "{global.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - } - ] + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--warning--default": { - "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.warning.200}" - }, - "name": "pf-t--global--border--color--status--warning--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "border", - "color", - "status", - "warning", - "default" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--status--warning--200", - "attributes": { - "category": "global", + "value": "{global.color.status.warning.200}" + }, + "name": "pf-t--global--border--color--status--warning--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "default" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "warning", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "warning", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--warning--hover": { - "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.warning.300}" - }, - "name": "pf-t--global--border--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "border", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", - "value": "#b98412", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--global--color--status--warning--300", - "attributes": { - "category": "global", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--border--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "warning", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "warning", - "300" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--warning--clicked": { - "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.warning.300}" - }, - "name": "pf-t--global--border--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "border", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey a warning status, like in alerts, notifications or status labels.", "type": "color", - "value": "#b98412", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--global--color--status--warning--300", - "attributes": { - "category": "global", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--border--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "border", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "warning", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "warning", - "300" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--danger--default": { - "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.danger.default}" - }, - "name": "pf-t--global--border--color--status--danger--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "border", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--border--color--status--danger--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "{global.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--status--danger--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - } - ] - } - ] + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--danger--hover": { - "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.danger.hover}" - }, - "name": "pf-t--global--border--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "border", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a danger status.", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--border--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - } - ] + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--danger--clicked": { - "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.danger.clicked}" - }, - "name": "pf-t--global--border--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "border", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a danger status.", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey a danger status, like in alerts, notifications or status labels.", "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--border--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "border", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - } - ] + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--info--default": { - "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.info.default}" - }, - "name": "pf-t--global--border--color--status--info--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "border", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--border--color--status--info--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", - "value": "{global.color.status.info.100}" - }, - "name": "pf-t--global--color--status--info--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "info", - "default" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--color--status--info--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] - } - ] + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--info--hover": { - "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.info.hover}" - }, - "name": "pf-t--global--border--color--status--info--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "border", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys an info status.", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--border--color--status--info--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys an info status.", "type": "color", - "value": "{global.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "info", - "hover" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - } - ] + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--info--clicked": { - "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.info.clicked}" - }, - "name": "pf-t--global--border--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "border", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys an info status.", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey an info status, like in alerts, notifications or status labels.", "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--border--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "border", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", - "value": "{global.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - } - ] + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--custom--default": { - "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#147878", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.custom.default}" - }, - "name": "pf-t--global--border--color--status--custom--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "border", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", - "value": "#147878", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--border--color--status--custom--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "default" + ], + "references": [ + { "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.color.status.custom.100}" - }, - "name": "pf-t--global--color--status--custom--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "custom", - "default" - ], - "references": [ - { + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#147878", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--global--color--status--custom--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - } - ] - } - ] + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--custom--hover": { - "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.custom.hover}" - }, - "name": "pf-t--global--border--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "border", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--border--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - } - ] + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--status--custom--clicked": { - "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", - "value": "{global.color.status.custom.clicked}" - }, - "name": "pf-t--global--border--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "border", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for borders that convey a custom status, like in alerts, notifications or status labels.", "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--border--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "border", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - } - ] + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--default": { - "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", - "value": "{global.border.color.100}" - }, - "name": "pf-t--global--border--color--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "default" - }, - "path": [ - "global", - "border", - "color", - "default" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.border.color.100}" + }, + "name": "pf-t--global--border--color--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "default" + }, + "path": [ + "global", + "border", + "color", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--border--color--100", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "border", - "color", - "100" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] + "value": "{color.gray.30}" + }, + "name": "pf-t--global--border--color--100", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "border", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--hover": { - "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", - "value": "{global.color.brand.100}" - }, - "name": "pf-t--global--border--color--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "hover" - }, - "path": [ - "global", - "border", - "color", - "hover" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--brand--100", - "attributes": { - "category": "global", + "value": "{global.color.brand.100}" + }, + "name": "pf-t--global--border--color--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "hover" + }, + "path": [ + "global", + "border", + "color", + "hover" + ], + "references": [ + { "type": "color", - "item": "brand", - "subitem": "100" - }, - "path": [ - "global", - "color", - "brand", - "100" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--brand--100", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "100" + }, + "path": [ + "global", + "color", + "brand", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--clicked": { - "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", - "value": "{global.color.brand.200}" - }, - "name": "pf-t--global--border--color--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "clicked" - }, - "path": [ - "global", - "border", - "color", - "clicked" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--border--color--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "clicked" + }, + "path": [ + "global", + "border", + "color", + "clicked" + ], + "references": [ + { "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--disabled": { - "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", - "value": "{global.color.disabled.200}" - }, - "name": "pf-t--global--border--color--disabled", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "disabled" - }, - "path": [ - "global", - "border", - "color", - "disabled" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the disabled border color for elements like form inputs, menu toggles, cards, etc.", "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--disabled--200", - "attributes": { - "category": "global", - "type": "color", - "item": "disabled", - "subitem": "200" - }, - "path": [ - "global", - "color", - "disabled", - "200" - ], - "references": [ - { + "value": "{global.color.disabled.200}" + }, + "name": "pf-t--global--border--color--disabled", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "border", + "color", + "disabled" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--disabled--200", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "200" + }, + "path": [ + "global", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--alt": { - "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", "type": "color", - "value": "{global.background.color.primary.default}" - }, - "name": "pf-t--global--border--color--alt", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "alt" - }, - "path": [ - "global", - "border", - "color", - "alt" - ], - "references": [ - { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use when border color needs to match the primary bkg color – helpful when you want a divider to look like negative space when shown on a colored bkg", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.background.color.primary.default}" + }, + "name": "pf-t--global--border--color--alt", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "alt" + }, + "path": [ + "global", + "border", + "color", + "alt" + ], + "references": [ + { "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", "type": "color", - "value": "{global.background.color.100}" - }, - "name": "pf-t--global--background--color--primary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "primary", - "default" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--border--color--on-secondary": { - "description": "Use on borders/dividers that are placed on a secondary bkg color.", - "type": "color", - "value": "#707070", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use on borders/dividers that are placed on a secondary bkg color.", "type": "color", - "value": "{global.border.color.300}" - }, - "name": "pf-t--global--border--color--on-secondary", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "on-secondary" - }, - "path": [ - "global", - "border", - "color", - "on-secondary" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use on borders/dividers that are placed on a secondary bkg color.", "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.border.color.300}" + }, + "name": "pf-t--global--border--color--on-secondary", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "on-secondary" + }, + "path": [ + "global", + "border", + "color", + "on-secondary" + ], + "references": [ + { "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--border--color--300", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "border", - "color", - "300" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] + "value": "{color.gray.50}" + }, + "name": "pf-t--global--border--color--300", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "border", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--red--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.color.nonstatus.red.200}" - }, - "name": "pf-t--global--border--color--nonstatus--red--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "red", - "default" - ], - "references": [ - { + "value": "#f9a8a8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.30}" - }, - "name": "pf-t--global--color--nonstatus--red--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.red.200}" + }, + "name": "pf-t--global--border--color--nonstatus--red--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "default" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { + "value": "#f9a8a8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - } - ] - } - ] + "value": "{color.red.30}" + }, + "name": "pf-t--global--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--red--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.red.300}" - }, - "name": "pf-t--global--border--color--nonstatus--red--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "red", - "hover" - ], - "references": [ - { + "value": "#f56e6e", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.40}" - }, - "name": "pf-t--global--color--nonstatus--red--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.red.300}" + }, + "name": "pf-t--global--border--color--nonstatus--red--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "300" - ], - "references": [ - { + "value": "#f56e6e", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f56e6e" - }, - "name": "pf-t--color--red--40", - "attributes": { - "category": "color", - "type": "red", - "item": "40" - }, - "path": [ - "color", - "red", - "40" - ] - } - ] - } - ] + "value": "{color.red.40}" + }, + "name": "pf-t--global--color--nonstatus--red--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--red--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.red.300}" - }, - "name": "pf-t--global--border--color--nonstatus--red--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "red" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "red", - "clicked" - ], - "references": [ - { + "value": "#f56e6e", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels)", "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.40}" - }, - "name": "pf-t--global--color--nonstatus--red--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.red.300}" + }, + "name": "pf-t--global--border--color--nonstatus--red--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "red" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "red", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "300" - ], - "references": [ - { + "value": "#f56e6e", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f56e6e" - }, - "name": "pf-t--color--red--40", - "attributes": { - "category": "color", - "type": "red", - "item": "40" - }, - "path": [ - "color", - "red", - "40" - ] - } - ] - } - ] + "value": "{color.red.40}" + }, + "name": "pf-t--global--color--nonstatus--red--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f56e6e", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--orangered--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.orangered.200}" - }, - "name": "pf-t--global--border--color--nonstatus--orangered--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orangered", - "default" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orangered--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "default" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - } - ] + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--orangered--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.orangered.300}" - }, - "name": "pf-t--global--border--color--nonstatus--orangered--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orangered", - "hover" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--color--nonstatus--orangered--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.orangered.300}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "300" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--border--color--nonstatus--orangered--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orangered--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + }, + "pf-t--global--border--color--nonstatus--orangered--clicked": { + "default": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.orangered.300}" - }, - "name": "pf-t--global--border--color--nonstatus--orangered--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orangered" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orangered", - "clicked" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orangered (i.e. color-coded labels)", "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--color--nonstatus--orangered--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.orangered.300}" + }, + "name": "pf-t--global--border--color--nonstatus--orangered--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orangered" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orangered", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "300" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orangered--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--orange--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.orange.200}" - }, - "name": "pf-t--global--border--color--nonstatus--orange--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orange", - "default" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orange--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "default" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] + "value": "{color.orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--orange--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.orange.300}" - }, - "name": "pf-t--global--border--color--nonstatus--orange--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orange", - "hover" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--global--color--nonstatus--orange--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.orange.300}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "300" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] + "value": "{color.orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orange--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--orange--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.orange.300}" - }, - "name": "pf-t--global--border--color--nonstatus--orange--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "orange" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "orange", - "clicked" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels)", "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--global--color--nonstatus--orange--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.orange.300}" + }, + "name": "pf-t--global--border--color--nonstatus--orange--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "orange" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "orange", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "300" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] + "value": "{color.orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orange--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "300" + ], + "references": [ + { + "type": "color", + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--yellow--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.yellow.200}" - }, - "name": "pf-t--global--border--color--nonstatus--yellow--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "yellow", - "default" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--nonstatus--yellow--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.yellow.200}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "default" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--yellow--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.yellow.300}" - }, - "name": "pf-t--global--border--color--nonstatus--yellow--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "yellow", - "hover" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--nonstatus--yellow--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.yellow.300}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "300" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--nonstatus--yellow--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--yellow--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.yellow.300}" - }, - "name": "pf-t--global--border--color--nonstatus--yellow--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "yellow" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "yellow", - "clicked" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels)", "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--nonstatus--yellow--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.yellow.300}" + }, + "name": "pf-t--global--border--color--nonstatus--yellow--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "yellow" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "yellow", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "300" - ], - "references": [ - { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--nonstatus--yellow--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "300" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--green--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.green.200}" - }, - "name": "pf-t--global--border--color--nonstatus--green--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "green", - "default" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--color--nonstatus--green--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.green.200}" + }, + "name": "pf-t--global--border--color--nonstatus--green--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "default" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] + "value": "{color.green.30}" + }, + "name": "pf-t--global--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--green--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.green.300}" - }, - "name": "pf-t--global--border--color--nonstatus--green--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "green", - "hover" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--color--nonstatus--green--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.green.300}" + }, + "name": "pf-t--global--border--color--nonstatus--green--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "300" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] + "value": "{color.green.40}" + }, + "name": "pf-t--global--color--nonstatus--green--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--green--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.green.300}" - }, - "name": "pf-t--global--border--color--nonstatus--green--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "green" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "green", - "clicked" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels)", "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--color--nonstatus--green--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.green.300}" + }, + "name": "pf-t--global--border--color--nonstatus--green--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "green" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "green", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "300" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] + "value": "{color.green.40}" + }, + "name": "pf-t--global--color--nonstatus--green--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "300" + ], + "references": [ + { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--teal--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.teal.200}" - }, - "name": "pf-t--global--border--color--nonstatus--teal--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "teal", - "default" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--color--nonstatus--teal--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.teal.200}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "default" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--teal--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.teal.300}" - }, - "name": "pf-t--global--border--color--nonstatus--teal--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "teal", - "hover" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--color--nonstatus--teal--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.teal.300}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "300" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] + "value": "{color.teal.40}" + }, + "name": "pf-t--global--color--nonstatus--teal--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--teal--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.teal.300}" - }, - "name": "pf-t--global--border--color--nonstatus--teal--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "teal" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "teal", - "clicked" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels)", "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--color--nonstatus--teal--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.teal.300}" + }, + "name": "pf-t--global--border--color--nonstatus--teal--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "teal" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "teal", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "300" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] + "value": "{color.teal.40}" + }, + "name": "pf-t--global--color--nonstatus--teal--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "300" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--blue--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.blue.200}" - }, - "name": "pf-t--global--border--color--nonstatus--blue--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "blue", - "default" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--color--nonstatus--blue--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "default" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] + "value": "{color.blue.30}" + }, + "name": "pf-t--global--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--blue--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.blue.300}" - }, - "name": "pf-t--global--border--color--nonstatus--blue--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "blue", - "hover" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--nonstatus--blue--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.blue.300}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "300" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--nonstatus--blue--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--blue--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.blue.300}" - }, - "name": "pf-t--global--border--color--nonstatus--blue--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "blue" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "blue", - "clicked" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels)", "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--nonstatus--blue--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.blue.300}" + }, + "name": "pf-t--global--border--color--nonstatus--blue--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "blue" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "blue", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "300" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--nonstatus--blue--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--purple--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.purple.200}" - }, - "name": "pf-t--global--border--color--nonstatus--purple--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "purple", - "default" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--color--nonstatus--purple--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { + "value": "{global.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] + "value": "{color.purple.30}" + }, + "name": "pf-t--global--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--purple--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.purple.300}" - }, - "name": "pf-t--global--border--color--nonstatus--purple--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "purple", - "hover" - ], - "references": [ - { + "value": "#876fd4", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--global--color--nonstatus--purple--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.purple.300}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "300" - ], - "references": [ - { + "value": "#876fd4", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] - } - ] + "value": "{color.purple.40}" + }, + "name": "pf-t--global--color--nonstatus--purple--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--purple--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.purple.300}" - }, - "name": "pf-t--global--border--color--nonstatus--purple--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "purple" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "purple", - "clicked" - ], - "references": [ - { + "value": "#876fd4", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels)", "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--global--color--nonstatus--purple--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.purple.300}" + }, + "name": "pf-t--global--border--color--nonstatus--purple--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "purple" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "purple", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "300" - ], - "references": [ - { + "value": "#876fd4", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] - } - ] + "value": "{color.purple.40}" + }, + "name": "pf-t--global--color--nonstatus--purple--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "300" + ], + "references": [ + { + "type": "color", + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--gray--default": { - "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.gray.200}" - }, - "name": "pf-t--global--border--color--nonstatus--gray--default", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "gray", - "default" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--nonstatus--gray--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--default", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "default" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--gray--hover": { - "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.gray.300}" - }, - "name": "pf-t--global--border--color--nonstatus--gray--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "gray", - "hover" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--nonstatus--gray--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.gray.300}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "300" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--nonstatus--gray--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "300" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--border--color--nonstatus--gray--clicked": { - "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", - "value": "{global.color.nonstatus.gray.300}" - }, - "name": "pf-t--global--border--color--nonstatus--gray--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "nonstatus", - "state": "gray" - }, - "path": [ - "global", - "border", - "color", - "nonstatus", - "gray", - "clicked" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels)", "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--nonstatus--gray--300", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.gray.300}" + }, + "name": "pf-t--global--border--color--nonstatus--gray--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "nonstatus", + "state": "gray" + }, + "path": [ + "global", + "border", + "color", + "nonstatus", + "gray", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "300" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--nonstatus--gray--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "300" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--box-shadow--color--sm": { - "description": "Use as the color of small box-shadows.", - "type": "color", - "value": "rgba(0, 0, 0, 0.1600)", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the color of small box-shadows.", "type": "color", - "value": "{global.box-shadow.color.100}" - }, - "name": "pf-t--global--box-shadow--color--sm", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "sm" - }, - "path": [ - "global", - "box-shadow", - "color", - "sm" - ], - "references": [ - { + "value": "rgba(0, 0, 0, 0.1600)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of small box-shadows.", "type": "color", - "value": "rgba(0, 0, 0, 0.1600)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.color.100}" + }, + "name": "pf-t--global--box-shadow--color--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "color", + "sm" + ], + "references": [ + { "type": "color", - "value": "rgba(0, 0, 0, 0.1600)" - }, - "name": "pf-t--global--box-shadow--color--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "color", - "100" - ] - } - ] + "value": "rgba(0, 0, 0, 0.1600)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)" + }, + "name": "pf-t--global--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "color", + "100" + ] + } + ] + } }, "pf-t--global--box-shadow--color--md": { - "description": "Use as the color of medium box-shadows.", - "type": "color", - "value": "rgba(0, 0, 0, 0.1200)", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the color of medium box-shadows.", "type": "color", - "value": "{global.box-shadow.color.200}" - }, - "name": "pf-t--global--box-shadow--color--md", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "md" - }, - "path": [ - "global", - "box-shadow", - "color", - "md" - ], - "references": [ - { + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of medium box-shadows.", "type": "color", - "value": "rgba(0, 0, 0, 0.1200)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "rgba(0, 0, 0, 0.1200)" - }, - "name": "pf-t--global--box-shadow--color--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "color", - "200" - ] - } - ] + "value": "{global.box-shadow.color.200}" + }, + "name": "pf-t--global--box-shadow--color--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "color", + "md" + ], + "references": [ + { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)" + }, + "name": "pf-t--global--box-shadow--color--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "color", + "200" + ] + } + ] + } }, "pf-t--global--box-shadow--color--lg": { - "description": "Use as the color of large box-shadows.", - "type": "color", - "value": "rgba(0, 0, 0, 0.1200)", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the color of large box-shadows.", "type": "color", - "value": "{global.box-shadow.color.200}" - }, - "name": "pf-t--global--box-shadow--color--lg", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "lg" - }, - "path": [ - "global", - "box-shadow", - "color", - "lg" - ], - "references": [ - { + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of large box-shadows.", "type": "color", - "value": "rgba(0, 0, 0, 0.1200)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.color.200}" + }, + "name": "pf-t--global--box-shadow--color--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "color", + "lg" + ], + "references": [ + { "type": "color", - "value": "rgba(0, 0, 0, 0.1200)" - }, - "name": "pf-t--global--box-shadow--color--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "color", - "200" - ] - } - ] + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)" + }, + "name": "pf-t--global--box-shadow--color--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "color", + "200" + ] + } + ] + } }, "pf-t--global--background--color--highlight--default": { - "description": "Use as the background color for highlighted elements", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the background color for highlighted elements", "type": "color", - "value": "{global.background.color.highlight.100}" - }, - "name": "pf-t--global--background--color--highlight--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "default" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the background color for highlighted elements", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.highlight.100}" + }, + "name": "pf-t--global--background--color--highlight--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--background--color--highlight--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "100" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--background--color--highlight--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "100" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--highlight--clicked": { - "description": "Use as the active state for for highlighted elements", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the active state for for highlighted elements", "type": "color", - "value": "{global.background.color.highlight.200}" - }, - "name": "pf-t--global--background--color--highlight--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "clicked" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "clicked" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the active state for for highlighted elements", "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.highlight.200}" + }, + "name": "pf-t--global--background--color--highlight--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--background--color--highlight--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "200" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--background--color--highlight--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "200" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--primary--default": { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", "type": "color", - "value": "{global.background.color.100}" - }, - "name": "pf-t--global--background--color--primary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "primary", - "default" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--primary--hover": { - "description": "Use as the hover state for primary backgrounds", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state for primary backgrounds", "type": "color", - "value": "{global.background.color.200}" - }, - "name": "pf-t--global--background--color--primary--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "hover" - }, - "path": [ - "global", - "background", - "color", - "primary", - "hover" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for primary backgrounds", "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--primary--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "primary", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--background--color--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "background", - "color", - "200" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--primary--clicked": { - "description": "Use as the clicked state for primary backgrounds", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state for primary backgrounds", "type": "color", - "value": "{global.background.color.200}" - }, - "name": "pf-t--global--background--color--primary--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "clicked" - }, - "path": [ - "global", - "background", - "color", - "primary", - "clicked" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for primary backgrounds", "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--primary--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "primary", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--background--color--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "background", - "color", - "200" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--secondary--default": { - "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", "type": "color", - "value": "{global.background.color.200}" - }, - "name": "pf-t--global--background--color--secondary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "secondary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "secondary", - "default" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--secondary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--background--color--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "background", - "color", - "200" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--secondary--hover": { - "description": "Use as the hover state for secondary backgrounds", - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state for secondary backgrounds", "type": "color", - "value": "{global.background.color.300}" - }, - "name": "pf-t--global--background--color--secondary--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "secondary", - "state": "hover" - }, - "path": [ - "global", - "background", - "color", - "secondary", - "hover" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for secondary backgrounds", "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.300}" + }, + "name": "pf-t--global--background--color--secondary--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--background--color--300", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "background", - "color", - "300" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] + "value": "{color.gray.20}" + }, + "name": "pf-t--global--background--color--300", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--secondary--clicked": { - "description": "Use as the clicked state for secondary backgrounds", - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state for secondary backgrounds", "type": "color", - "value": "{global.background.color.300}" - }, - "name": "pf-t--global--background--color--secondary--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "secondary", - "state": "clicked" - }, - "path": [ - "global", - "background", - "color", - "secondary", - "clicked" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for secondary backgrounds", "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.300}" + }, + "name": "pf-t--global--background--color--secondary--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--background--color--300", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "background", - "color", - "300" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] + "value": "{color.gray.20}" + }, + "name": "pf-t--global--background--color--300", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "background", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--floating--default": { - "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", "type": "color", - "value": "{global.background.color.100}" - }, - "name": "pf-t--global--background--color--floating--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "floating", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "floating", - "default" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the background color for components that appear over other content, such as toast alerts, menus, modals, overlay drawers, etc.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--floating--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "floating", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--floating--hover": { - "description": "Use as the hover state for floating backgrounds", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state for floating backgrounds", "type": "color", - "value": "{global.background.color.200}" - }, - "name": "pf-t--global--background--color--floating--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "floating", - "state": "hover" - }, - "path": [ - "global", - "background", - "color", - "floating", - "hover" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for floating backgrounds", "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--floating--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "hover" + }, + "path": [ + "global", + "background", + "color", + "floating", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--background--color--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "background", - "color", - "200" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--floating--clicked": { - "description": "Use as the clicked state for floating backgrounds", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state for floating backgrounds", "type": "color", - "value": "{global.background.color.200}" - }, - "name": "pf-t--global--background--color--floating--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "floating", - "state": "clicked" - }, - "path": [ - "global", - "background", - "color", - "floating", - "clicked" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for floating backgrounds", "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--floating--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "floating", + "state": "clicked" + }, + "path": [ + "global", + "background", + "color", + "floating", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--background--color--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "background", - "color", - "200" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--action--plain--default": { - "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", - "type": "color", - "value": "rgba(255, 255, 255, 0.0000)", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", "type": "color", - "value": "rgba(255, 255, 255, 0.0000)" - }, - "name": "pf-t--global--background--color--action--plain--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "default" - ] + "value": "rgba(255, 255, 255, 0.0000)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background for actions with transparent backgrounds such as menu items, accordion toggles, buttons, etc.", + "type": "color", + "value": "rgba(255, 255, 255, 0.0000)" + }, + "name": "pf-t--global--background--color--action--plain--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "default" + ] + } }, "pf-t--global--background--color--action--plain--hover": { - "description": "Use as the hover state for components that use the plain action default background.", - "type": "color", - "value": "rgba(199, 199, 199, 0.2500)", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state for components that use the plain action default background.", "type": "color", - "value": "{global.background.color.600}" - }, - "name": "pf-t--global--background--color--action--plain--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "hover" - ], - "references": [ - { + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for components that use the plain action default background.", "type": "color", - "value": "rgba(199, 199, 199, 0.2500)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.600}" + }, + "name": "pf-t--global--background--color--action--plain--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "hover" + ], + "references": [ + { "type": "color", - "value": "rgba(199, 199, 199, 0.2500)" - }, - "name": "pf-t--global--background--color--600", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "600" - }, - "path": [ - "global", - "background", - "color", - "600" - ] - } - ] + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)" + }, + "name": "pf-t--global--background--color--600", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "600" + }, + "path": [ + "global", + "background", + "color", + "600" + ] + } + ] + } }, "pf-t--global--background--color--action--plain--clicked": { - "description": "Use as the active/pressed state for components that use the plain action default background.", - "type": "color", - "value": "rgba(199, 199, 199, 0.2500)", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the active/pressed state for components that use the plain action default background.", "type": "color", - "value": "{global.background.color.600}" - }, - "name": "pf-t--global--background--color--action--plain--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "clicked" - ], - "references": [ - { + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the active/pressed state for components that use the plain action default background.", "type": "color", - "value": "rgba(199, 199, 199, 0.2500)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.600}" + }, + "name": "pf-t--global--background--color--action--plain--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "clicked" + ], + "references": [ + { "type": "color", - "value": "rgba(199, 199, 199, 0.2500)" - }, - "name": "pf-t--global--background--color--600", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "600" - }, - "path": [ - "global", - "background", - "color", - "600" - ] - } - ] + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)" + }, + "name": "pf-t--global--background--color--600", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "600" + }, + "path": [ + "global", + "background", + "color", + "600" + ] + } + ] + } }, "pf-t--global--background--color--action--plain--alt--hover": { - "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", "type": "color", - "value": "{global.background.color.100}" - }, - "name": "pf-t--global--background--color--action--plain--alt--hover", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "alt", - "hover" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--action--plain--alt--hover", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "alt", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - }, - "pf-t--global--background--color--action--plain--alt--clicked": { - "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + }, + "pf-t--global--background--color--action--plain--alt--clicked": { + "default": { "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", "type": "color", - "value": "{global.background.color.100}" - }, - "name": "pf-t--global--background--color--action--plain--alt--clicked", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "action", - "state": "plain" - }, - "path": [ - "global", - "background", - "color", - "action", - "plain", - "alt", - "clicked" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the active/pressed state for components that use the plain action default background but are placed on a secondary background color (like left nav, horizontal nav, etc.)", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--action--plain--alt--clicked", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "action", + "state": "plain" + }, + "path": [ + "global", + "background", + "color", + "action", + "plain", + "alt", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--control--default": { - "description": "Use as the default background for control elements like form inputs and menu toggles.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default background for control elements like form inputs and menu toggles.", "type": "color", - "value": "{global.background.color.primary.default}" - }, - "name": "pf-t--global--background--color--control--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "control", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "control", - "default" - ], - "references": [ - { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background for control elements like form inputs and menu toggles.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.background.color.primary.default}" + }, + "name": "pf-t--global--background--color--control--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "control", + "default" + ], + "references": [ + { "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", "type": "color", - "value": "{global.background.color.100}" - }, - "name": "pf-t--global--background--color--primary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "primary", - "default" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--background--color--inverse--default": { - "description": "Use as the background color components with inversed backgrounds like tooltips.", - "type": "color", - "value": "#292929", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the background color components with inversed backgrounds like tooltips.", "type": "color", - "value": "{global.background.color.400}" - }, - "name": "pf-t--global--background--color--inverse--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "inverse", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "inverse", - "default" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the background color components with inversed backgrounds like tooltips.", "type": "color", - "value": "#292929", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.400}" + }, + "name": "pf-t--global--background--color--inverse--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "inverse", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "inverse", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--background--color--400", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "400" - }, - "path": [ - "global", - "background", - "color", - "400" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#292929", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] - } - ] + "value": "{color.gray.80}" + }, + "name": "pf-t--global--background--color--400", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "background", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#292929", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--disabled--default": { - "description": "Use as the background color for disabled components.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the background color for disabled components.", "type": "color", - "value": "{global.color.disabled.100}" - }, - "name": "pf-t--global--background--color--disabled--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "disabled", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "disabled", - "default" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the background color for disabled components.", "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--disabled--100", - "attributes": { - "category": "global", + "value": "{global.color.disabled.100}" + }, + "name": "pf-t--global--background--color--disabled--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "disabled", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "disabled", + "default" + ], + "references": [ + { "type": "color", - "item": "disabled", - "subitem": "100" - }, - "path": [ - "global", - "color", - "disabled", - "100" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--disabled--100", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "100" + }, + "path": [ + "global", + "color", + "disabled", + "100" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--background--color--backdrop--default": { - "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", - "type": "color", - "value": "rgba(21, 21, 21, 0.2000)", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", "type": "color", - "value": "{global.background.color.500}" - }, - "name": "pf-t--global--background--color--backdrop--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "backdrop", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "backdrop", - "default" - ], - "references": [ - { + "value": "rgba(21, 21, 21, 0.2000)", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the background color for the backdrop component that shows beneath a modal/about modal/floating wizard etc.", "type": "color", - "value": "rgba(21, 21, 21, 0.2000)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.background.color.500}" + }, + "name": "pf-t--global--background--color--backdrop--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "backdrop", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "backdrop", + "default" + ], + "references": [ + { "type": "color", - "value": "rgba(21, 21, 21, 0.2000)" - }, - "name": "pf-t--global--background--color--500", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "500" - }, - "path": [ - "global", - "background", - "color", - "500" - ] - } - ] + "value": "rgba(21, 21, 21, 0.2000)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)" + }, + "name": "pf-t--global--background--color--500", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "500" + }, + "path": [ + "global", + "background", + "color", + "500" + ] + } + ] + } }, "pf-t--global--color--brand--default": { - "description": "Use this color for elements that you want to reinforce your brand", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use this color for elements that you want to reinforce your brand", "type": "color", - "value": "{global.color.brand.200}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--color--brand--hover": { - "description": "Use as the hover state for elements that have a branded background color", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state for elements that have a branded background color", "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } }, "pf-t--global--color--brand--clicked": { - "description": "Use as the clicked state for elements that have a brand background color", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state for elements that have a brand background color", "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } }, "pf-t--global--color--favorite--default": { - "description": "Use as the default color for elements that have been favorited", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for elements that have been favorited", "type": "color", - "value": "{global.color.favorite.100}" - }, - "name": "pf-t--global--color--favorite--default", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "default" - }, - "path": [ - "global", - "color", - "favorite", - "default" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that have been favorited", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--favorite--100", - "attributes": { - "category": "global", + "value": "{global.color.favorite.100}" + }, + "name": "pf-t--global--color--favorite--default", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "default" + }, + "path": [ + "global", + "color", + "favorite", + "default" + ], + "references": [ + { "type": "color", - "item": "favorite", - "subitem": "100" - }, - "path": [ - "global", - "color", - "favorite", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--favorite--100", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "100" + }, + "path": [ + "global", + "color", + "favorite", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--favorite--hover": { - "description": "Use as the hover state for elements that have been favorited", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state for elements that have been favorited", "type": "color", - "value": "{global.color.favorite.200}" - }, - "name": "pf-t--global--color--favorite--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "favorite", - "hover" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have been favorited", "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--favorite--200", - "attributes": { - "category": "global", + "value": "{global.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "favorite", + "hover" + ], + "references": [ + { "type": "color", - "item": "favorite", - "subitem": "200" - }, - "path": [ - "global", - "color", - "favorite", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--color--favorite--clicked": { - "description": "Use as the clicked state for elements that have been favorited", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state for elements that have been favorited", "type": "color", - "value": "{global.color.favorite.200}" - }, - "name": "pf-t--global--color--favorite--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "favorite", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "favorite", - "clicked" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have been favorited", "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--favorite--200", - "attributes": { - "category": "global", + "value": "{global.color.favorite.200}" + }, + "name": "pf-t--global--color--favorite--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "favorite", + "clicked" + ], + "references": [ + { "type": "color", - "item": "favorite", - "subitem": "200" - }, - "path": [ - "global", - "color", - "favorite", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--success--default": { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", - "value": "{global.color.status.success.100}" - }, - "name": "pf-t--global--color--status--success--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "success", - "default" - ], - "references": [ - { + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--global--color--status--success--100", - "attributes": { - "category": "global", + "value": "{global.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "success", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "success", - "100" - ], - "references": [ - { + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - } - ] + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--success--hover": { - "description": "Use as the hover state for any element that conveys a success status.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state for any element that conveys a success status.", "type": "color", - "value": "{global.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "success", - "hover" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--success--clicked": { - "description": "Use as the clicked state for any element that conveys a success status.", - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", - "value": "{global.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + }, + "pf-t--global--color--status--warning--default": { + "default": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", + "type": "color", + "value": "{global.color.status.warning.100}" + }, + "name": "pf-t--global--color--status--warning--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "warning", + "default" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - }, - "pf-t--global--color--status--warning--default": { - "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the default color for any element communicating caution, like a warning status for alert, progress, select.", - "type": "color", - "value": "{global.color.status.warning.100}" - }, - "name": "pf-t--global--color--status--warning--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "warning", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--status--warning--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "warning", - "100" - ], - "references": [ - { + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--status--warning--100", + "attributes": { + "category": "global", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "item": "status", + "subitem": "warning", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "warning", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--warning--hover": { - "description": "Use as the hover state for any element that conveys a warning status.", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", - "value": "{global.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a warning status.", "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--status--warning--200", - "attributes": { - "category": "global", + "value": "{global.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "warning", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "warning", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--warning--clicked": { - "description": "Use as the clicked state for any element that conveys a warning status.", - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", - "value": "{global.color.status.warning.200}" - }, - "name": "pf-t--global--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "warning", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a warning status.", "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--status--warning--200", - "attributes": { - "category": "global", + "value": "{global.color.status.warning.200}" + }, + "name": "pf-t--global--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "warning", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "warning", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--danger--default": { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "{global.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--status--danger--100", - "attributes": { - "category": "global", + "value": "{global.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "danger", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "danger", - "100" - ], - "references": [ - { + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - } - ] + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--danger--hover": { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--danger--clicked": { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--info--default": { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", - "value": "{global.color.status.info.100}" - }, - "name": "pf-t--global--color--status--info--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "info", - "default" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--color--status--info--100", - "attributes": { - "category": "global", + "value": "{global.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "info", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "info", - "100" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--info--hover": { - "description": "Use as the hover state for any element that conveys an info status.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state for any element that conveys an info status.", "type": "color", - "value": "{global.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "info", - "hover" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--info--clicked": { - "description": "Use as the clicked state for any element that conveys an info status.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", - "value": "{global.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--custom--default": { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#147878", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.color.status.custom.100}" - }, - "name": "pf-t--global--color--status--custom--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "custom", - "default" - ], - "references": [ - { + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#147878", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--global--color--status--custom--100", - "attributes": { - "category": "global", + "value": "{global.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "custom", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "custom", - "100" - ], - "references": [ - { + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - } - ] + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--custom--hover": { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--custom--clicked": { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } }, "pf-t--global--color--status--unread--default": { - "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.color.brand.default}" - }, - "name": "pf-t--global--color--status--unread--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "unread", - "default" - ], - "references": [ - { - "description": "Use this color for elements that you want to reinforce your brand", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--color--status--unread--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "unread", + "default" + ], + "references": [ + { "description": "Use this color for elements that you want to reinforce your brand", "type": "color", - "value": "{global.color.brand.200}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - } - ] + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--color--status--unread--hover": { - "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.color.brand.hover}" - }, - "name": "pf-t--global--color--status--unread--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "unread", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for elements that have a branded background color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--color--status--unread--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "unread", + "hover" + ], + "references": [ + { "description": "Use as the hover state for elements that have a branded background color", "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--color--status--unread--clicked": { - "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.color.brand.clicked}" - }, - "name": "pf-t--global--color--status--unread--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "unread", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for elements that have a brand background color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--color--status--unread--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "unread", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for elements that have a brand background color", "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--color--status--unread--attention--default": { - "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.color.status.danger.default}" - }, - "name": "pf-t--global--color--status--unread--attention--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "attention" - }, - "path": [ - "global", - "color", - "status", - "unread", - "attention", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--color--status--unread--attention--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "{global.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--status--danger--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - } - ] - } - ] + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--color--status--unread--attention--clicked": { - "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.color.status.danger.clicked}" - }, - "name": "pf-t--global--color--status--unread--attention--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "attention" - }, - "path": [ - "global", - "color", - "status", - "unread", - "attention", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a danger status.", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--color--status--unread--attention--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - } - ] + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--color--status--unread--attention--hover": { - "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.color.status.danger.hover}" - }, - "name": "pf-t--global--color--status--unread--attention--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "unread", - "state": "attention" - }, - "path": [ - "global", - "color", - "status", - "unread", - "attention", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for elements that convey an unread status and require greater attention like badges and stateful buttons.", + "type": "color", + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--color--status--unread--attention--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "unread", + "state": "attention" + }, + "path": [ + "global", + "color", + "status", + "unread", + "attention", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - } - ] + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--color--status--read--on-secondary": { - "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", "type": "color", - "value": "{global.background.color.control.default}" - }, - "name": "pf-t--global--color--status--read--on-secondary", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "read", - "state": "on-secondary" - }, - "path": [ - "global", - "color", - "status", - "read", - "on-secondary" - ], - "references": [ - { - "description": "Use as the default background for control elements like form inputs and menu toggles.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that convey a read status and are placed on a secondary background", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.background.color.control.default}" + }, + "name": "pf-t--global--color--status--read--on-secondary", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "read", + "state": "on-secondary" + }, + "path": [ + "global", + "color", + "status", + "read", + "on-secondary" + ], + "references": [ + { "description": "Use as the default background for control elements like form inputs and menu toggles.", "type": "color", - "value": "{global.background.color.primary.default}" - }, - "name": "pf-t--global--background--color--control--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "control", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "control", - "default" - ], - "references": [ - { - "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background for control elements like form inputs and menu toggles.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.background.color.primary.default}" + }, + "name": "pf-t--global--background--color--control--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "control", + "default" + ], + "references": [ + { "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", "type": "color", - "value": "{global.background.color.100}" - }, - "name": "pf-t--global--background--color--primary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "primary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "primary", - "default" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary background color for UI content such as cards, page sections, and other content areas.", + "type": "color", + "value": "{global.background.color.100}" + }, + "name": "pf-t--global--background--color--primary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "primary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "primary", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--color--status--read--on-primary": { - "description": "Use as the default color for elements that convey a read status and are placed on a primary background", - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for elements that convey a read status and are placed on a primary background", "type": "color", - "value": "{global.background.color.secondary.default}" - }, - "name": "pf-t--global--color--status--read--on-primary", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "read", - "state": "on-primary" - }, - "path": [ - "global", - "color", - "status", - "read", - "on-primary" - ], - "references": [ - { - "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for elements that convey a read status and are placed on a primary background", "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.background.color.secondary.default}" + }, + "name": "pf-t--global--color--status--read--on-primary", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "read", + "state": "on-primary" + }, + "path": [ + "global", + "color", + "status", + "read", + "on-primary" + ], + "references": [ + { "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", "type": "color", - "value": "{global.background.color.200}" - }, - "name": "pf-t--global--background--color--secondary--default", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "secondary", - "state": "default" - }, - "path": [ - "global", - "background", - "color", - "secondary", - "default" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the secondary background color for UI content Use as the primary background color for UI content such as cards, page sections, and other content areas. Secondary background color is also used for our UI shell backgrounds (nav, masthead, etc).", "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--background--color--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "background", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.background.color.200}" + }, + "name": "pf-t--global--background--color--secondary--default", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "secondary", + "state": "default" + }, + "path": [ + "global", + "background", + "color", + "secondary", + "default" + ], + "references": [ + { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] - } - ] + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--red--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.color.nonstatus.red.100}" - }, - "name": "pf-t--global--color--nonstatus--red--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "default" - ], - "references": [ - { + "value": "#fbc5c5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be red (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.20}" - }, - "name": "pf-t--global--color--nonstatus--red--100", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.red.100}" + }, + "name": "pf-t--global--color--nonstatus--red--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "default" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "100" - ], - "references": [ - { + "value": "#fbc5c5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - } - ] - } - ] + "value": "{color.red.20}" + }, + "name": "pf-t--global--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fbc5c5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--red--hover": { - "description": "Use as the hover state color for any element that uses the non status red background color.", - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for any element that uses the non status red background color.", "type": "color", - "value": "{global.color.nonstatus.red.200}" - }, - "name": "pf-t--global--color--nonstatus--red--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "hover" - ], - "references": [ - { + "value": "#f9a8a8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status red background color.", "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.30}" - }, - "name": "pf-t--global--color--nonstatus--red--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.red.200}" + }, + "name": "pf-t--global--color--nonstatus--red--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { + "value": "#f9a8a8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - } - ] - } - ] + "value": "{color.red.30}" + }, + "name": "pf-t--global--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--red--clicked": { - "description": "Use as the clicked state color for any element that uses the non status red background color.", - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for any element that uses the non status red background color.", "type": "color", - "value": "{global.color.nonstatus.red.200}" - }, - "name": "pf-t--global--color--nonstatus--red--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "clicked" - ], - "references": [ - { + "value": "#f9a8a8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status red background color.", "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.30}" - }, - "name": "pf-t--global--color--nonstatus--red--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.red.200}" + }, + "name": "pf-t--global--color--nonstatus--red--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { + "value": "#f9a8a8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - } - ] - } - ] + "value": "{color.red.30}" + }, + "name": "pf-t--global--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f9a8a8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--orangered--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.color.nonstatus.orangered.100}" - }, - "name": "pf-t--global--color--nonstatus--orangered--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "default" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange-red (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#fbbea8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--color--nonstatus--orangered--100", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.orangered.100}" + }, + "name": "pf-t--global--color--nonstatus--orangered--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "default" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "100" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbbea8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] - } - ] + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fbbea8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--orangered--hover": { - "description": "Use as the hover state color for any element that uses the non status orange-red background color.", - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for any element that uses the non status orange-red background color.", "type": "color", - "value": "{global.color.nonstatus.orangered.200}" - }, - "name": "pf-t--global--color--nonstatus--orangered--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "hover" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status orange-red background color.", "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orangered--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--color--nonstatus--orangered--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - } - ] + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--orangered--clicked": { - "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", "type": "color", - "value": "{global.color.nonstatus.orangered.200}" - }, - "name": "pf-t--global--color--nonstatus--orangered--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "clicked" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status orange-red background color.", "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orangered--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.orangered.200}" + }, + "name": "pf-t--global--color--nonstatus--orangered--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] - } - ] + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--orange--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.color.nonstatus.orange.100}" - }, - "name": "pf-t--global--color--nonstatus--orange--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "default" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be orange (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#fccb8f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--global--color--nonstatus--orange--100", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.orange.100}" + }, + "name": "pf-t--global--color--nonstatus--orange--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "default" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "100" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] - } - ] + "value": "{color.orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { + "type": "color", + "value": "#fccb8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--orange--hover": { - "description": "Use as the hover state color for any element that uses the non status orange background color.", - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for any element that uses the non status orange background color.", "type": "color", - "value": "{global.color.nonstatus.orange.200}" - }, - "name": "pf-t--global--color--nonstatus--orange--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "hover" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status orange background color.", "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orange--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--color--nonstatus--orange--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] + "value": "{color.orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--orange--clicked": { - "description": "Use as the clicked state color for any element that uses the non status orange background color.", - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for any element that uses the non status orange background color.", "type": "color", - "value": "{global.color.nonstatus.orange.200}" - }, - "name": "pf-t--global--color--nonstatus--orange--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "clicked" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status orange background color.", "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orange--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.orange.200}" + }, + "name": "pf-t--global--color--nonstatus--orange--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] + "value": "{color.orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { + "type": "color", + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--yellow--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.color.nonstatus.yellow.100}" - }, - "name": "pf-t--global--color--nonstatus--yellow--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "default" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be yellow (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--color--nonstatus--yellow--100", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.yellow.100}" + }, + "name": "pf-t--global--color--nonstatus--yellow--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "default" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "100" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--color--nonstatus--yellow--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "100" + ], + "references": [ + { + "type": "color", + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--yellow--hover": { - "description": "Use as the hover state color for any element that uses the non status yellow background color.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for any element that uses the non status yellow background color.", "type": "color", - "value": "{global.color.nonstatus.yellow.200}" - }, - "name": "pf-t--global--color--nonstatus--yellow--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "hover" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status yellow background color.", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--nonstatus--yellow--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.yellow.200}" + }, + "name": "pf-t--global--color--nonstatus--yellow--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--yellow--clicked": { - "description": "Use as the clicked state color for any element that uses the non status yellow background color.", - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for any element that uses the non status yellow background color.", "type": "color", - "value": "{global.color.nonstatus.yellow.200}" - }, - "name": "pf-t--global--color--nonstatus--yellow--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "clicked" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status yellow background color.", "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.color.nonstatus.yellow.200}" + }, + "name": "pf-t--global--color--nonstatus--yellow--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "clicked" + ], + "references": [ + { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--nonstatus--yellow--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { + "type": "color", + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--green--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.color.nonstatus.green.100}" - }, - "name": "pf-t--global--color--nonstatus--green--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "default" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be green (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--color--nonstatus--green--100", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.green.100}" + }, + "name": "pf-t--global--color--nonstatus--green--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "default" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "100" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] - } - ] + "value": "{color.green.20}" + }, + "name": "pf-t--global--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { + "type": "color", + "value": "#d1f1bb", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--green--hover": { - "description": "Use as the hover state color for any element that uses the non status green background color.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for any element that uses the non status green background color.", "type": "color", - "value": "{global.color.nonstatus.green.200}" - }, - "name": "pf-t--global--color--nonstatus--green--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "hover" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status green background color.", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--color--nonstatus--green--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.green.200}" + }, + "name": "pf-t--global--color--nonstatus--green--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] + "value": "{color.green.30}" + }, + "name": "pf-t--global--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--green--clicked": { - "description": "Use as the clicked state color for any element that uses the non status green background color.", - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for any element that uses the non status green background color.", "type": "color", - "value": "{global.color.nonstatus.green.200}" - }, - "name": "pf-t--global--color--nonstatus--green--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "clicked" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status green background color.", "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--color--nonstatus--green--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.green.200}" + }, + "name": "pf-t--global--color--nonstatus--green--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] + "value": "{color.green.30}" + }, + "name": "pf-t--global--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { + "type": "color", + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--teal--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.color.nonstatus.teal.100}" - }, - "name": "pf-t--global--color--nonstatus--teal--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "default" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be teal (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--color--nonstatus--teal--100", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.teal.100}" + }, + "name": "pf-t--global--color--nonstatus--teal--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "default" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "100" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] - } - ] + "value": "{color.teal.20}" + }, + "name": "pf-t--global--color--nonstatus--teal--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--teal--hover": { - "description": "Use as the hover state color for any element that uses the non status teal background color.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for any element that uses the non status teal background color.", "type": "color", - "value": "{global.color.nonstatus.teal.200}" - }, - "name": "pf-t--global--color--nonstatus--teal--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "hover" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status teal background color.", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--color--nonstatus--teal--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.teal.200}" + }, + "name": "pf-t--global--color--nonstatus--teal--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--teal--clicked": { - "description": "Use as the clicked state color for any element that uses the non status teal background color.", - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for any element that uses the non status teal background color.", "type": "color", - "value": "{global.color.nonstatus.teal.200}" - }, - "name": "pf-t--global--color--nonstatus--teal--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "clicked" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status teal background color.", "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--color--nonstatus--teal--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.teal.200}" + }, + "name": "pf-t--global--color--nonstatus--teal--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] - }, - "pf-t--global--color--nonstatus--blue--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } + }, + "pf-t--global--color--nonstatus--blue--default": { + "default": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.color.nonstatus.blue.100}" - }, - "name": "pf-t--global--color--nonstatus--blue--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "default" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be blue (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#b9dafc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--color--nonstatus--blue--100", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.blue.100}" + }, + "name": "pf-t--global--color--nonstatus--blue--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "default" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "100" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] - } - ] + "value": "{color.blue.20}" + }, + "name": "pf-t--global--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--blue--hover": { - "description": "Use as the hover state color for any element that uses the non status blue background color.", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for any element that uses the non status blue background color.", "type": "color", - "value": "{global.color.nonstatus.blue.200}" - }, - "name": "pf-t--global--color--nonstatus--blue--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "hover" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status blue background color.", "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--color--nonstatus--blue--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--color--nonstatus--blue--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] + "value": "{color.blue.30}" + }, + "name": "pf-t--global--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--blue--clicked": { - "description": "Use as the clicked state color for any element that uses the non status blue background color.", - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for any element that uses the non status blue background color.", "type": "color", - "value": "{global.color.nonstatus.blue.200}" - }, - "name": "pf-t--global--color--nonstatus--blue--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "clicked" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status blue background color.", "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--color--nonstatus--blue--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.blue.200}" + }, + "name": "pf-t--global--color--nonstatus--blue--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] + "value": "{color.blue.30}" + }, + "name": "pf-t--global--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--purple--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.color.nonstatus.purple.100}" - }, - "name": "pf-t--global--color--nonstatus--purple--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "default" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be purple (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--color--nonstatus--purple--100", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.purple.100}" + }, + "name": "pf-t--global--color--nonstatus--purple--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "default" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "100" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] - } - ] + "value": "{color.purple.20}" + }, + "name": "pf-t--global--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--purple--hover": { - "description": "Use as the hover state color for any element that uses the non status purple background color.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for any element that uses the non status purple background color.", "type": "color", - "value": "{global.color.nonstatus.purple.200}" - }, - "name": "pf-t--global--color--nonstatus--purple--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "hover" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status purple background color.", "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--color--nonstatus--purple--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--color--nonstatus--purple--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] + "value": "{color.purple.30}" + }, + "name": "pf-t--global--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--purple--clicked": { - "description": "Use as the clicked state color for any element that uses the non status purple background color.", - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for any element that uses the non status purple background color.", "type": "color", - "value": "{global.color.nonstatus.purple.200}" - }, - "name": "pf-t--global--color--nonstatus--purple--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "clicked" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status purple background color.", "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--color--nonstatus--purple--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.purple.200}" + }, + "name": "pf-t--global--color--nonstatus--purple--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] + "value": "{color.purple.30}" + }, + "name": "pf-t--global--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { + "type": "color", + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--gray--default": { - "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "{global.color.nonstatus.gray.100}" - }, - "name": "pf-t--global--color--nonstatus--gray--default", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "default" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "default" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default background color for any element that does not convey status and that you always will want to be gray (i.e. color-coded labels, banners, etc.)", "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--color--nonstatus--gray--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "100" - ], - "references": [ - { + "value": "{global.color.nonstatus.gray.100}" + }, + "name": "pf-t--global--color--nonstatus--gray--default", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "default" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "default" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] + "value": "{color.gray.20}" + }, + "name": "pf-t--global--color--nonstatus--gray--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--gray--hover": { - "description": "Use as the hover state color for any element that uses the non status gray background color.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for any element that uses the non status gray background color.", "type": "color", - "value": "{global.color.nonstatus.gray.200}" - }, - "name": "pf-t--global--color--nonstatus--gray--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "hover" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "hover" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for any element that uses the non status gray background color.", "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--nonstatus--gray--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--color--nonstatus--gray--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "hover" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "hover" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--color--nonstatus--gray--clicked": { - "description": "Use as the clicked state color for any element that uses the non status gray background color.", - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for any element that uses the non status gray background color.", "type": "color", - "value": "{global.color.nonstatus.gray.200}" - }, - "name": "pf-t--global--color--nonstatus--gray--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "clicked" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "clicked" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that uses the non status gray background color.", "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--nonstatus--gray--200", - "attributes": { - "category": "global", + "value": "{global.color.nonstatus.gray.200}" + }, + "name": "pf-t--global--color--nonstatus--gray--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "clicked" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "clicked" + ], + "references": [ + { "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--link--default": { - "description": "Use as the default text color for links.", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default text color for links.", "type": "color", - "value": "{global.text.color.link.100}" - }, - "name": "pf-t--global--text--color--link--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "default" - }, - "path": [ - "global", - "text", - "color", - "link", - "default" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default text color for links.", "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.text.color.link.100}" + }, + "name": "pf-t--global--text--color--link--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "link", + "default" + ], + "references": [ + { "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--text--color--link--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "100" - }, - "path": [ - "global", - "text", - "color", - "link", - "100" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] + "value": "{color.blue.50}" + }, + "name": "pf-t--global--text--color--link--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "100" + }, + "path": [ + "global", + "text", + "color", + "link", + "100" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--link--hover": { - "description": "Use as the hover state text color for links.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state text color for links.", "type": "color", - "value": "{global.text.color.link.200}" - }, - "name": "pf-t--global--text--color--link--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "hover" - }, - "path": [ - "global", - "text", - "color", - "link", - "hover" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state text color for links.", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.text.color.link.200}" + }, + "name": "pf-t--global--text--color--link--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "link", + "hover" + ], + "references": [ + { "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--text--color--link--200", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "200" - }, - "path": [ - "global", - "text", - "color", - "link", - "200" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] + "value": "{color.blue.60}" + }, + "name": "pf-t--global--text--color--link--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "200" + }, + "path": [ + "global", + "text", + "color", + "link", + "200" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--link--visited": { - "description": "Use as the color to indicate that a link has been visited.", - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the color to indicate that a link has been visited.", "type": "color", - "value": "{global.text.color.link.300}" - }, - "name": "pf-t--global--text--color--link--visited", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "visited" - }, - "path": [ - "global", - "text", - "color", - "link", - "visited" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color to indicate that a link has been visited.", "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.text.color.link.300}" + }, + "name": "pf-t--global--text--color--link--visited", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "visited" + }, + "path": [ + "global", + "text", + "color", + "link", + "visited" + ], + "references": [ + { "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--text--color--link--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "300" - }, - "path": [ - "global", - "text", - "color", - "link", - "300" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] + "value": "{color.purple.50}" + }, + "name": "pf-t--global--text--color--link--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "300" + }, + "path": [ + "global", + "text", + "color", + "link", + "300" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--brand--default": { - "description": "Use as the default color for branded text.", - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for branded text.", "type": "color", - "value": "{global.color.brand.default}" - }, - "name": "pf-t--global--text--color--brand--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "default" - }, - "path": [ - "global", - "text", - "color", - "brand", - "default" - ], - "references": [ - { - "description": "Use this color for elements that you want to reinforce your brand", + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for branded text.", "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.brand.default}" + }, + "name": "pf-t--global--text--color--brand--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "brand", + "default" + ], + "references": [ + { "description": "Use this color for elements that you want to reinforce your brand", "type": "color", - "value": "{global.color.brand.200}" - }, - "name": "pf-t--global--color--brand--default", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "default" - }, - "path": [ - "global", - "color", - "brand", - "default" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color for elements that you want to reinforce your brand", "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.brand.200}" + }, + "name": "pf-t--global--color--brand--default", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "default" + }, + "path": [ + "global", + "color", + "brand", + "default" + ], + "references": [ + { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] - } - ] + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--brand--hover": { - "description": "Use as the hover state color for branded text.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for branded text.", "type": "color", - "value": "{global.color.brand.hover}" - }, - "name": "pf-t--global--text--color--brand--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "hover" - }, - "path": [ - "global", - "text", - "color", - "brand", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for elements that have a branded background color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for branded text.", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.brand.hover}" + }, + "name": "pf-t--global--text--color--brand--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "brand", + "hover" + ], + "references": [ + { "description": "Use as the hover state for elements that have a branded background color", "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "hover" - }, - "path": [ - "global", - "color", - "brand", - "hover" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for elements that have a branded background color", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "hover" + }, + "path": [ + "global", + "color", + "brand", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--brand--clicked": { - "description": "Use as the clicked state color for branded text.", - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for branded text.", "type": "color", - "value": "{global.color.brand.clicked}" - }, - "name": "pf-t--global--text--color--brand--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "brand", - "state": "clicked" - }, - "path": [ - "global", - "text", - "color", - "brand", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for elements that have a brand background color", + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for branded text.", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.brand.clicked}" + }, + "name": "pf-t--global--text--color--brand--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "brand", + "state": "clicked" + }, + "path": [ + "global", + "text", + "color", + "brand", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for elements that have a brand background color", "type": "color", - "value": "{global.color.brand.300}" - }, - "name": "pf-t--global--color--brand--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "clicked" - }, - "path": [ - "global", - "color", - "brand", - "clicked" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for elements that have a brand background color", "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.brand.300}" + }, + "name": "pf-t--global--color--brand--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "clicked" + }, + "path": [ + "global", + "color", + "brand", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] - } - ] + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--regular": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--subtle": { - "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", - "value": "{global.text.color.200}" - }, - "name": "pf-t--global--text--color--subtle", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "subtle" - }, - "path": [ - "global", - "text", - "color", - "subtle" - ], - "references": [ - { + "value": "#4d4d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.text.color.200}" + }, + "name": "pf-t--global--text--color--subtle", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "text", + "color", + "subtle" + ], + "references": [ + { "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--global--text--color--200", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "text", - "color", - "200" - ], - "references": [ - { + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] - } - ] + "value": "{color.gray.60}" + }, + "name": "pf-t--global--text--color--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "text", + "color", + "200" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--inverse": { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--on-brand--default": { - "description": "Use as the default color for text placed on a brand-colored background.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text placed on a brand-colored background.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--on-brand--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-brand", - "state": "default" - }, - "path": [ - "global", - "text", - "color", - "on-brand", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text placed on a brand-colored background.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "default" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--on-brand--hover": { - "description": "Use as the hover state color for text placed on a brand-colored background.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text placed on a brand-colored background.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--on-brand--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-brand", - "state": "hover" - }, - "path": [ - "global", - "text", - "color", - "on-brand", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text placed on a brand-colored background.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "hover" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--on-brand--clicked": { - "description": "Use as the clicked state color for text placed on a brand-colored background.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text placed on a brand-colored background.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--on-brand--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-brand", - "state": "clicked" - }, - "path": [ - "global", - "text", - "color", - "on-brand", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text placed on a brand-colored background.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--on-brand--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-brand", + "state": "clicked" + }, + "path": [ + "global", + "text", + "color", + "on-brand", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--placeholder": { - "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", "type": "color", - "value": "{global.text.color.subtle}" - }, - "name": "pf-t--global--text--color--placeholder", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "placeholder" - }, - "path": [ - "global", - "text", - "color", - "placeholder" - ], - "references": [ - { - "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", + "value": "#4d4d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that serves as a placeholder, like within a search bar/input.", "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.subtle}" + }, + "name": "pf-t--global--text--color--placeholder", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "placeholder" + }, + "path": [ + "global", + "text", + "color", + "placeholder" + ], + "references": [ + { "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", - "value": "{global.text.color.200}" - }, - "name": "pf-t--global--text--color--subtle", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "subtle" - }, - "path": [ - "global", - "text", - "color", - "subtle" - ], - "references": [ - { + "value": "#4d4d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as a subtle text color for text in an element that is secondary or less important, like descriptions or inactive tab labels.", "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--global--text--color--200", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "text", - "color", - "200" - ], - "references": [ - { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.200}" + }, + "name": "pf-t--global--text--color--subtle", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "subtle" + }, + "path": [ + "global", + "text", + "color", + "subtle" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.60}" + }, + "name": "pf-t--global--text--color--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "text", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] - } - ] - } - ] + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--disabled": { - "description": "Use as the color of text on disabled elements, like disabled menu items.", - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the color of text on disabled elements, like disabled menu items.", "type": "color", - "value": "{global.color.disabled.200}" - }, - "name": "pf-t--global--text--color--disabled", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "disabled" - }, - "path": [ - "global", - "text", - "color", - "disabled" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text on disabled elements, like disabled menu items.", "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--disabled--200", - "attributes": { - "category": "global", + "value": "{global.color.disabled.200}" + }, + "name": "pf-t--global--text--color--disabled", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "disabled" + }, + "path": [ + "global", + "text", + "color", + "disabled" + ], + "references": [ + { "type": "color", - "item": "disabled", - "subitem": "200" - }, - "path": [ - "global", - "color", - "disabled", - "200" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--disabled--200", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "200" + }, + "path": [ + "global", + "color", + "disabled", + "200" + ], + "references": [ + { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--on-disabled": { - "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", "type": "color", - "value": "{global.color.disabled.300}" - }, - "name": "pf-t--global--text--color--on-disabled", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-disabled" - }, - "path": [ - "global", - "text", - "color", - "on-disabled" - ], - "references": [ - { + "value": "#4d4d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on a disabled background, like disabled menu toggles or tabs.", "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--global--color--disabled--300", - "attributes": { - "category": "global", + "value": "{global.color.disabled.300}" + }, + "name": "pf-t--global--text--color--on-disabled", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-disabled" + }, + "path": [ + "global", + "text", + "color", + "on-disabled" + ], + "references": [ + { "type": "color", - "item": "disabled", - "subitem": "300" - }, - "path": [ - "global", - "color", - "disabled", - "300" - ], - "references": [ - { + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] - } - ] + "value": "{color.gray.60}" + }, + "name": "pf-t--global--color--disabled--300", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "300" + }, + "path": [ + "global", + "color", + "disabled", + "300" + ], + "references": [ + { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--required": { - "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", "type": "color", - "value": "{global.text.color.400}" - }, - "name": "pf-t--global--text--color--required", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "required" - }, - "path": [ - "global", - "text", - "color", - "required" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that signals that action/information is required from users, like asterisks placed beside form fields or checkboxes.", "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.text.color.400}" + }, + "name": "pf-t--global--text--color--required", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "required" + }, + "path": [ + "global", + "text", + "color", + "required" + ], + "references": [ + { "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--text--color--400", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "400" - }, - "path": [ - "global", - "text", - "color", - "400" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] - } - ] - }, - "pf-t--global--text--color--on-highlight": { - "description": "Use as the color of text that is highlighted.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--text--color--400", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "text", + "color", + "400" + ], + "references": [ + { + "type": "color", + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } + ] + } + }, + "pf-t--global--text--color--on-highlight": { + "default": { "description": "Use as the color of text that is highlighted.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--on-highlight", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "on-highlight" - }, - "path": [ - "global", - "text", - "color", - "on-highlight" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is highlighted.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--on-highlight", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "on-highlight" + }, + "path": [ + "global", + "text", + "color", + "on-highlight" + ], + "references": [ + { "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--success--default": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{global.color.status.success.default}" - }, - "name": "pf-t--global--text--color--status--success--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "text", - "color", - "status", - "success", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.default}" + }, + "name": "pf-t--global--text--color--status--success--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", - "value": "{global.color.status.success.100}" - }, - "name": "pf-t--global--color--status--success--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "success", - "default" - ], - "references": [ - { + "value": "#3d7317", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a favorable outcome, like a success status for alert, progress, select.", "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--global--color--status--success--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "success", - "100" - ], - "references": [ - { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.100}" + }, + "name": "pf-t--global--color--status--success--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "success", + "default" + ], + "references": [ + { + "type": "color", + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - } - ] - } - ] + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--success--hover": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{global.color.status.success.hover}" - }, - "name": "pf-t--global--text--color--status--success--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "text", - "color", - "status", - "success", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a success status.", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.hover}" + }, + "name": "pf-t--global--text--color--status--success--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys a success status.", "type": "color", - "value": "{global.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "success", - "hover" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a success status.", "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "success", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - } - ] + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--success--clicked": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{global.color.status.success.clicked}" - }, - "name": "pf-t--global--text--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "success" - }, - "path": [ - "global", - "text", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a success status.", + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { "type": "color", - "value": "#204d00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.clicked}" + }, + "name": "pf-t--global--text--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "success" + }, + "path": [ + "global", + "text", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", - "value": "{global.color.status.success.200}" - }, - "name": "pf-t--global--color--status--success--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "success", - "clicked" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a success status.", "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.success.200}" + }, + "name": "pf-t--global--color--status--success--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "success", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] - } - ] + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-success--default": { - "description": "Use as the default color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that is placed on a success background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-success--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-success", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a success background color, like in banners.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-success--hover": { - "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-success--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-success", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a success background color, like in banners.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-success--clicked": { - "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-success--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-success" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-success", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a success background color, like in banners.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-success--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-success" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-success", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--warning--default": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{global.color.status.warning.200}" - }, - "name": "pf-t--global--text--color--status--warning--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "warning", - "default" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--status--warning--200", - "attributes": { - "category": "global", + "value": "{global.color.status.warning.200}" + }, + "name": "pf-t--global--text--color--status--warning--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "default" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "warning", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "warning", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { + "type": "color", + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--warning--hover": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{global.color.status.warning.300}" - }, - "name": "pf-t--global--text--color--status--warning--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "warning", - "hover" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--global--color--status--warning--300", - "attributes": { - "category": "global", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--text--color--status--warning--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "hover" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "warning", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "warning", - "300" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--warning--clicked": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{global.color.status.warning.300}" - }, - "name": "pf-t--global--text--color--status--warning--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "warning", - "clicked" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--global--color--status--warning--300", - "attributes": { - "category": "global", + "value": "{global.color.status.warning.300}" + }, + "name": "pf-t--global--text--color--status--warning--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "warning", + "clicked" + ], + "references": [ + { "type": "color", - "item": "status", - "subitem": "warning", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "warning", - "300" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { + "type": "color", + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-warning--default": { - "description": "Use as the default color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that is placed on a warning background color, like in banners.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--status--on-warning--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-warning", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a warning background color, like in banners.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--status--on-warning--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "default" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-warning--hover": { - "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--status--on-warning--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-warning", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a warning background color, like in banners.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--status--on-warning--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "hover" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-warning--clicked": { - "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--status--on-warning--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-warning" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-warning", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a warning background color, like in banners.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--status--on-warning--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-warning" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-warning", + "clicked" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--danger--default": { - "description": "Use as the default color for text that communicates a danger status.", - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that communicates a danger status.", "type": "color", - "value": "{global.color.status.danger.default}" - }, - "name": "pf-t--global--text--color--status--danger--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "danger", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates a danger status.", "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.default}" + }, + "name": "pf-t--global--text--color--status--danger--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "{global.color.status.danger.100}" - }, - "name": "pf-t--global--color--status--danger--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "danger", - "default" - ], - "references": [ - { + "value": "#b1380b", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating a critical warning or error, like a danger status for alert, progress, select.", "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--status--danger--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "danger", - "100" - ], - "references": [ - { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.100}" + }, + "name": "pf-t--global--color--status--danger--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "danger", + "default" + ], + "references": [ + { + "type": "color", + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] - } - ] - } - ] + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--danger--hover": { - "description": "Use as the hover state color for text that communicates a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that communicates a danger status.", "type": "color", - "value": "{global.color.status.danger.hover}" - }, - "name": "pf-t--global--text--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys a danger status.", + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates a danger status.", "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.hover}" + }, + "name": "pf-t--global--text--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "danger", - "hover" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys a danger status.", "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "danger", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - } - ] + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--danger--clicked": { - "description": "Use as the clicked state color for text that communicates a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that communicates a danger status.", "type": "color", - "value": "{global.color.status.danger.clicked}" - }, - "name": "pf-t--global--text--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys a danger status.", - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates a danger status.", + "type": "color", + "value": "{global.color.status.danger.clicked}" + }, + "name": "pf-t--global--text--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "{global.color.status.danger.200}" - }, - "name": "pf-t--global--color--status--danger--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "danger", - "clicked" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys a danger status.", "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.danger.200}" + }, + "name": "pf-t--global--color--status--danger--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "danger", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] - } - ] - } - ] + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-danger--default": { - "description": "Use as the default color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that is placed on a danger background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-danger--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-danger", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a danger background color, like in banners.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-danger--hover": { - "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-danger--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-danger", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a danger background color, like in banners.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-danger--clicked": { - "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", "type": "color", - "value": "{global.icon.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-danger--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-danger" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-danger", - "clicked" - ], - "references": [ - { - "description": "Use as the color for icons that are placed on an inverse background color", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a danger background color, like in banners.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.icon.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-danger--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-danger" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-danger", + "clicked" + ], + "references": [ + { "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "{global.icon.color.300}" - }, - "name": "pf-t--global--icon--color--inverse", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "icon", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color for icons that are placed on an inverse background color", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.icon.color.300}" + }, + "name": "pf-t--global--icon--color--inverse", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "icon", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--info--default": { - "description": "Use as the default color for text that communicates am info status.", - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that communicates am info status.", "type": "color", - "value": "{global.color.status.info.default}" - }, - "name": "pf-t--global--text--color--status--info--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "text", - "color", - "status", - "info", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates am info status.", "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.default}" + }, + "name": "pf-t--global--text--color--status--info--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "default" + ], + "references": [ + { "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", - "value": "{global.color.status.info.100}" - }, - "name": "pf-t--global--color--status--info--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "info", - "default" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element communicating information, like an info status for alert, progress, select.", "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--color--status--info--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "info", - "100" - ], - "references": [ - { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.100}" + }, + "name": "pf-t--global--color--status--info--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "info", + "default" + ], + "references": [ + { + "type": "color", + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] - } - ] + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--info--hover": { - "description": "Use as the hover state color for text that communicates an infostatus.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that communicates an infostatus.", "type": "color", - "value": "{global.color.status.info.hover}" - }, - "name": "pf-t--global--text--color--status--info--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "text", - "color", - "status", - "info", - "hover" - ], - "references": [ - { - "description": "Use as the hover state for any element that conveys an info status.", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates an infostatus.", "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.hover}" + }, + "name": "pf-t--global--text--color--status--info--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "hover" + ], + "references": [ + { "description": "Use as the hover state for any element that conveys an info status.", "type": "color", - "value": "{global.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "info", - "hover" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state for any element that conveys an info status.", "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "info", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - } - ] + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--info--clicked": { - "description": "Use as the clicked state color for text that communicates an info status.", - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that communicates an info status.", "type": "color", - "value": "{global.color.status.info.clicked}" - }, - "name": "pf-t--global--text--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "info" - }, - "path": [ - "global", - "text", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state for any element that conveys an info status.", + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates an info status.", "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.clicked}" + }, + "name": "pf-t--global--text--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "info" + }, + "path": [ + "global", + "text", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", - "value": "{global.color.status.info.200}" - }, - "name": "pf-t--global--color--status--info--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "info", - "clicked" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state for any element that conveys an info status.", "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.info.200}" + }, + "name": "pf-t--global--color--status--info--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "info", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] - } - ] + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-info--default": { - "description": "Use as the default color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that is placed on an info background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-info--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-info", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on an info background color, like in banners.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-info--hover": { - "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-info--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-info", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on an info background color, like in banners.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-info--clicked": { - "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-info--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-info" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-info", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on an info background color, like in banners.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-info--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-info" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-info", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--custom--default": { - "description": "Use as the default color for text that communicates a custom status.", - "type": "color", - "value": "#147878", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that communicates a custom status.", "type": "color", - "value": "{global.color.status.custom.default}" - }, - "name": "pf-t--global--text--color--status--custom--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "custom", - "default" - ], - "references": [ - { - "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that communicates a custom status.", "type": "color", - "value": "#147878", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.default}" + }, + "name": "pf-t--global--text--color--status--custom--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "default" + ], + "references": [ + { "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.color.status.custom.100}" - }, - "name": "pf-t--global--color--status--custom--default", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "default" - }, - "path": [ - "global", - "color", - "status", - "custom", - "default" - ], - "references": [ - { + "value": "#147878", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#147878", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--global--color--status--custom--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "custom", - "100" - ], - "references": [ - { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.100}" + }, + "name": "pf-t--global--color--status--custom--default", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "default" + }, + "path": [ + "global", + "color", + "status", + "custom", + "default" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - } - ] - } - ] + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--custom--hover": { - "description": "Use as the hover state color for text that communicates a custom status.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that communicates a custom status.", "type": "color", - "value": "{global.color.status.custom.hover}" - }, - "name": "pf-t--global--text--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { - "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that communicates a custom status.", "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.hover}" + }, + "name": "pf-t--global--text--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--hover", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "hover" - }, - "path": [ - "global", - "color", - "status", - "custom", - "hover" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use this color as the hover state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--hover", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "hover" + }, + "path": [ + "global", + "color", + "status", + "custom", + "hover" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - } - ] + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--custom--clicked": { - "description": "Use as the clicked state color for text that communicates a custom status.", - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that communicates a custom status.", "type": "color", - "value": "{global.color.status.custom.clicked}" - }, - "name": "pf-t--global--text--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { - "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that communicates a custom status.", "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.clicked}" + }, + "name": "pf-t--global--text--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "{global.color.status.custom.200}" - }, - "name": "pf-t--global--color--status--custom--clicked", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "clicked" - }, - "path": [ - "global", - "color", - "status", - "custom", - "clicked" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for any element that conveys a generic status with no associated severity. This color can be customized.", "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.color.status.custom.200}" + }, + "name": "pf-t--global--color--status--custom--clicked", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "clicked" + }, + "path": [ + "global", + "color", + "status", + "custom", + "clicked" + ], + "references": [ + { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] - } - ] + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-custom--default": { - "description": "Use as the default color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that is placed on a custom background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-custom--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-custom", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a custom background color, like in banners.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-custom--hover": { - "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-custom--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-custom", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a custom background color, like in banners.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--on-custom--clicked": { - "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--on-custom--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "on-custom" - }, - "path": [ - "global", - "text", - "color", - "status", - "on-custom", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a custom background color, like in banners.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--on-custom--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "on-custom" + }, + "path": [ + "global", + "text", + "color", + "status", + "on-custom", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--unread--on-default--default": { - "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-default--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-default", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--unread--on-default--hover": { - "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-default--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-default", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--unread--on-default--clicked": { - "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-default--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-default", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status, like badges and stateful buttons.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-default--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-default", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--unread--on-attention--default": { - "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-attention--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-attention", - "default" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "default" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--unread--on-attention--hover": { - "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-attention--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-attention", - "hover" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "hover" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--status--unread--on-attention--clicked": { - "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "{global.text.color.inverse}" - }, - "name": "pf-t--global--text--color--status--unread--on-attention--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "status", - "state": "unread" - }, - "path": [ - "global", - "text", - "color", - "status", - "unread", - "on-attention", - "clicked" - ], - "references": [ - { - "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed in elements that convey an unread status and require greater attention like badges and stateful buttons.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.inverse}" + }, + "name": "pf-t--global--text--color--status--unread--on-attention--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "status", + "state": "unread" + }, + "path": [ + "global", + "text", + "color", + "status", + "unread", + "on-attention", + "clicked" + ], + "references": [ + { "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "{global.text.color.300}" - }, - "name": "pf-t--global--text--color--inverse", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "inverse" - }, - "path": [ - "global", - "text", - "color", - "inverse" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the color of text that is placed on an inverse background color, like tooltips.", "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.300}" + }, + "name": "pf-t--global--text--color--inverse", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "inverse" + }, + "path": [ + "global", + "text", + "color", + "inverse" + ], + "references": [ + { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] - } - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-red--default": { - "description": "Use as the default color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that is placed on a nonstatus red background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-red--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-red", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus red background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "default" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-red--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-red--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-red", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus red background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "hover" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-red--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-red--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-red" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-red", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus red background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-red--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-red" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-red", + "clicked" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-orangered--default": { - "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orangered--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orangered", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus orangered background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "default" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-orangered--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orangered--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orangered", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus orangered background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "hover" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-orangered--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orangered--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orangered" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orangered", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orangered background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orangered--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orangered" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orangered", + "clicked" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-orange--default": { - "description": "Use as the default color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that is placed on a nonstatus orange background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orange--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orange", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus orange background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "default" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-orange--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orange--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orange", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus orange background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "hover" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-orange--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-orange--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-orange" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-orange", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus orange background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-orange--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-orange" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-orange", + "clicked" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-yellow--default": { - "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-yellow--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-yellow", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus yellow background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "default" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-yellow--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-yellow--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-yellow", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus yellow background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "hover" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-yellow--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-yellow--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-yellow" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-yellow", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus yellow background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-yellow--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-yellow" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-yellow", + "clicked" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-green--default": { - "description": "Use as the default color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that is placed on a nonstatus green background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-green--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-green", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus green background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "default" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-green--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-green--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-green", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus green background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "hover" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-green--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-green--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-green" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-green", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus green background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-green--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-green" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-green", + "clicked" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-teal--default": { - "description": "Use as the default color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that is placed on a nonstatus teal background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-teal--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-teal", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus teal background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "default" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-teal--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-teal--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-teal", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus teal background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "hover" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-teal--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-teal--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-teal" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-teal", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus teal background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-teal--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-teal" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-teal", + "clicked" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-blue--default": { - "description": "Use as the default color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that is placed on a nonstatus blue background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-blue--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-blue", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus blue background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "default" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-blue--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-blue--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-blue", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus blue background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", - "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "hover" + ], + "references": [ + { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "type": "color", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-blue--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-blue--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-blue" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-blue", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus blue background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-blue--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-blue" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-blue", + "clicked" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-purple--default": { - "description": "Use as the default color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that is placed on a nonstatus purple background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-purple--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-purple", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus purple background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "default" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-purple--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-purple--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-purple", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus purple background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "hover" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-purple--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-purple--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-purple" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-purple", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus purple background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-purple--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-purple" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-purple", + "clicked" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-gray--default": { - "description": "Use as the default color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default color for text that is placed on a nonstatus gray background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-gray--default", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-gray", - "default" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the default color for text that is placed on a nonstatus gray background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--default", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "default" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-gray--hover": { - "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-gray--hover", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-gray", - "hover" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the hover state color for text that is placed on a nonstatus gray background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--hover", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "hover" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--text--color--nonstatus--on-gray--clicked": { - "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", - "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", "type": "color", - "value": "{global.text.color.regular}" - }, - "name": "pf-t--global--text--color--nonstatus--on-gray--clicked", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "nonstatus", - "state": "on-gray" - }, - "path": [ - "global", - "text", - "color", - "nonstatus", - "on-gray", - "clicked" - ], - "references": [ - { - "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the clicked state color for text that is placed on a nonstatus gray background color.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/semantic.json", - "isSource": true, - "original": { + "value": "{global.text.color.regular}" + }, + "name": "pf-t--global--text--color--nonstatus--on-gray--clicked", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "nonstatus", + "state": "on-gray" + }, + "path": [ + "global", + "text", + "color", + "nonstatus", + "on-gray", + "clicked" + ], + "references": [ + { "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "{global.text.color.100}" - }, - "name": "pf-t--global--text--color--regular", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "regular" - }, - "path": [ - "global", - "text", - "color", - "regular" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/semantic.json", + "isSource": true, + "original": { + "description": "Use as the primary color for standard text, like heading/body copy. Icons paired with regular text should inherit this color or should use global/icon/color/regular.", "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{global.text.color.100}" + }, + "name": "pf-t--global--text--color--regular", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "regular" + }, + "path": [ + "global", + "text", + "color", + "regular" + ], + "references": [ + { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] - } - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } + ] + } + ] + } } }, "dimension": { "pf-t--global--spacer--xs": { - "description": "Use for extra small spaces between elements.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra small spaces between elements.", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] + "value": "0.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } }, "pf-t--global--spacer--sm": { - "description": "Use for small spaces between elements.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for small spaces between elements.", "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } }, "pf-t--global--spacer--md": { - "description": "Use for medium-sized spaces between elements.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } }, "pf-t--global--spacer--lg": { - "description": "Use for large spaces between elements.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for large spaces between elements.", "type": "number", - "value": "{global.spacer.400}" - }, - "name": "pf-t--global--spacer--lg", - "attributes": { - "category": "global", - "type": "spacer", - "item": "lg" - }, - "path": [ - "global", - "spacer", - "lg" - ], - "references": [ - { + "value": "1.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for large spaces between elements.", "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - } - ] + "value": "1.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } }, "pf-t--global--spacer--xl": { - "description": "Use for extra large spaces between elements.", - "type": "number", - "value": "2rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for extra large spaces between elements.", "type": "number", - "value": "{global.spacer.500}" - }, - "name": "pf-t--global--spacer--xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xl" - }, - "path": [ - "global", - "spacer", - "xl" - ], - "references": [ - { + "value": "2rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra large spaces between elements.", "type": "number", - "value": "2rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.500}" + }, + "name": "pf-t--global--spacer--xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xl" + }, + "path": [ + "global", + "spacer", + "xl" + ], + "references": [ + { "type": "number", - "value": 32 - }, - "name": "pf-t--global--spacer--500", - "attributes": { - "category": "global", - "type": "spacer", - "item": "500" - }, - "path": [ - "global", - "spacer", - "500" - ] - } - ] + "value": "2rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + } + ] + } }, "pf-t--global--spacer--2xl": { - "description": "Use for double extra large spaces spacing between elements.", - "type": "number", - "value": "3rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for double extra large spaces spacing between elements.", "type": "number", - "value": "{global.spacer.600}" - }, - "name": "pf-t--global--spacer--2xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "2xl" - }, - "path": [ - "global", - "spacer", - "2xl" - ], - "references": [ - { + "value": "3rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for double extra large spaces spacing between elements.", "type": "number", - "value": "3rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.600}" + }, + "name": "pf-t--global--spacer--2xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "2xl" + }, + "path": [ + "global", + "spacer", + "2xl" + ], + "references": [ + { "type": "number", - "value": 48 - }, - "name": "pf-t--global--spacer--600", - "attributes": { - "category": "global", - "type": "spacer", - "item": "600" - }, - "path": [ - "global", - "spacer", - "600" - ] - } - ] + "value": "3rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + } + ] + } }, "pf-t--global--spacer--3xl": { - "description": "Use for triple extra large spaces between elements.", - "type": "number", - "value": "4rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for triple extra large spaces between elements.", "type": "number", - "value": "{global.spacer.700}" - }, - "name": "pf-t--global--spacer--3xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "3xl" - }, - "path": [ - "global", - "spacer", - "3xl" - ], - "references": [ - { + "value": "4rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for triple extra large spaces between elements.", "type": "number", - "value": "4rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.700}" + }, + "name": "pf-t--global--spacer--3xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "3xl" + }, + "path": [ + "global", + "spacer", + "3xl" + ], + "references": [ + { "type": "number", - "value": 64 - }, - "name": "pf-t--global--spacer--700", - "attributes": { - "category": "global", - "type": "spacer", - "item": "700" - }, - "path": [ - "global", - "spacer", - "700" - ] - } - ] + "value": "4rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 64 + }, + "name": "pf-t--global--spacer--700", + "attributes": { + "category": "global", + "type": "spacer", + "item": "700" + }, + "path": [ + "global", + "spacer", + "700" + ] + } + ] + } }, "pf-t--global--spacer--4xl": { - "description": "Use for quadruple extra large spaces between elements.", - "type": "number", - "value": "5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for quadruple extra large spaces between elements.", "type": "number", - "value": "{global.spacer.800}" - }, - "name": "pf-t--global--spacer--4xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "4xl" - }, - "path": [ - "global", - "spacer", - "4xl" - ], - "references": [ - { + "value": "5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for quadruple extra large spaces between elements.", "type": "number", - "value": "5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.800}" + }, + "name": "pf-t--global--spacer--4xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "4xl" + }, + "path": [ + "global", + "spacer", + "4xl" + ], + "references": [ + { "type": "number", - "value": 80 - }, - "name": "pf-t--global--spacer--800", - "attributes": { - "category": "global", - "type": "spacer", - "item": "800" - }, - "path": [ - "global", - "spacer", - "800" - ] - } - ] + "value": "5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 80 + }, + "name": "pf-t--global--spacer--800", + "attributes": { + "category": "global", + "type": "spacer", + "item": "800" + }, + "path": [ + "global", + "spacer", + "800" + ] + } + ] + } }, "pf-t--global--spacer--control--vertical--default": { - "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--control--vertical--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "vertical", - "state": "default" - }, - "path": [ - "global", - "spacer", - "control", - "vertical", - "default" - ], - "references": [ - { - "description": "Use for small spaces between elements.", + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the vertical padding inside of controls. This is used across buttons, text inputs, menu toggles, etc.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--vertical--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "default" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "default" + ], + "references": [ + { "description": "Use for small spaces between elements.", "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--control--vertical--compact": { - "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "{global.spacer.xs}" - }, - "name": "pf-t--global--spacer--control--vertical--compact", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "vertical", - "state": "compact" - }, - "path": [ - "global", - "spacer", - "control", - "vertical", - "compact" - ], - "references": [ - { - "description": "Use for extra small spaces between elements.", + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the vertical padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--control--vertical--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "compact" + ], + "references": [ + { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra small spaces between elements.", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - } - ] + "value": "0.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--control--vertical--plain": { - "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--control--vertical--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "vertical", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "control", - "vertical", - "plain" - ], - "references": [ - { - "description": "Use for small spaces between elements.", + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the vertical padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--vertical--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "vertical", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "control", + "vertical", + "plain" + ], + "references": [ + { "description": "Use for small spaces between elements.", "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--control--horizontal--default": { - "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--control--horizontal--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "horizontal", - "state": "default" - }, - "path": [ - "global", - "spacer", - "control", - "horizontal", - "default" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding inside of controls, like text inputs and menu toggles.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--control--horizontal--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "default" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "default" + ], + "references": [ + { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--control--horizontal--plain": { - "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--control--horizontal--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "horizontal", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "control", - "horizontal", - "plain" - ], - "references": [ - { - "description": "Use for small spaces between elements.", + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding inside of plain controls, like in plain menu toggles.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--horizontal--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "plain" + ], + "references": [ + { "description": "Use for small spaces between elements.", "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--control--horizontal--compact": { - "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--control--horizontal--compact", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "horizontal", - "state": "compact" - }, - "path": [ - "global", - "spacer", - "control", - "horizontal", - "compact" - ], - "references": [ - { - "description": "Use for small spaces between elements.", + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding inside of compact controls. This is used across text inputs, menu toggles, control buttons etc.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--control--horizontal--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "compact" + ], + "references": [ + { "description": "Use for small spaces between elements.", "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--control--horizontal--spacious": { - "description": "Use to set the horizontal padding in large/display controls.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the horizontal padding in large/display controls.", "type": "number", - "value": "{global.spacer.lg}" - }, - "name": "pf-t--global--spacer--control--horizontal--spacious", - "attributes": { - "category": "global", - "type": "spacer", - "item": "control", - "subitem": "horizontal", - "state": "spacious" - }, - "path": [ - "global", - "spacer", - "control", - "horizontal", - "spacious" - ], - "references": [ - { - "description": "Use for large spaces between elements.", + "value": "1.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding in large/display controls.", "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--control--horizontal--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "control", + "subitem": "horizontal", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "control", + "horizontal", + "spacious" + ], + "references": [ + { "description": "Use for large spaces between elements.", "type": "number", - "value": "{global.spacer.400}" - }, - "name": "pf-t--global--spacer--lg", - "attributes": { - "category": "global", - "type": "spacer", - "item": "lg" - }, - "path": [ - "global", - "spacer", - "lg" - ], - "references": [ - { + "value": "1.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for large spaces between elements.", "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - } - ] - } - ] + "value": "1.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--gap--text-to-element--default": { - "description": "Use to space an element, like an icon or badge, inline with text", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to space an element, like an icon or badge, inline with text", "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--gap--text-to-element--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "text-to-element", - "state": "default" - }, - "path": [ - "global", - "spacer", - "gap", - "text-to-element", - "default" - ], - "references": [ - { - "description": "Use for small spaces between elements.", + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to space an element, like an icon or badge, inline with text", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--gap--text-to-element--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "text-to-element", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "text-to-element", + "default" + ], + "references": [ + { "description": "Use for small spaces between elements.", "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--gap--control-to-control--default": { - "description": "Use to set the space between controls, like in input groups or filter groups", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the space between controls, like in input groups or filter groups", "type": "number", - "value": "{global.spacer.xs}" - }, - "name": "pf-t--global--spacer--gap--control-to-control--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "control-to-control", - "state": "default" - }, - "path": [ - "global", - "spacer", - "gap", - "control-to-control", - "default" - ], - "references": [ - { - "description": "Use for extra small spaces between elements.", + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the space between controls, like in input groups or filter groups", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--gap--control-to-control--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "control-to-control", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "control-to-control", + "default" + ], + "references": [ + { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra small spaces between elements.", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - } - ] + "value": "0.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--gap--group--vertical": { - "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", "type": "number", - "value": "{global.spacer.sm}" - }, - "name": "pf-t--global--spacer--gap--group--vertical", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "group", - "state": "vertical" - }, - "path": [ - "global", - "spacer", - "gap", - "group", - "vertical" - ], - "references": [ - { - "description": "Use for small spaces between elements.", + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the vertical space between items in a group, like a field label, form input, and helper text placed in a vertical/stacked layout", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.sm}" + }, + "name": "pf-t--global--spacer--gap--group--vertical", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group", + "state": "vertical" + }, + "path": [ + "global", + "spacer", + "gap", + "group", + "vertical" + ], + "references": [ + { "description": "Use for small spaces between elements.", "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--gap--group--horizontal": { - "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--gap--group--horizontal", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "group", - "state": "horizontal" - }, - "path": [ - "global", - "spacer", - "gap", - "group", - "horizontal" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal space between items in a group, like a field label and form input placed in a horizontal layout.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--gap--group--horizontal", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group", + "state": "horizontal" + }, + "path": [ + "global", + "spacer", + "gap", + "group", + "horizontal" + ], + "references": [ + { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--gap--group-to-group--horizontal": { - "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", - "type": "number", - "value": "3rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", "type": "number", - "value": "{global.spacer.2xl}" - }, - "name": "pf-t--global--spacer--gap--group-to-group--horizontal", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "group-to-group", - "state": "horizontal" - }, - "path": [ - "global", - "spacer", - "gap", - "group-to-group", - "horizontal" - ], - "references": [ - { - "description": "Use for double extra large spaces spacing between elements.", + "value": "3rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal space between groups of elements, like between multiple action groups or forms groups placed in a horizontal layout.", "type": "number", - "value": "3rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.2xl}" + }, + "name": "pf-t--global--spacer--gap--group-to-group--horizontal", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group-to-group", + "state": "horizontal" + }, + "path": [ + "global", + "spacer", + "gap", + "group-to-group", + "horizontal" + ], + "references": [ + { "description": "Use for double extra large spaces spacing between elements.", "type": "number", - "value": "{global.spacer.600}" - }, - "name": "pf-t--global--spacer--2xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "2xl" - }, - "path": [ - "global", - "spacer", - "2xl" - ], - "references": [ - { + "value": "3rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for double extra large spaces spacing between elements.", "type": "number", - "value": "3rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.600}" + }, + "name": "pf-t--global--spacer--2xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "2xl" + }, + "path": [ + "global", + "spacer", + "2xl" + ], + "references": [ + { "type": "number", - "value": 48 - }, - "name": "pf-t--global--spacer--600", - "attributes": { - "category": "global", - "type": "spacer", - "item": "600" - }, - "path": [ - "global", - "spacer", - "600" - ] - } - ] - } - ] + "value": "3rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--gap--group-to-group--vertical": { - "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", "type": "number", - "value": "{global.spacer.lg}" - }, - "name": "pf-t--global--spacer--gap--group-to-group--vertical", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "group-to-group", - "state": "vertical" - }, - "path": [ - "global", - "spacer", - "gap", - "group-to-group", - "vertical" - ], - "references": [ - { - "description": "Use for large spaces between elements.", + "value": "1.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the vertical space between groups of elements, like between stacked form groups.", "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--gap--group-to-group--vertical", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "group-to-group", + "state": "vertical" + }, + "path": [ + "global", + "spacer", + "gap", + "group-to-group", + "vertical" + ], + "references": [ + { "description": "Use for large spaces between elements.", "type": "number", - "value": "{global.spacer.400}" - }, - "name": "pf-t--global--spacer--lg", - "attributes": { - "category": "global", - "type": "spacer", - "item": "lg" - }, - "path": [ - "global", - "spacer", - "lg" - ], - "references": [ - { + "value": "1.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for large spaces between elements.", "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - } - ] - } - ] + "value": "1.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--gap--action-to-action--default": { - "description": "Use to set the space between actions, like in an action list group.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the space between actions, like in an action list group.", "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--gap--action-to-action--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "action-to-action", - "state": "default" - }, - "path": [ - "global", - "spacer", - "gap", - "action-to-action", - "default" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the space between actions, like in an action list group.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--gap--action-to-action--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "action-to-action", + "state": "default" + }, + "path": [ + "global", + "spacer", + "gap", + "action-to-action", + "default" + ], + "references": [ + { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--gap--action-to-action--plain": { - "description": "Use to set the space between plain actions, like in an action list group.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the space between plain actions, like in an action list group.", "type": "number", - "value": "{global.spacer.xs}" - }, - "name": "pf-t--global--spacer--gap--action-to-action--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "gap", - "subitem": "action-to-action", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "gap", - "action-to-action", - "plain" - ], - "references": [ - { - "description": "Use for extra small spaces between elements.", + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the space between plain actions, like in an action list group.", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--gap--action-to-action--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "gap", + "subitem": "action-to-action", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "gap", + "action-to-action", + "plain" + ], + "references": [ + { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra small spaces between elements.", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - } - ] + "value": "0.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--action--horizontal--default": { - "description": "Use to set the horizontal padding inside a default action, like buttons.", - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the horizontal padding inside a default action, like buttons.", "type": "number", - "value": "{global.spacer.lg}" - }, - "name": "pf-t--global--spacer--action--horizontal--default", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "horizontal", - "state": "default" - }, - "path": [ - "global", - "spacer", - "action", - "horizontal", - "default" - ], - "references": [ - { - "description": "Use for large spaces between elements.", + "value": "1.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding inside a default action, like buttons.", "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.lg}" + }, + "name": "pf-t--global--spacer--action--horizontal--default", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "default" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "default" + ], + "references": [ + { "description": "Use for large spaces between elements.", "type": "number", - "value": "{global.spacer.400}" - }, - "name": "pf-t--global--spacer--lg", - "attributes": { - "category": "global", - "type": "spacer", - "item": "lg" - }, - "path": [ - "global", - "spacer", - "lg" - ], - "references": [ - { + "value": "1.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for large spaces between elements.", "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.400}" + }, + "name": "pf-t--global--spacer--lg", + "attributes": { + "category": "global", + "type": "spacer", + "item": "lg" + }, + "path": [ + "global", + "spacer", + "lg" + ], + "references": [ + { "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] - } - ] - } - ] + "value": "1.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--action--horizontal--plain": { - "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", - "type": "number", - "value": "0.5rem", - "compact": { - "description": "Use to set the horizontal padding inside a compact, plain action/button.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true - }, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", "type": "number", - "value": "{global.spacer.sm}", + "value": "0.5rem", "compact": { "description": "Use to set the horizontal padding inside a compact, plain action/button.", "type": "number", - "value": "{global.spacer.xs}", + "value": "0.25rem", "filePath": "tokens/default/semantic.dimension.json", "isSource": true - } - }, - "name": "pf-t--global--spacer--action--horizontal--plain", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "horizontal", - "state": "plain" - }, - "path": [ - "global", - "spacer", - "action", - "horizontal", - "plain" - ], - "references": [ - { - "description": "Use for small spaces between elements.", + }, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding inside a plain action, like plain buttons.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.sm}", + "compact": { + "description": "Use to set the horizontal padding inside a compact, plain action/button.", + "type": "number", + "value": "{global.spacer.xs}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true + } + }, + "name": "pf-t--global--spacer--action--horizontal--plain", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "plain" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "plain" + ], + "references": [ + { "description": "Use for small spaces between elements.", "type": "number", - "value": "{global.spacer.200}" - }, - "name": "pf-t--global--spacer--sm", - "attributes": { - "category": "global", - "type": "spacer", - "item": "sm" - }, - "path": [ - "global", - "spacer", - "sm" - ], - "references": [ - { + "value": "0.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small spaces between elements.", "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.200}" + }, + "name": "pf-t--global--spacer--sm", + "attributes": { + "category": "global", + "type": "spacer", + "item": "sm" + }, + "path": [ + "global", + "spacer", + "sm" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] - } - ] - } - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--action--horizontal--compact": { - "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--action--horizontal--compact", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "horizontal", - "state": "compact" - }, - "path": [ - "global", - "spacer", - "action", - "horizontal", - "compact" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding inside a compact action, like compact buttons.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--action--horizontal--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "compact" + ], + "references": [ + { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--action--horizontal--spacious": { - "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", - "type": "number", - "value": "2rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", "type": "number", - "value": "{global.spacer.xl}" - }, - "name": "pf-t--global--spacer--action--horizontal--spacious", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "horizontal", - "state": "spacious" - }, - "path": [ - "global", - "spacer", - "action", - "horizontal", - "spacious" - ], - "references": [ - { - "description": "Use for extra large spaces between elements.", + "value": "2rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the horizontal padding inside a large/display action, like CTAs.", "type": "number", - "value": "2rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.xl}" + }, + "name": "pf-t--global--spacer--action--horizontal--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "horizontal", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "action", + "horizontal", + "spacious" + ], + "references": [ + { "description": "Use for extra large spaces between elements.", "type": "number", - "value": "{global.spacer.500}" - }, - "name": "pf-t--global--spacer--xl", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xl" - }, - "path": [ - "global", - "spacer", - "xl" - ], - "references": [ - { + "value": "2rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra large spaces between elements.", "type": "number", - "value": "2rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.500}" + }, + "name": "pf-t--global--spacer--xl", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xl" + }, + "path": [ + "global", + "spacer", + "xl" + ], + "references": [ + { "type": "number", - "value": 32 - }, - "name": "pf-t--global--spacer--500", - "attributes": { - "category": "global", - "type": "spacer", - "item": "500" - }, - "path": [ - "global", - "spacer", - "500" - ] - } - ] - } - ] + "value": "2rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--action--vertical--compact": { - "description": "Use to set the vertical padding inside a compact action, like compact buttons.", - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the vertical padding inside a compact action, like compact buttons.", "type": "number", - "value": "{global.spacer.xs}" - }, - "name": "pf-t--global--spacer--action--vertical--compact", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "vertical", - "state": "compact" - }, - "path": [ - "global", - "spacer", - "action", - "vertical", - "compact" - ], - "references": [ - { - "description": "Use for extra small spaces between elements.", + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the vertical padding inside a compact action, like compact buttons.", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.xs}" + }, + "name": "pf-t--global--spacer--action--vertical--compact", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "vertical", + "state": "compact" + }, + "path": [ + "global", + "spacer", + "action", + "vertical", + "compact" + ], + "references": [ + { "description": "Use for extra small spaces between elements.", "type": "number", - "value": "{global.spacer.100}" - }, - "name": "pf-t--global--spacer--xs", - "attributes": { - "category": "global", - "type": "spacer", - "item": "xs" - }, - "path": [ - "global", - "spacer", - "xs" - ], - "references": [ - { + "value": "0.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra small spaces between elements.", "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.100}" + }, + "name": "pf-t--global--spacer--xs", + "attributes": { + "category": "global", + "type": "spacer", + "item": "xs" + }, + "path": [ + "global", + "spacer", + "xs" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] - } - ] - } - ] + "value": "0.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } + ] + } + ] + } }, "pf-t--global--spacer--action--vertical--spacious": { - "description": "Use to set the vertical padding inside a large/display action, like CTAs.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to set the vertical padding inside a large/display action, like CTAs.", "type": "number", - "value": "{global.spacer.md}" - }, - "name": "pf-t--global--spacer--action--vertical--spacious", - "attributes": { - "category": "global", - "type": "spacer", - "item": "action", - "subitem": "vertical", - "state": "spacious" - }, - "path": [ - "global", - "spacer", - "action", - "vertical", - "spacious" - ], - "references": [ - { - "description": "Use for medium-sized spaces between elements.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to set the vertical padding inside a large/display action, like CTAs.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.md}" + }, + "name": "pf-t--global--spacer--action--vertical--spacious", + "attributes": { + "category": "global", + "type": "spacer", + "item": "action", + "subitem": "vertical", + "state": "spacious" + }, + "path": [ + "global", + "spacer", + "action", + "vertical", + "spacious" + ], + "references": [ + { "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "{global.spacer.300}" - }, - "name": "pf-t--global--spacer--md", - "attributes": { - "category": "global", - "type": "spacer", - "item": "md" - }, - "path": [ - "global", - "spacer", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for medium-sized spaces between elements.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.spacer.300}" + }, + "name": "pf-t--global--spacer--md", + "attributes": { + "category": "global", + "type": "spacer", + "item": "md" + }, + "path": [ + "global", + "spacer", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--sm": { - "description": "Use for small icons.", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for small icons.", "type": "number", - "value": "{global.icon.size.100}" - }, - "name": "pf-t--global--icon--size--sm", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "icon", - "size", - "sm" - ], - "references": [ - { + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for small icons.", "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.icon.size.100}" + }, + "name": "pf-t--global--icon--size--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "icon", + "size", + "sm" + ], + "references": [ + { "type": "number", - "value": 12 - }, - "name": "pf-t--global--icon--size--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "size", - "100" - ] - } - ] + "value": "0.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--icon--size--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "size", + "100" + ] + } + ] + } }, "pf-t--global--icon--size--md": { - "description": "Use for medium icons.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for medium icons.", "type": "number", - "value": "{global.icon.size.200}" - }, - "name": "pf-t--global--icon--size--md", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "icon", - "size", - "md" - ], - "references": [ - { + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for medium icons.", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.icon.size.200}" + }, + "name": "pf-t--global--icon--size--md", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "icon", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 14 - }, - "name": "pf-t--global--icon--size--200", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "icon", - "size", - "200" - ] - } - ] + "value": "0.875rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--icon--size--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "size", + "200" + ] + } + ] + } }, "pf-t--global--icon--size--lg": { - "description": "Use for large icons.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for large icons.", "type": "number", - "value": "{global.icon.size.250}" - }, - "name": "pf-t--global--icon--size--lg", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "icon", - "size", - "lg" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for large icons.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.icon.size.250}" + }, + "name": "pf-t--global--icon--size--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "icon", + "size", + "lg" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--icon--size--250", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "250" - }, - "path": [ - "global", - "icon", - "size", - "250" - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--icon--size--250", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "250" + }, + "path": [ + "global", + "icon", + "size", + "250" + ] + } + ] + } }, "pf-t--global--icon--size--xl": { - "description": "Use for extra large icons.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for extra large icons.", "type": "number", - "value": "{global.icon.size.300}" - }, - "name": "pf-t--global--icon--size--xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "icon", - "size", - "xl" - ], - "references": [ - { + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for extra large icons.", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.icon.size.300}" + }, + "name": "pf-t--global--icon--size--xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "icon", + "size", + "xl" + ], + "references": [ + { "type": "number", - "value": 22 - }, - "name": "pf-t--global--icon--size--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "size", - "300" - ] - } - ] + "value": "1.375rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--icon--size--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "size", + "300" + ] + } + ] + } }, "pf-t--global--icon--size--2xl": { - "description": "Use for double extra large icons.", - "type": "number", - "value": "3.5rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for double extra large icons.", "type": "number", - "value": "{global.icon.size.400}" - }, - "name": "pf-t--global--icon--size--2xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "icon", - "size", - "2xl" - ], - "references": [ - { + "value": "3.5rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for double extra large icons.", "type": "number", - "value": "3.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.icon.size.400}" + }, + "name": "pf-t--global--icon--size--2xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "icon", + "size", + "2xl" + ], + "references": [ + { "type": "number", - "value": 56 - }, - "name": "pf-t--global--icon--size--400", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "icon", - "size", - "400" - ] - } - ] + "value": "3.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 56 + }, + "name": "pf-t--global--icon--size--400", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "icon", + "size", + "400" + ] + } + ] + } }, "pf-t--global--icon--size--3xl": { - "description": "Use for triple extra large icons.", - "type": "number", - "value": "6rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for triple extra large icons.", "type": "number", - "value": "{global.icon.size.500}" - }, - "name": "pf-t--global--icon--size--3xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "3xl" - }, - "path": [ - "global", - "icon", - "size", - "3xl" - ], - "references": [ - { + "value": "6rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for triple extra large icons.", "type": "number", - "value": "6rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.icon.size.500}" + }, + "name": "pf-t--global--icon--size--3xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "icon", + "size", + "3xl" + ], + "references": [ + { "type": "number", - "value": 96 - }, - "name": "pf-t--global--icon--size--500", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "icon", - "size", - "500" - ] - } - ] + "value": "6rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 96 + }, + "name": "pf-t--global--icon--size--500", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "icon", + "size", + "500" + ] + } + ] + } }, "pf-t--global--icon--size--font--heading--h1": { - "description": "Use for icons that are placed inline with first level headings", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for icons that are placed inline with first level headings", "type": "number", - "value": "{global.font.size.heading.h1}" - }, - "name": "pf-t--global--icon--size--font--heading--h1", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h1" - ], - "references": [ - { - "description": "Use as the font size for first level headings.", + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with first level headings", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.heading.h1}" + }, + "name": "pf-t--global--icon--size--font--heading--h1", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h1" + ], + "references": [ + { "description": "Use as the font size for first level headings.", "type": "number", - "value": "{global.font.size.2xl}" - }, - "name": "pf-t--global--font--size--heading--h1", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h1" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h1" - ], - "references": [ - { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for first level headings.", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--font--size--heading--h1", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h1" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h1" + ], + "references": [ + { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] - } - ] - } - ] + "value": "1.375rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--heading--h2": { - "description": "Use for icons that are placed inline with second level headings", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for icons that are placed inline with second level headings", "type": "number", - "value": "{global.font.size.heading.h2}" - }, - "name": "pf-t--global--icon--size--font--heading--h2", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h2" - ], - "references": [ - { - "description": "Use as the font size for second level headings.", + "value": "1.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with second level headings", "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.heading.h2}" + }, + "name": "pf-t--global--icon--size--font--heading--h2", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h2" + ], + "references": [ + { "description": "Use as the font size for second level headings.", "type": "number", - "value": "{global.font.size.xl}" - }, - "name": "pf-t--global--font--size--heading--h2", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h2" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h2" - ], - "references": [ - { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "value": "1.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for second level headings.", "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--font--size--heading--h2", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h2" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h2" + ], + "references": [ + { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.500}" - }, - "name": "pf-t--global--font--size--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "font", - "size", - "xl" - ], - "references": [ - { + "value": "1.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - } - ] - } - ] - } - ] + "value": "1.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--heading--h3": { - "description": "Use for icons that are placed inline with third level headings", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for icons that are placed inline with third level headings", "type": "number", - "value": "{global.font.size.heading.h3}" - }, - "name": "pf-t--global--icon--size--font--heading--h3", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h3" - ], - "references": [ - { - "description": "Use as the font size for third level headings.", + "value": "1.125rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with third level headings", "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.heading.h3}" + }, + "name": "pf-t--global--icon--size--font--heading--h3", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h3" + ], + "references": [ + { "description": "Use as the font size for third level headings.", "type": "number", - "value": "{global.font.size.lg}" - }, - "name": "pf-t--global--font--size--heading--h3", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h3" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h3" - ], - "references": [ - { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "value": "1.125rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for third level headings.", "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--font--size--heading--h3", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h3" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h3" + ], + "references": [ + { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.400}" - }, - "name": "pf-t--global--font--size--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "font", - "size", - "lg" - ], - "references": [ - { + "value": "1.125rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - } - ] - } - ] - } - ] + "value": "1.125rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--heading--h4": { - "description": "Use for icons that are placed inline with fourth level headings", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for icons that are placed inline with fourth level headings", "type": "number", - "value": "{global.font.size.heading.h4}" - }, - "name": "pf-t--global--icon--size--font--heading--h4", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h4" - ], - "references": [ - { - "description": "Use as the font size for fourth-level headings.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with fourth level headings", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.heading.h4}" + }, + "name": "pf-t--global--icon--size--font--heading--h4", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h4" + ], + "references": [ + { "description": "Use as the font size for fourth-level headings.", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h4", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h4" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h4" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for fourth-level headings.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h4", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h4" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h4" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--heading--h5": { - "description": "Use for icons that are placed inline with fifth level headings", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for icons that are placed inline with fifth level headings", "type": "number", - "value": "{global.font.size.heading.h5}" - }, - "name": "pf-t--global--icon--size--font--heading--h5", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h5" - ], - "references": [ - { - "description": "Use as the font size for fifth level headings.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with fifth level headings", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.heading.h5}" + }, + "name": "pf-t--global--icon--size--font--heading--h5", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h5" + ], + "references": [ + { "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h5", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h5" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h5" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h5", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h5" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h5" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--heading--h6": { - "description": "Use for icons that are placed inline with sixth level headings", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for icons that are placed inline with sixth level headings", "type": "number", - "value": "{global.font.size.heading.h6}" - }, - "name": "pf-t--global--icon--size--font--heading--h6", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "heading" - }, - "path": [ - "global", - "icon", - "size", - "font", - "heading", - "h6" - ], - "references": [ - { - "description": "Use as the font size for sixth level headings.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with sixth level headings", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.heading.h6}" + }, + "name": "pf-t--global--icon--size--font--heading--h6", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "heading" + }, + "path": [ + "global", + "icon", + "size", + "font", + "heading", + "h6" + ], + "references": [ + { "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h6", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h6" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h6" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h6", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h6" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h6" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--body--sm": { - "description": "Use for icons that are placed inline with small body text", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for icons that are placed inline with small body text", "type": "number", - "value": "{global.font.size.body.sm}" - }, - "name": "pf-t--global--icon--size--font--body--sm", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "body" - }, - "path": [ - "global", - "icon", - "size", - "font", - "body", - "sm" - ], - "references": [ - { - "description": "Use for a smaller font size in body sections.", + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with small body text", "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.body.sm}" + }, + "name": "pf-t--global--icon--size--font--body--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "sm" + ], + "references": [ + { "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "{global.font.size.xs}" - }, - "name": "pf-t--global--font--size--body--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "sm" - }, - "path": [ - "global", - "font", - "size", - "body", - "sm" - ], - "references": [ - { + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--font--size--body--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "sm" + }, + "path": [ + "global", + "font", + "size", + "body", + "sm" + ], + "references": [ + { "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] - } - ] - } - ] + "value": "0.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--body--default": { - "description": "Use for icons that are placed inline with default body text", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for icons that are placed inline with default body text", "type": "number", - "value": "{global.font.size.body.default}" - }, - "name": "pf-t--global--icon--size--font--body--default", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "body" - }, - "path": [ - "global", - "icon", - "size", - "font", - "body", - "default" - ], - "references": [ - { - "description": "Use as the default font size in body sections.", + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with default body text", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.body.default}" + }, + "name": "pf-t--global--icon--size--font--body--default", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "default" + ], + "references": [ + { "description": "Use as the default font size in body sections.", "type": "number", - "value": "{global.font.size.sm}" - }, - "name": "pf-t--global--font--size--body--default", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "default" - }, - "path": [ - "global", - "font", - "size", - "body", - "default" - ], - "references": [ - { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the default font size in body sections.", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--font--size--body--default", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "default" + }, + "path": [ + "global", + "font", + "size", + "body", + "default" + ], + "references": [ + { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] - } - ] - } - ] + "value": "0.875rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--body--lg": { - "description": "Use for icons that are placed inline with large body text", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for icons that are placed inline with large body text", "type": "number", - "value": "{global.font.size.body.lg}" - }, - "name": "pf-t--global--icon--size--font--body--lg", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "body" - }, - "path": [ - "global", - "icon", - "size", - "font", - "body", - "lg" - ], - "references": [ - { - "description": "Use for a larger font size in body sections.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with large body text", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.body.lg}" + }, + "name": "pf-t--global--icon--size--font--body--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "body" + }, + "path": [ + "global", + "icon", + "size", + "font", + "body", + "lg" + ], + "references": [ + { "description": "Use for a larger font size in body sections.", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--body--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "lg" - }, - "path": [ - "global", - "font", - "size", - "body", - "lg" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for a larger font size in body sections.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--body--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "lg" + }, + "path": [ + "global", + "font", + "size", + "body", + "lg" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--xs": { - "description": "Use for icons that are placed inline with font–size–xs text", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for icons that are placed inline with font–size–xs text", "type": "number", - "value": "{global.font.size.xs}" - }, - "name": "pf-t--global--icon--size--font--xs", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "xs" - }, - "path": [ - "global", - "icon", - "size", - "font", - "xs" - ], - "references": [ - { + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with font–size–xs text", "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--icon--size--font--xs", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "xs" + }, + "path": [ + "global", + "icon", + "size", + "font", + "xs" + ], + "references": [ + { "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] - } - ] + "value": "0.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--sm": { - "description": "Use for icons that are placed inline with font–size–sm text", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for icons that are placed inline with font–size–sm text", "type": "number", - "value": "{global.font.size.sm}" - }, - "name": "pf-t--global--icon--size--font--sm", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "sm" - }, - "path": [ - "global", - "icon", - "size", - "font", - "sm" - ], - "references": [ - { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with font–size–sm text", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--icon--size--font--sm", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "sm" + }, + "path": [ + "global", + "icon", + "size", + "font", + "sm" + ], + "references": [ + { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] - } - ] - }, - "pf-t--global--icon--size--font--md": { - "description": "Use for icons that are placed inline with font–size–md text", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "0.875rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + } + }, + "pf-t--global--icon--size--font--md": { + "default": { "description": "Use for icons that are placed inline with font–size–md text", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--icon--size--font--md", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "md" - }, - "path": [ - "global", - "icon", - "size", - "font", - "md" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with font–size–md text", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--icon--size--font--md", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "md" + }, + "path": [ + "global", + "icon", + "size", + "font", + "md" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--lg": { - "description": "Use for icons that are placed inline with font–size–lg text", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for icons that are placed inline with font–size–lg text", "type": "number", - "value": "{global.font.size.lg}" - }, - "name": "pf-t--global--icon--size--font--lg", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "lg" - }, - "path": [ - "global", - "icon", - "size", - "font", - "lg" - ], - "references": [ - { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "value": "1.125rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with font–size–lg text", "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--icon--size--font--lg", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "lg" + }, + "path": [ + "global", + "icon", + "size", + "font", + "lg" + ], + "references": [ + { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.400}" - }, - "name": "pf-t--global--font--size--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "font", - "size", - "lg" - ], - "references": [ - { + "value": "1.125rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - } - ] - } - ] + "value": "1.125rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--xl": { - "description": "Use for icons that are placed inline with font–size–xl text", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for icons that are placed inline with font–size–xl text", "type": "number", - "value": "{global.font.size.xl}" - }, - "name": "pf-t--global--icon--size--font--xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "xl" - }, - "path": [ - "global", - "icon", - "size", - "font", - "xl" - ], - "references": [ - { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "value": "1.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with font–size–xl text", "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--icon--size--font--xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "xl" + ], + "references": [ + { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.500}" - }, - "name": "pf-t--global--font--size--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "font", - "size", - "xl" - ], - "references": [ - { + "value": "1.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - } - ] - } - ] + "value": "1.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--2xl": { - "description": "Use for icons that are placed inline with font–size–2xl text", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for icons that are placed inline with font–size–2xl text", "type": "number", - "value": "{global.font.size.2xl}" - }, - "name": "pf-t--global--icon--size--font--2xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "2xl" - }, - "path": [ - "global", - "icon", - "size", - "font", - "2xl" - ], - "references": [ - { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with font–size–2xl text", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--icon--size--font--2xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "2xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "2xl" + ], + "references": [ + { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] - } - ] + "value": "1.375rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--3xl": { - "description": "Use for icons that are placed inline with font–size–3xl text", - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", - "value": "{global.font.size.3xl}" - }, - "name": "pf-t--global--icon--size--font--3xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "3xl" - }, - "path": [ - "global", - "icon", - "size", - "font", - "3xl" - ], - "references": [ - { - "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", + "value": "1.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.3xl}" + }, + "name": "pf-t--global--icon--size--font--3xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "3xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "3xl" + ], + "references": [ + { "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.700}" - }, - "name": "pf-t--global--font--size--3xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "3xl" - }, - "path": [ - "global", - "font", - "size", - "3xl" - ], - "references": [ - { + "value": "1.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.700}" + }, + "name": "pf-t--global--font--size--3xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "font", + "size", + "3xl" + ], + "references": [ + { "type": "number", - "value": 28 - }, - "name": "pf-t--global--font--size--700", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "700" - }, - "path": [ - "global", - "font", - "size", - "700" - ] - } - ] - } - ] + "value": "1.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + } + ] + } + ] + } }, "pf-t--global--icon--size--font--4xl": { - "description": "Use for icons that are placed inline with font–size–3xl text", - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", - "value": "{global.font.size.4xl}" - }, - "name": "pf-t--global--icon--size--font--4xl", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "font", - "state": "4xl" - }, - "path": [ - "global", - "icon", - "size", - "font", - "4xl" - ], - "references": [ - { - "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", + "value": "2.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for icons that are placed inline with font–size–3xl text", "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.4xl}" + }, + "name": "pf-t--global--icon--size--font--4xl", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "font", + "state": "4xl" + }, + "path": [ + "global", + "icon", + "size", + "font", + "4xl" + ], + "references": [ + { "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.800}" - }, - "name": "pf-t--global--font--size--4xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "4xl" - }, - "path": [ - "global", - "font", - "size", - "4xl" - ], - "references": [ - { + "value": "2.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.800}" + }, + "name": "pf-t--global--font--size--4xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "4xl" + }, + "path": [ + "global", + "font", + "size", + "4xl" + ], + "references": [ + { "type": "number", - "value": 36 - }, - "name": "pf-t--global--font--size--800", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "800" - }, - "path": [ - "global", - "font", - "size", - "800" - ] - } - ] - } - ] + "value": "2.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + } + ] + } + ] + } }, "pf-t--global--border--width--regular": { - "description": "Use as the default border width for elements.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border width for elements.", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--regular", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "regular" - }, - "path": [ - "global", - "border", - "width", - "regular" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the default border width for elements.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--regular", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "regular" + }, + "path": [ + "global", + "border", + "width", + "regular" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--divider--default": { - "description": "Use as the default border width for dividers.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border width for dividers.", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--divider--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "divider", - "state": "default" - }, - "path": [ - "global", - "border", - "width", - "divider", - "default" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the default border width for dividers.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "divider", + "default" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--divider--hover": { - "description": "Use as the border width hover state for dividers.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the border width hover state for dividers.", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--divider--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "divider", - "state": "hover" - }, - "path": [ - "global", - "border", - "width", - "divider", - "hover" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the border width hover state for dividers.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "divider", + "hover" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--divider--clicked": { - "description": "Use as the border width clicked state for dividers.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the border width clicked state for dividers.", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--divider--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "divider", - "state": "clicked" - }, - "path": [ - "global", - "border", - "width", - "divider", - "clicked" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the border width clicked state for dividers.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--divider--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "divider", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "divider", + "clicked" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--strong": { - "description": "Use as a stronger/wider border width for elements.", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as a stronger/wider border width for elements.", "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--strong", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "strong" - }, - "path": [ - "global", - "border", - "width", - "strong" - ], - "references": [ - { + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as a stronger/wider border width for elements.", "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--strong", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "strong" + }, + "path": [ + "global", + "border", + "width", + "strong" + ], + "references": [ + { "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + } }, "pf-t--global--border--width--extra-strong": { - "description": "Use as the strongest/widest border width for elements.", - "type": "number", - "value": "3px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the strongest/widest border width for elements.", "type": "number", - "value": "{global.border.width.300}" - }, - "name": "pf-t--global--border--width--extra-strong", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "extra-strong" - }, - "path": [ - "global", - "border", - "width", - "extra-strong" - ], - "references": [ - { + "value": "3px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the strongest/widest border width for elements.", "type": "number", - "value": "3px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.300}" + }, + "name": "pf-t--global--border--width--extra-strong", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "extra-strong" + }, + "path": [ + "global", + "border", + "width", + "extra-strong" + ], + "references": [ + { "type": "number", - "value": 3 - }, - "name": "pf-t--global--border--width--300", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "300" - }, - "path": [ - "global", - "border", - "width", - "300" - ] - } - ] + "value": "3px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 3 + }, + "name": "pf-t--global--border--width--300", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "300" + }, + "path": [ + "global", + "border", + "width", + "300" + ] + } + ] + } }, "pf-t--global--border--width--box--default": { - "description": "Use as the default border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border width for containers like cards, panels, code editors, etc.", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--box--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "default" - }, - "path": [ - "global", - "border", - "width", - "box", - "default" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the default border width for containers like cards, panels, code editors, etc.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "box", + "default" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--box--hover": { - "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--box--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "hover" - }, - "path": [ - "global", - "border", - "width", - "box", - "hover" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the hover border width for containers like cards, panels, code editors, etc.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "box", + "hover" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--box--clicked": { - "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--box--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "clicked" - }, - "path": [ - "global", - "border", - "width", - "box", - "clicked" - ], - "references": [ - { + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the clicked border width for containers like cards, panels, code editors, etc.", "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--box--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "box", + "clicked" + ], + "references": [ + { "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + } }, "pf-t--global--border--width--box--status--default": { - "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--box--status--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "status" - }, - "path": [ - "global", - "border", - "width", - "box", - "status", - "default" - ], - "references": [ - { + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the default border width for containers that convey statuses like inline alerts, notification drawer items and hints. This token is typically paired with status border colors.", "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--box--status--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "status" + }, + "path": [ + "global", + "border", + "width", + "box", + "status", + "default" + ], + "references": [ + { "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] - }, - "pf-t--global--border--width--box--status--read": { - "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + } + }, + "pf-t--global--border--width--box--status--read": { + "default": { "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--box--status--read", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "box", - "state": "status" - }, - "path": [ - "global", - "border", - "width", - "box", - "status", - "read" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the border width for containers that convey a “read” status, like notification drawer items.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--box--status--read", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "box", + "state": "status" + }, + "path": [ + "global", + "border", + "width", + "box", + "status", + "read" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--action--default": { - "description": "Use as the default border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border width for actions like secondary and tertiary buttons", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--action--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "action", - "state": "default" - }, - "path": [ - "global", - "border", - "width", - "action", - "default" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the default border width for actions like secondary and tertiary buttons", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--action--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "action", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "action", + "default" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--action--hover": { - "description": "Use as the hover state border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state border width for actions like secondary and tertiary buttons", "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--action--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "action", - "state": "hover" - }, - "path": [ - "global", - "border", - "width", - "action", - "hover" - ], - "references": [ - { + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the hover state border width for actions like secondary and tertiary buttons", "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--action--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "action", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "action", + "hover" + ], + "references": [ + { "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + } }, "pf-t--global--border--width--action--clicked": { - "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--action--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "action", - "state": "clicked" - }, - "path": [ - "global", - "border", - "width", - "action", - "clicked" - ], - "references": [ - { + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border width for actions like secondary and tertiary buttons", "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--action--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "action", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "action", + "clicked" + ], + "references": [ + { "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + } }, "pf-t--global--border--width--control--default": { - "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--control--default", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "control", - "state": "default" - }, - "path": [ - "global", - "border", - "width", - "control", - "default" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the default border width for controls like text inputs, menu toggles and control buttons", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--control--default", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "default" + }, + "path": [ + "global", + "border", + "width", + "control", + "default" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--control--hover": { - "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", "type": "number", - "value": "{global.border.width.100}" - }, - "name": "pf-t--global--border--width--control--hover", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "control", - "state": "hover" - }, - "path": [ - "global", - "border", - "width", - "control", - "hover" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the hover state border width for controls like text inputs, menu toggles and control buttons", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.100}" + }, + "name": "pf-t--global--border--width--control--hover", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "hover" + }, + "path": [ + "global", + "border", + "width", + "control", + "hover" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + ] + } }, "pf-t--global--border--width--control--clicked": { - "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", - "type": "number", - "value": "2px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", "type": "number", - "value": "{global.border.width.200}" - }, - "name": "pf-t--global--border--width--control--clicked", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "control", - "state": "clicked" - }, - "path": [ - "global", - "border", - "width", - "control", - "clicked" - ], - "references": [ - { + "value": "2px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the clicked state border width for controls like text inputs, menu toggles and control buttons", "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.width.200}" + }, + "name": "pf-t--global--border--width--control--clicked", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "control", + "state": "clicked" + }, + "path": [ + "global", + "border", + "width", + "control", + "clicked" + ], + "references": [ + { "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] - } - ] + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + ] + } }, "pf-t--global--border--radius--sharp": { - "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", "type": "number", - "value": "{global.border.radius.0}" - }, - "name": "pf-t--global--border--radius--sharp", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "sharp" - }, - "path": [ - "global", - "border", - "radius", - "sharp" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for sharp corners.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.radius.0}" + }, + "name": "pf-t--global--border--radius--sharp", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "sharp" + }, + "path": [ + "global", + "border", + "radius", + "sharp" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--border--radius--0", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "0" - }, - "path": [ - "global", - "border", - "radius", - "0" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--border--radius--0", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "0" + }, + "path": [ + "global", + "border", + "radius", + "0" + ] + } + ] + } }, "pf-t--global--border--radius--tiny": { - "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", "type": "number", - "value": "{global.border.radius.100}" - }, - "name": "pf-t--global--border--radius--tiny", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "tiny" - }, - "path": [ - "global", - "border", - "radius", - "tiny" - ], - "references": [ - { + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for barely rounded corners.", "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.radius.100}" + }, + "name": "pf-t--global--border--radius--tiny", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "tiny" + }, + "path": [ + "global", + "border", + "radius", + "tiny" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--border--radius--100", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "100" - }, - "path": [ - "global", - "border", - "radius", - "100" - ] - } - ] + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--border--radius--100", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "100" + }, + "path": [ + "global", + "border", + "radius", + "100" + ] + } + ] + } }, "pf-t--global--border--radius--small": { - "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", - "type": "number", - "value": "6px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", "type": "number", - "value": "{global.border.radius.200}" - }, - "name": "pf-t--global--border--radius--small", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "small" - }, - "path": [ - "global", - "border", - "radius", - "small" - ], - "references": [ - { + "value": "6px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for slightly rounded corners, like icon buttons or menus.", "type": "number", - "value": "6px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.radius.200}" + }, + "name": "pf-t--global--border--radius--small", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "small" + }, + "path": [ + "global", + "border", + "radius", + "small" + ], + "references": [ + { "type": "number", - "value": 6 - }, - "name": "pf-t--global--border--radius--200", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "200" - }, - "path": [ - "global", - "border", - "radius", - "200" - ] - } - ] + "value": "6px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 6 + }, + "name": "pf-t--global--border--radius--200", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "200" + }, + "path": [ + "global", + "border", + "radius", + "200" + ] + } + ] + } }, "pf-t--global--border--radius--medium": { - "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", - "type": "number", - "value": "16px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", "type": "number", - "value": "{global.border.radius.300}" - }, - "name": "pf-t--global--border--radius--medium", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "medium" - }, - "path": [ - "global", - "border", - "radius", - "medium" - ], - "references": [ - { + "value": "16px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for moderately rounded corners, like cards.", "type": "number", - "value": "16px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.radius.300}" + }, + "name": "pf-t--global--border--radius--medium", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "medium" + }, + "path": [ + "global", + "border", + "radius", + "medium" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--border--radius--300", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "300" - }, - "path": [ - "global", - "border", - "radius", - "300" - ] - } - ] + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--border--radius--300", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "300" + }, + "path": [ + "global", + "border", + "radius", + "300" + ] + } + ] + } }, "pf-t--global--border--radius--large": { - "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", - "type": "number", - "value": "24px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", "type": "number", - "value": "{global.border.radius.400}" - }, - "name": "pf-t--global--border--radius--large", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "large" - }, - "path": [ - "global", - "border", - "radius", - "large" - ], - "references": [ - { + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for mostly rounded corners, like modals.", "type": "number", - "value": "24px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.radius.400}" + }, + "name": "pf-t--global--border--radius--large", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "large" + }, + "path": [ + "global", + "border", + "radius", + "large" + ], + "references": [ + { "type": "number", - "value": 24 - }, - "name": "pf-t--global--border--radius--400", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "400" - }, - "path": [ - "global", - "border", - "radius", - "400" - ] - } - ] + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--border--radius--400", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "400" + }, + "path": [ + "global", + "border", + "radius", + "400" + ] + } + ] + } }, "pf-t--global--border--radius--pill": { - "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", - "type": "number", - "value": "999px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", "type": "number", - "value": "{global.border.radius.500}" - }, - "name": "pf-t--global--border--radius--pill", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "pill" - }, - "path": [ - "global", - "border", - "radius", - "pill" - ], - "references": [ - { + "value": "999px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to adjust the curvature of the border corners for an element. Use for corners that are as round as possible, like standard buttons and badges.", "type": "number", - "value": "999px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.border.radius.500}" + }, + "name": "pf-t--global--border--radius--pill", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "pill" + }, + "path": [ + "global", + "border", + "radius", + "pill" + ], + "references": [ + { "type": "number", - "value": 999 - }, - "name": "pf-t--global--border--radius--500", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "500" - }, - "path": [ - "global", - "border", - "radius", - "500" - ] - } - ] + "value": "999px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 999 + }, + "name": "pf-t--global--border--radius--500", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "500" + }, + "path": [ + "global", + "border", + "radius", + "500" + ] + } + ] + } }, "pf-t--global--font--family--body": { - "description": "Use to define the font family for body text", - "type": "number", - "value": "Red Hat Text VF", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the font family for body text", "type": "number", - "value": "{global.font.family.100}" - }, - "name": "pf-t--global--font--family--body", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "body" - }, - "path": [ - "global", - "font", - "family", - "body" - ], - "references": [ - { - "type": "string", - "value": "Red Hat Text VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "Red Hat Text VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the font family for body text", + "type": "number", + "value": "{global.font.family.100}" + }, + "name": "pf-t--global--font--family--body", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "body" + }, + "path": [ + "global", + "font", + "family", + "body" + ], + "references": [ + { "type": "string", - "value": "Red Hat Text VF" - }, - "name": "pf-t--global--font--family--100", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "100" - }, - "path": [ - "global", - "font", - "family", - "100" - ] - } - ] + "value": "Red Hat Text VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Text VF" + }, + "name": "pf-t--global--font--family--100", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "100" + }, + "path": [ + "global", + "font", + "family", + "100" + ] + } + ] + } }, "pf-t--global--font--family--heading": { - "description": "Use to define the font family for heading text", - "type": "number", - "value": "Red Hat Display VF", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the font family for heading text", "type": "number", - "value": "{global.font.family.200}" - }, - "name": "pf-t--global--font--family--heading", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "heading" - }, - "path": [ - "global", - "font", - "family", - "heading" - ], - "references": [ - { - "type": "string", - "value": "Red Hat Display VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "Red Hat Display VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the font family for heading text", + "type": "number", + "value": "{global.font.family.200}" + }, + "name": "pf-t--global--font--family--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "family", + "heading" + ], + "references": [ + { "type": "string", - "value": "Red Hat Display VF" - }, - "name": "pf-t--global--font--family--200", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "200" - }, - "path": [ - "global", - "font", - "family", - "200" - ] - } - ] + "value": "Red Hat Display VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Display VF" + }, + "name": "pf-t--global--font--family--200", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "200" + }, + "path": [ + "global", + "font", + "family", + "200" + ] + } + ] + } }, "pf-t--global--font--family--mono": { - "description": "Use to define the font family for mono text", - "type": "number", - "value": "Red Hat Mono VF", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the font family for mono text", "type": "number", - "value": "{global.font.family.300}" - }, - "name": "pf-t--global--font--family--mono", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "mono" - }, - "path": [ - "global", - "font", - "family", - "mono" - ], - "references": [ - { - "type": "string", - "value": "Red Hat Mono VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "Red Hat Mono VF", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the font family for mono text", + "type": "number", + "value": "{global.font.family.300}" + }, + "name": "pf-t--global--font--family--mono", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "mono" + }, + "path": [ + "global", + "font", + "family", + "mono" + ], + "references": [ + { "type": "string", - "value": "Red Hat Mono VF" - }, - "name": "pf-t--global--font--family--300", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "300" - }, - "path": [ - "global", - "font", - "family", - "300" - ] - } - ] + "value": "Red Hat Mono VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Mono VF" + }, + "name": "pf-t--global--font--family--300", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "300" + }, + "path": [ + "global", + "font", + "family", + "300" + ] + } + ] + } }, "pf-t--global--font--weight--body": { - "description": "Use to define the default weight for body text", - "type": "number", - "value": 400, - "bold": { - "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", - "type": "number", - "value": 500, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true - }, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the default weight for body text", "type": "number", - "value": "{global.font.weight.100}", + "value": 400, "bold": { "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", "type": "number", - "value": "{global.font.weight.200}", + "value": 500, "filePath": "tokens/default/semantic.dimension.json", "isSource": true - } - }, - "name": "pf-t--global--font--weight--body", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "body" - }, - "path": [ - "global", - "font", - "weight", - "body" - ], - "references": [ - { + }, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the default weight for body text", "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.weight.100}", + "bold": { + "description": "Use to define the bold weight for body text, often used to field labels or to add emphasis.", "type": "number", - "value": 400 - }, - "name": "pf-t--global--font--weight--100", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "100" - }, - "path": [ - "global", - "font", - "weight", - "100" - ] - } - ] + "value": "{global.font.weight.200}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true + } + }, + "name": "pf-t--global--font--weight--body", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "body" + }, + "path": [ + "global", + "font", + "weight", + "body" + ], + "references": [ + { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--font--weight--100", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "100" + }, + "path": [ + "global", + "font", + "weight", + "100" + ] + } + ] + } }, "pf-t--global--font--weight--heading": { - "description": "Use to define the default weight for heading text", - "type": "number", - "value": 700, - "bold": { - "description": "Use to define the bold weight for heading text, often used to add emphasis.", - "type": "number", - "value": 700, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true - }, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the default weight for heading text", "type": "number", - "value": "{global.font.weight.300}", + "value": 700, "bold": { "description": "Use to define the bold weight for heading text, often used to add emphasis.", "type": "number", - "value": "{global.font.weight.400}", + "value": 700, "filePath": "tokens/default/semantic.dimension.json", "isSource": true - } - }, - "name": "pf-t--global--font--weight--heading", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "heading" - }, - "path": [ - "global", - "font", - "weight", - "heading" - ], - "references": [ - { + }, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the default weight for heading text", "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.weight.300}", + "bold": { + "description": "Use to define the bold weight for heading text, often used to add emphasis.", "type": "number", - "value": 700 - }, - "name": "pf-t--global--font--weight--300", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "300" - }, - "path": [ - "global", - "font", - "weight", - "300" - ] - } - ] + "value": "{global.font.weight.400}", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true + } + }, + "name": "pf-t--global--font--weight--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "weight", + "heading" + ], + "references": [ + { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 700 + }, + "name": "pf-t--global--font--weight--300", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "300" + }, + "path": [ + "global", + "font", + "weight", + "300" + ] + } + ] + } }, "pf-t--global--font--line-height--body": { - "description": "Use to define the line height for body text", - "type": "number", - "value": 1.2999999523162842, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the line height for body text", "type": "number", - "value": "{global.font.line-height.100}" - }, - "name": "pf-t--global--font--line-height--body", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "body" - }, - "path": [ - "global", - "font", - "line-height", - "body" - ], - "references": [ - { + "value": 1.2999999523162842, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the line height for body text", "type": "number", - "value": 1.2999999523162842, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.line-height.100}" + }, + "name": "pf-t--global--font--line-height--body", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "body" + }, + "path": [ + "global", + "font", + "line-height", + "body" + ], + "references": [ + { "type": "number", - "value": 1.2999999523162842 - }, - "name": "pf-t--global--font--line-height--100", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "100" - }, - "path": [ - "global", - "font", - "line-height", - "100" - ] - } - ] + "value": 1.2999999523162842, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1.2999999523162842 + }, + "name": "pf-t--global--font--line-height--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "100" + }, + "path": [ + "global", + "font", + "line-height", + "100" + ] + } + ] + } }, "pf-t--global--font--line-height--heading": { - "description": "Use to define the line height for heading text", - "type": "number", - "value": 1.5, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the line height for heading text", "type": "number", - "value": "{global.font.line-height.200}" - }, - "name": "pf-t--global--font--line-height--heading", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "heading" - }, - "path": [ - "global", - "font", - "line-height", - "heading" - ], - "references": [ - { + "value": 1.5, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the line height for heading text", "type": "number", - "value": 1.5, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.line-height.200}" + }, + "name": "pf-t--global--font--line-height--heading", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "heading" + }, + "path": [ + "global", + "font", + "line-height", + "heading" + ], + "references": [ + { "type": "number", - "value": 1.5 - }, - "name": "pf-t--global--font--line-height--200", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "200" - }, - "path": [ - "global", - "font", - "line-height", - "200" - ] - } - ] + "value": 1.5, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1.5 + }, + "name": "pf-t--global--font--line-height--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "200" + }, + "path": [ + "global", + "font", + "line-height", + "200" + ] + } + ] + } }, "pf-t--global--font--size--body--sm": { - "description": "Use for a smaller font size in body sections.", - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "{global.font.size.xs}" - }, - "name": "pf-t--global--font--size--body--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "sm" - }, - "path": [ - "global", - "font", - "size", - "body", - "sm" - ], - "references": [ - { + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for a smaller font size in body sections.", "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.xs}" + }, + "name": "pf-t--global--font--size--body--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "sm" + }, + "path": [ + "global", + "font", + "size", + "body", + "sm" + ], + "references": [ + { "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] - } - ] + "value": "0.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--body--default": { - "description": "Use as the default font size in body sections.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default font size in body sections.", "type": "number", - "value": "{global.font.size.sm}" - }, - "name": "pf-t--global--font--size--body--default", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "default" - }, - "path": [ - "global", - "font", - "size", - "body", - "default" - ], - "references": [ - { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the default font size in body sections.", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.sm}" + }, + "name": "pf-t--global--font--size--body--default", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "default" + }, + "path": [ + "global", + "font", + "size", + "body", + "default" + ], + "references": [ + { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] - } - ] + "value": "0.875rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--body--lg": { - "description": "Use for a larger font size in body sections.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use for a larger font size in body sections.", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--body--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "body", - "state": "lg" - }, - "path": [ - "global", - "font", - "size", - "body", - "lg" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use for a larger font size in body sections.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--body--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "body", + "state": "lg" + }, + "path": [ + "global", + "font", + "size", + "body", + "lg" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--heading--h1": { - "description": "Use as the font size for first level headings.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the font size for first level headings.", "type": "number", - "value": "{global.font.size.2xl}" - }, - "name": "pf-t--global--font--size--heading--h1", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h1" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h1" - ], - "references": [ - { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for first level headings.", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.2xl}" + }, + "name": "pf-t--global--font--size--heading--h1", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h1" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h1" + ], + "references": [ + { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] - } - ] + "value": "1.375rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--heading--h2": { - "description": "Use as the font size for second level headings.", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the font size for second level headings.", "type": "number", - "value": "{global.font.size.xl}" - }, - "name": "pf-t--global--font--size--heading--h2", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h2" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h2" - ], - "references": [ - { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", + "value": "1.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for second level headings.", "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.xl}" + }, + "name": "pf-t--global--font--size--heading--h2", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h2" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h2" + ], + "references": [ + { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.500}" - }, - "name": "pf-t--global--font--size--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "font", - "size", - "xl" - ], - "references": [ - { + "value": "1.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - } - ] - } - ] + "value": "1.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--heading--h3": { - "description": "Use as the font size for third level headings.", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the font size for third level headings.", "type": "number", - "value": "{global.font.size.lg}" - }, - "name": "pf-t--global--font--size--heading--h3", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h3" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h3" - ], - "references": [ - { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "value": "1.125rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for third level headings.", "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.lg}" + }, + "name": "pf-t--global--font--size--heading--h3", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h3" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h3" + ], + "references": [ + { "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.400}" - }, - "name": "pf-t--global--font--size--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "font", - "size", - "lg" - ], - "references": [ - { + "value": "1.125rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - } - ] - } - ] + "value": "1.125rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--heading--h4": { - "description": "Use as the font size for fourth-level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the font size for fourth-level headings.", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h4", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h4" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h4" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for fourth-level headings.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h4", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h4" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h4" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--heading--h5": { - "description": "Use as the font size for fifth level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h5", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h5" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h5" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for fifth level headings.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h5", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h5" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h5" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--heading--h6": { - "description": "Use as the font size for sixth level headings.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "{global.font.size.md}" - }, - "name": "pf-t--global--font--size--heading--h6", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "heading", - "state": "h6" - }, - "path": [ - "global", - "font", - "size", - "heading", - "h6" - ], - "references": [ - { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for sixth level headings.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.md}" + }, + "name": "pf-t--global--font--size--heading--h6", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "heading", + "state": "h6" + }, + "path": [ + "global", + "font", + "size", + "heading", + "h6" + ], + "references": [ + { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - } - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--font--size--xs": { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": "{global.font.size.100}" - }, - "name": "pf-t--global--font--size--xs", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xs" - }, - "path": [ - "global", - "font", - "size", - "xs" - ], - "references": [ - { + "value": "0.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.100}" + }, + "name": "pf-t--global--font--size--xs", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xs" + }, + "path": [ + "global", + "font", + "size", + "xs" + ], + "references": [ + { "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] - } - ] + "value": "0.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } + ] + } }, "pf-t--global--font--size--sm": { - "description": "Use as the font size for small text that isn’t a heading or in a body section.", - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.200}" - }, - "name": "pf-t--global--font--size--sm", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "sm" - }, - "path": [ - "global", - "font", - "size", - "sm" - ], - "references": [ - { + "value": "0.875rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for small text that isn’t a heading or in a body section.", "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.200}" + }, + "name": "pf-t--global--font--size--sm", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "sm" + }, + "path": [ + "global", + "font", + "size", + "sm" + ], + "references": [ + { "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] - } - ] + "value": "0.875rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } + ] + } }, "pf-t--global--font--size--md": { - "description": "Use as the font size for medium text that isn’t a heading or in a body section.", - "type": "number", - "value": "1rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.300}" - }, - "name": "pf-t--global--font--size--md", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "md" - }, - "path": [ - "global", - "font", - "size", - "md" - ], - "references": [ - { + "value": "1rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for medium text that isn’t a heading or in a body section.", "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.300}" + }, + "name": "pf-t--global--font--size--md", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "md" + }, + "path": [ + "global", + "font", + "size", + "md" + ], + "references": [ + { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] - } - ] - }, - "pf-t--global--font--size--lg": { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { - "description": "Use as the font size for large text that isn’t a heading or in a body section.", + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } + ] + } + }, + "pf-t--global--font--size--lg": { + "default": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.400}" - }, - "name": "pf-t--global--font--size--lg", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "lg" - }, - "path": [ - "global", - "font", - "size", - "lg" - ], - "references": [ - { + "value": "1.125rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.400}" + }, + "name": "pf-t--global--font--size--lg", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "lg" + }, + "path": [ + "global", + "font", + "size", + "lg" + ], + "references": [ + { "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] - } - ] + "value": "1.125rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } + ] + } }, "pf-t--global--font--size--xl": { - "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.500}" - }, - "name": "pf-t--global--font--size--xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "xl" - }, - "path": [ - "global", - "font", - "size", - "xl" - ], - "references": [ - { + "value": "1.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.500}" + }, + "name": "pf-t--global--font--size--xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "xl" + }, + "path": [ + "global", + "font", + "size", + "xl" + ], + "references": [ + { "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] - } - ] + "value": "1.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } + ] + } }, "pf-t--global--font--size--2xl": { - "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.600}" - }, - "name": "pf-t--global--font--size--2xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "2xl" - }, - "path": [ - "global", - "font", - "size", - "2xl" - ], - "references": [ - { + "value": "1.375rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for double extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.600}" + }, + "name": "pf-t--global--font--size--2xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "2xl" + }, + "path": [ + "global", + "font", + "size", + "2xl" + ], + "references": [ + { "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] - } - ] + "value": "1.375rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } + ] + } }, "pf-t--global--font--size--3xl": { - "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.700}" - }, - "name": "pf-t--global--font--size--3xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "3xl" - }, - "path": [ - "global", - "font", - "size", - "3xl" - ], - "references": [ - { + "value": "1.75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for triple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.700}" + }, + "name": "pf-t--global--font--size--3xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "3xl" + }, + "path": [ + "global", + "font", + "size", + "3xl" + ], + "references": [ + { "type": "number", - "value": 28 - }, - "name": "pf-t--global--font--size--700", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "700" - }, - "path": [ - "global", - "font", - "size", - "700" - ] - } - ] + "value": "1.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + } + ] + } }, "pf-t--global--font--size--4xl": { - "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "{global.font.size.800}" - }, - "name": "pf-t--global--font--size--4xl", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "4xl" - }, - "path": [ - "global", - "font", - "size", - "4xl" - ], - "references": [ - { + "value": "2.25rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use as the font size for quadruple extra large text that isn’t a heading or in a body section.", "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.font.size.800}" + }, + "name": "pf-t--global--font--size--4xl", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "4xl" + }, + "path": [ + "global", + "font", + "size", + "4xl" + ], + "references": [ + { "type": "number", - "value": 36 - }, - "name": "pf-t--global--font--size--800", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "800" - }, - "path": [ - "global", - "font", - "size", - "800" - ] - } - ] + "value": "2.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + } + ] + } }, "pf-t--global--z-index--xs": { - "type": "number", - "value": 100, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": "{global.z-index.100}" - }, - "name": "pf-t--global--z-index--xs", - "attributes": { - "category": "global", - "type": "z-index", - "item": "xs" - }, - "path": [ - "global", - "z-index", - "xs" - ], - "references": [ - { + "value": 100, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { "type": "number", - "value": 100, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.z-index.100}" + }, + "name": "pf-t--global--z-index--xs", + "attributes": { + "category": "global", + "type": "z-index", + "item": "xs" + }, + "path": [ + "global", + "z-index", + "xs" + ], + "references": [ + { "type": "number", - "value": 100 - }, - "name": "pf-t--global--z-index--100", - "attributes": { - "category": "global", - "type": "z-index", - "item": "100" - }, - "path": [ - "global", - "z-index", - "100" - ] - } - ] + "value": 100, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--z-index--100", + "attributes": { + "category": "global", + "type": "z-index", + "item": "100" + }, + "path": [ + "global", + "z-index", + "100" + ] + } + ] + } }, "pf-t--global--z-index--sm": { - "type": "number", - "value": 200, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": "{global.z-index.200}" - }, - "name": "pf-t--global--z-index--sm", - "attributes": { - "category": "global", - "type": "z-index", - "item": "sm" - }, - "path": [ - "global", - "z-index", - "sm" - ], - "references": [ - { + "value": 200, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { "type": "number", - "value": 200, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.z-index.200}" + }, + "name": "pf-t--global--z-index--sm", + "attributes": { + "category": "global", + "type": "z-index", + "item": "sm" + }, + "path": [ + "global", + "z-index", + "sm" + ], + "references": [ + { "type": "number", - "value": 200 - }, - "name": "pf-t--global--z-index--200", - "attributes": { - "category": "global", - "type": "z-index", - "item": "200" - }, - "path": [ - "global", - "z-index", - "200" - ] - } - ] + "value": 200, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--z-index--200", + "attributes": { + "category": "global", + "type": "z-index", + "item": "200" + }, + "path": [ + "global", + "z-index", + "200" + ] + } + ] + } }, "pf-t--global--z-index--md": { - "type": "number", - "value": 300, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": "{global.z-index.300}" - }, - "name": "pf-t--global--z-index--md", - "attributes": { - "category": "global", - "type": "z-index", - "item": "md" - }, - "path": [ - "global", - "z-index", - "md" - ], - "references": [ - { + "value": 300, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { "type": "number", - "value": 300, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.z-index.300}" + }, + "name": "pf-t--global--z-index--md", + "attributes": { + "category": "global", + "type": "z-index", + "item": "md" + }, + "path": [ + "global", + "z-index", + "md" + ], + "references": [ + { "type": "number", - "value": 300 - }, - "name": "pf-t--global--z-index--300", - "attributes": { - "category": "global", - "type": "z-index", - "item": "300" - }, - "path": [ - "global", - "z-index", - "300" - ] - } - ] + "value": 300, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--z-index--300", + "attributes": { + "category": "global", + "type": "z-index", + "item": "300" + }, + "path": [ + "global", + "z-index", + "300" + ] + } + ] + } }, "pf-t--global--z-index--lg": { - "type": "number", - "value": 400, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": "{global.z-index.400}" - }, - "name": "pf-t--global--z-index--lg", - "attributes": { - "category": "global", - "type": "z-index", - "item": "lg" - }, - "path": [ - "global", - "z-index", - "lg" - ], - "references": [ - { + "value": 400, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.z-index.400}" + }, + "name": "pf-t--global--z-index--lg", + "attributes": { + "category": "global", + "type": "z-index", + "item": "lg" + }, + "path": [ + "global", + "z-index", + "lg" + ], + "references": [ + { "type": "number", - "value": 400 - }, - "name": "pf-t--global--z-index--400", - "attributes": { - "category": "global", - "type": "z-index", - "item": "400" - }, - "path": [ - "global", - "z-index", - "400" - ] - } - ] + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--z-index--400", + "attributes": { + "category": "global", + "type": "z-index", + "item": "400" + }, + "path": [ + "global", + "z-index", + "400" + ] + } + ] + } }, "pf-t--global--z-index--xl": { - "type": "number", - "value": 500, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": "{global.z-index.500}" - }, - "name": "pf-t--global--z-index--xl", - "attributes": { - "category": "global", - "type": "z-index", - "item": "xl" - }, - "path": [ - "global", - "z-index", - "xl" - ], - "references": [ - { + "value": 500, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { "type": "number", - "value": 500, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.z-index.500}" + }, + "name": "pf-t--global--z-index--xl", + "attributes": { + "category": "global", + "type": "z-index", + "item": "xl" + }, + "path": [ + "global", + "z-index", + "xl" + ], + "references": [ + { "type": "number", - "value": 500 - }, - "name": "pf-t--global--z-index--500", - "attributes": { - "category": "global", - "type": "z-index", - "item": "500" - }, - "path": [ - "global", - "z-index", - "500" - ] - } - ] + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--z-index--500", + "attributes": { + "category": "global", + "type": "z-index", + "item": "500" + }, + "path": [ + "global", + "z-index", + "500" + ] + } + ] + } }, "pf-t--global--z-index--2xl": { - "type": "number", - "value": 600, - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": "{global.z-index.600}" - }, - "name": "pf-t--global--z-index--2xl", - "attributes": { - "category": "global", - "type": "z-index", - "item": "2xl" - }, - "path": [ - "global", - "z-index", - "2xl" - ], - "references": [ - { + "value": 600, + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { "type": "number", - "value": 600, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.z-index.600}" + }, + "name": "pf-t--global--z-index--2xl", + "attributes": { + "category": "global", + "type": "z-index", + "item": "2xl" + }, + "path": [ + "global", + "z-index", + "2xl" + ], + "references": [ + { "type": "number", - "value": 600 - }, - "name": "pf-t--global--z-index--600", - "attributes": { - "category": "global", - "type": "z-index", - "item": "600" - }, - "path": [ - "global", - "z-index", - "600" - ] - } - ] + "value": 600, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--z-index--600", + "attributes": { + "category": "global", + "type": "z-index", + "item": "600" + }, + "path": [ + "global", + "z-index", + "600" + ] + } + ] + } }, "pf-t--global--box-shadow--X--sm--default": { - "description": "Use to define the X value for a default small box-shadow, like in sticky sections", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the X value for a default small box-shadow, like in sticky sections", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--sm--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "default" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a default small box-shadow, like in sticky sections", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "default" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--sm--top": { - "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--sm--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "top" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "top" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--sm--bottom": { - "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--sm--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "bottom" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--sm--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "bottom" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--sm--left": { - "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", - "type": "number", - "value": "-1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", - "value": "{global.box-shadow.X.300}" - }, - "name": "pf-t--global--box-shadow--X--sm--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "left" - ], - "references": [ - { + "value": "-1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", - "value": "-1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.X.300}" + }, + "name": "pf-t--global--box-shadow--X--sm--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "left" + ], + "references": [ + { "type": "number", - "value": -1 - }, - "name": "pf-t--global--box-shadow--X--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "X", - "300" - ] - } - ] + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--X--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "X", + "300" + ] + } + ] + } }, "pf-t--global--box-shadow--X--sm--right": { - "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", - "value": "{global.box-shadow.X.500}" - }, - "name": "pf-t--global--box-shadow--X--sm--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "sm", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "X", - "sm", - "right" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.X.500}" + }, + "name": "pf-t--global--box-shadow--X--sm--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "sm", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "sm", + "right" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--X--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "X", - "500" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--X--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "X", + "500" + ] + } + ] + } }, "pf-t--global--box-shadow--X--md--default": { - "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--md--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "default" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "default" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--md--top": { - "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--md--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "top" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "top" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--md--bottom": { - "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--md--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "bottom" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--md--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "bottom" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--md--left": { - "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", - "type": "number", - "value": "-4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", - "value": "{global.box-shadow.X.200}" - }, - "name": "pf-t--global--box-shadow--X--md--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "left" - ], - "references": [ - { + "value": "-4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", - "value": "-4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.X.200}" + }, + "name": "pf-t--global--box-shadow--X--md--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "left" + ], + "references": [ + { "type": "number", - "value": -4 - }, - "name": "pf-t--global--box-shadow--X--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "X", - "200" - ] - } - ] + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--X--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "X", + "200" + ] + } + ] + } }, "pf-t--global--box-shadow--X--md--right": { - "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", - "value": "{global.box-shadow.X.600}" - }, - "name": "pf-t--global--box-shadow--X--md--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "md", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "X", - "md", - "right" - ], - "references": [ - { + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.X.600}" + }, + "name": "pf-t--global--box-shadow--X--md--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "md", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "md", + "right" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--X--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "X", - "600" - ] - } - ] + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--X--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "X", + "600" + ] + } + ] + } }, "pf-t--global--box-shadow--X--lg--default": { - "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--lg--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "default" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a default large box-shadow, used in modals and wizards.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "default" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--lg--top": { - "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--lg--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "top" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a large box-shadow that appears on the top of a raised element.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "top" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--lg--bottom": { - "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", - "value": "{global.box-shadow.X.400}" - }, - "name": "pf-t--global--box-shadow--X--lg--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "bottom" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.X.400}" + }, + "name": "pf-t--global--box-shadow--X--lg--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "bottom" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--X--lg--left": { - "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", - "type": "number", - "value": "-8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", "type": "number", - "value": "{global.box-shadow.X.100}" - }, - "name": "pf-t--global--box-shadow--X--lg--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "left" - ], - "references": [ - { + "value": "-8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a large box-shadow that appears on the left of a raised element.", "type": "number", - "value": "-8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.X.100}" + }, + "name": "pf-t--global--box-shadow--X--lg--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "left" + ], + "references": [ + { "type": "number", - "value": -8 - }, - "name": "pf-t--global--box-shadow--X--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "X", - "100" - ] - } - ] + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--X--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "X", + "100" + ] + } + ] + } }, "pf-t--global--box-shadow--X--lg--right": { - "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", "type": "number", - "value": "{global.box-shadow.X.700}" - }, - "name": "pf-t--global--box-shadow--X--lg--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "lg", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "X", - "lg", - "right" - ], - "references": [ - { + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the X value for a large box-shadow that appears on the right of a raised element.", "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.X.700}" + }, + "name": "pf-t--global--box-shadow--X--lg--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "lg", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "X", + "lg", + "right" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--X--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "X", - "700" - ] - } - ] + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--X--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "X", + "700" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--sm--default": { - "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", "type": "number", - "value": "{global.box-shadow.Y.500}" - }, - "name": "pf-t--global--box-shadow--Y--sm--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "default" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a default small box-shadow, like in sticky sections", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.Y.500}" + }, + "name": "pf-t--global--box-shadow--Y--sm--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "default" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--Y--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "Y", - "500" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--sm--top": { - "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", - "type": "number", - "value": "-1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", - "value": "{global.box-shadow.Y.300}" - }, - "name": "pf-t--global--box-shadow--Y--sm--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "top" - ], - "references": [ - { + "value": "-1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the top of a raised element, like in sticky footers", "type": "number", - "value": "-1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.Y.300}" + }, + "name": "pf-t--global--box-shadow--Y--sm--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "top" + ], + "references": [ + { "type": "number", - "value": -1 - }, - "name": "pf-t--global--box-shadow--Y--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "Y", - "300" - ] - } - ] + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--Y--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "Y", + "300" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--sm--bottom": { - "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", - "type": "number", - "value": "1px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", - "value": "{global.box-shadow.Y.500}" - }, - "name": "pf-t--global--box-shadow--Y--sm--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "bottom" - ], - "references": [ - { + "value": "1px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the bottom of a raised element, like in sticky headers.", "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.Y.500}" + }, + "name": "pf-t--global--box-shadow--Y--sm--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "bottom" + ], + "references": [ + { "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--Y--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "Y", - "500" - ] - } - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--sm--left": { - "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--sm--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "left" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the left of a raised element, like in sticky columns.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--sm--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "left" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--sm--right": { - "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--sm--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "sm", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "Y", - "sm", - "right" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a small box-shadow that appears on the right of a raised element, like in sticky columns.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--sm--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "sm", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "sm", + "right" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--md--default": { - "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", - "value": "{global.box-shadow.Y.600}" - }, - "name": "pf-t--global--box-shadow--Y--md--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "default" - ], - "references": [ - { + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a default medium box-shadow, used in popovers and raised menus.", "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.Y.600}" + }, + "name": "pf-t--global--box-shadow--Y--md--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "default" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--Y--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "Y", - "600" - ] - } - ] + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--md--top": { - "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", - "type": "number", - "value": "-4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", "type": "number", - "value": "{global.box-shadow.Y.200}" - }, - "name": "pf-t--global--box-shadow--Y--md--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "top" - ], - "references": [ - { + "value": "-4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the top of a raised element, like in overlay bottom drawers", "type": "number", - "value": "-4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.Y.200}" + }, + "name": "pf-t--global--box-shadow--Y--md--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "top" + ], + "references": [ + { "type": "number", - "value": -4 - }, - "name": "pf-t--global--box-shadow--Y--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "Y", - "200" - ] - } - ] + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--Y--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "Y", + "200" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--md--bottom": { - "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", - "value": "{global.box-shadow.Y.600}" - }, - "name": "pf-t--global--box-shadow--Y--md--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "bottom" - ], - "references": [ - { + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the bottom of a raised element.", "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.Y.600}" + }, + "name": "pf-t--global--box-shadow--Y--md--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "bottom" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--Y--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "Y", - "600" - ] - } - ] + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--md--left": { - "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--md--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "left" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the left of a raised element, like in overlay drawers that show on the right of the screen.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--md--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "left" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--md--right": { - "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--md--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "md", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "Y", - "md", - "right" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a medium box-shadow that appears on the right of a raised element, like in overlay drawers that show on the left of the screen.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--md--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "md", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "md", + "right" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--lg--default": { - "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", "type": "number", - "value": "{global.box-shadow.Y.700}" - }, - "name": "pf-t--global--box-shadow--Y--lg--default", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "default" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "default" - ], - "references": [ - { + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a default large box-shadow, used in modals and wizards.", "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.Y.700}" + }, + "name": "pf-t--global--box-shadow--Y--lg--default", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "default" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "default" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--Y--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "Y", - "700" - ] - } - ] + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--lg--top": { - "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", - "type": "number", - "value": "-8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", "type": "number", - "value": "{global.box-shadow.Y.100}" - }, - "name": "pf-t--global--box-shadow--Y--lg--top", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "top" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "top" - ], - "references": [ - { + "value": "-8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the top of a raised element.", "type": "number", - "value": "-8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.Y.100}" + }, + "name": "pf-t--global--box-shadow--Y--lg--top", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "top" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "top" + ], + "references": [ + { "type": "number", - "value": -8 - }, - "name": "pf-t--global--box-shadow--Y--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "Y", - "100" - ] - } - ] + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--Y--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "Y", + "100" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--lg--bottom": { - "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", - "value": "{global.box-shadow.Y.700}" - }, - "name": "pf-t--global--box-shadow--Y--lg--bottom", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "bottom" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "bottom" - ], - "references": [ - { + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the bottom of a raised element.", "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.Y.700}" + }, + "name": "pf-t--global--box-shadow--Y--lg--bottom", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "bottom" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "bottom" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--Y--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "Y", - "700" - ] - } - ] + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--lg--left": { - "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--lg--left", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "left" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "left" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the left of a raised element.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--lg--left", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "left" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "left" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--Y--lg--right": { - "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", "type": "number", - "value": "{global.box-shadow.Y.400}" - }, - "name": "pf-t--global--box-shadow--Y--lg--right", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "lg", - "state": "right" - }, - "path": [ - "global", - "box-shadow", - "Y", - "lg", - "right" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the Y value for a large box-shadow that appears on the right of a raised element.", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.Y.400}" + }, + "name": "pf-t--global--box-shadow--Y--lg--right", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "lg", + "state": "right" + }, + "path": [ + "global", + "box-shadow", + "Y", + "lg", + "right" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } + ] + } }, "pf-t--global--box-shadow--blur--sm": { - "description": "Use to define the blur for a small box-shadow", - "type": "number", - "value": "4px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the blur for a small box-shadow", "type": "number", - "value": "{global.box-shadow.blur.100}" - }, - "name": "pf-t--global--box-shadow--blur--sm", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "sm" - }, - "path": [ - "global", - "box-shadow", - "blur", - "sm" - ], - "references": [ - { + "value": "4px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the blur for a small box-shadow", "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.blur.100}" + }, + "name": "pf-t--global--box-shadow--blur--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "blur", + "sm" + ], + "references": [ + { "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--blur--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "blur", - "100" - ] - } - ] + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--blur--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "blur", + "100" + ] + } + ] + } }, "pf-t--global--box-shadow--blur--md": { - "description": "Use to define the blur for a medium box-shadow", - "type": "number", - "value": "8px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the blur for a medium box-shadow", "type": "number", - "value": "{global.box-shadow.blur.200}" - }, - "name": "pf-t--global--box-shadow--blur--md", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "md" - }, - "path": [ - "global", - "box-shadow", - "blur", - "md" - ], - "references": [ - { + "value": "8px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the blur for a medium box-shadow", "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.blur.200}" + }, + "name": "pf-t--global--box-shadow--blur--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "blur", + "md" + ], + "references": [ + { "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--blur--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "blur", - "200" - ] - } - ] + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--blur--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "blur", + "200" + ] + } + ] + } }, "pf-t--global--box-shadow--blur--lg": { - "description": "Use to define the blue for a large box-shadow", - "type": "number", - "value": "24px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the blue for a large box-shadow", "type": "number", - "value": "{global.box-shadow.blur.300}" - }, - "name": "pf-t--global--box-shadow--blur--lg", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "lg" - }, - "path": [ - "global", - "box-shadow", - "blur", - "lg" - ], - "references": [ - { + "value": "24px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the blue for a large box-shadow", "type": "number", - "value": "24px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.blur.300}" + }, + "name": "pf-t--global--box-shadow--blur--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "blur", + "lg" + ], + "references": [ + { "type": "number", - "value": 24 - }, - "name": "pf-t--global--box-shadow--blur--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "blur", - "300" - ] - } - ] + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--box-shadow--blur--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "blur", + "300" + ] + } + ] + } }, "pf-t--global--box-shadow--spread--sm": { - "description": "Use to define the spread for a small box-shadow", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the spread for a small box-shadow", "type": "number", - "value": "{global.box-shadow.spread.100}" - }, - "name": "pf-t--global--box-shadow--spread--sm", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "sm" - }, - "path": [ - "global", - "box-shadow", - "spread", - "sm" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the spread for a small box-shadow", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--sm", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "sm" + }, + "path": [ + "global", + "box-shadow", + "spread", + "sm" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--spread--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "spread", - "100" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + } }, "pf-t--global--box-shadow--spread--md": { - "description": "Use to define the spread of a medium box-shadow", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the spread of a medium box-shadow", "type": "number", - "value": "{global.box-shadow.spread.100}" - }, - "name": "pf-t--global--box-shadow--spread--md", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "md" - }, - "path": [ - "global", - "box-shadow", - "spread", - "md" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the spread of a medium box-shadow", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--md", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "md" + }, + "path": [ + "global", + "box-shadow", + "spread", + "md" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--spread--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "spread", - "100" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + } }, "pf-t--global--box-shadow--spread--lg": { - "description": "Use to define the spread of a large box-shadow", - "type": "number", - "value": "0px", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define the spread of a large box-shadow", "type": "number", - "value": "{global.box-shadow.spread.100}" - }, - "name": "pf-t--global--box-shadow--spread--lg", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "lg" - }, - "path": [ - "global", - "box-shadow", - "spread", - "lg" - ], - "references": [ - { + "value": "0px", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define the spread of a large box-shadow", "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.box-shadow.spread.100}" + }, + "name": "pf-t--global--box-shadow--spread--lg", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "lg" + }, + "path": [ + "global", + "box-shadow", + "spread", + "lg" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--spread--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "spread", - "100" - ] - } - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } + ] + } }, "pf-t--global--breakpoint--xs": { - "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "0rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.100}" - }, - "name": "pf-t--global--breakpoint--xs", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "xs" - }, - "path": [ - "global", - "breakpoint", - "xs" - ], - "references": [ - { + "value": "0rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define an extra small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "0rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.breakpoint.100}" + }, + "name": "pf-t--global--breakpoint--xs", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "xs" + }, + "path": [ + "global", + "breakpoint", + "xs" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--breakpoint--100", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "100" - }, - "path": [ - "global", - "breakpoint", - "100" - ] - } - ] + "value": "0rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + } + ] + } }, "pf-t--global--breakpoint--sm": { - "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "36rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.200}" - }, - "name": "pf-t--global--breakpoint--sm", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "sm" - }, - "path": [ - "global", - "breakpoint", - "sm" - ], - "references": [ - { + "value": "36rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define a small breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "36rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.breakpoint.200}" + }, + "name": "pf-t--global--breakpoint--sm", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "sm" + }, + "path": [ + "global", + "breakpoint", + "sm" + ], + "references": [ + { "type": "number", - "value": 576 - }, - "name": "pf-t--global--breakpoint--200", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "200" - }, - "path": [ - "global", - "breakpoint", - "200" - ] - } - ] + "value": "36rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 576 + }, + "name": "pf-t--global--breakpoint--200", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "200" + }, + "path": [ + "global", + "breakpoint", + "200" + ] + } + ] + } }, "pf-t--global--breakpoint--md": { - "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "48rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.300}" - }, - "name": "pf-t--global--breakpoint--md", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "md" - }, - "path": [ - "global", - "breakpoint", - "md" - ], - "references": [ - { + "value": "48rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define a medium breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "48rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.breakpoint.300}" + }, + "name": "pf-t--global--breakpoint--md", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "md" + }, + "path": [ + "global", + "breakpoint", + "md" + ], + "references": [ + { "type": "number", - "value": 768 - }, - "name": "pf-t--global--breakpoint--300", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "300" - }, - "path": [ - "global", - "breakpoint", - "300" - ] - } - ] + "value": "48rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + } + ] + } }, "pf-t--global--breakpoint--lg": { - "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "62rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.400}" - }, - "name": "pf-t--global--breakpoint--lg", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "lg" - }, - "path": [ - "global", - "breakpoint", - "lg" - ], - "references": [ - { + "value": "62rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define a large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "62rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.breakpoint.400}" + }, + "name": "pf-t--global--breakpoint--lg", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "lg" + }, + "path": [ + "global", + "breakpoint", + "lg" + ], + "references": [ + { "type": "number", - "value": 992 - }, - "name": "pf-t--global--breakpoint--400", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "400" - }, - "path": [ - "global", - "breakpoint", - "400" - ] - } - ] + "value": "62rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 992 + }, + "name": "pf-t--global--breakpoint--400", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "400" + }, + "path": [ + "global", + "breakpoint", + "400" + ] + } + ] + } }, "pf-t--global--breakpoint--xl": { - "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "75rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.500}" - }, - "name": "pf-t--global--breakpoint--xl", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "xl" - }, - "path": [ - "global", - "breakpoint", - "xl" - ], - "references": [ - { + "value": "75rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define an extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.breakpoint.500}" + }, + "name": "pf-t--global--breakpoint--xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "xl" + }, + "path": [ + "global", + "breakpoint", + "xl" + ], + "references": [ + { "type": "number", - "value": 1200 - }, - "name": "pf-t--global--breakpoint--500", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "500" - }, - "path": [ - "global", - "breakpoint", - "500" - ] - } - ] + "value": "75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1200 + }, + "name": "pf-t--global--breakpoint--500", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "500" + }, + "path": [ + "global", + "breakpoint", + "500" + ] + } + ] + } }, "pf-t--global--breakpoint--2xl": { - "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "90.625rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.600}" - }, - "name": "pf-t--global--breakpoint--2xl", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "2xl" - }, - "path": [ - "global", - "breakpoint", - "2xl" - ], - "references": [ - { + "value": "90.625rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define a double extra large breakpoint, which is the minimum width at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "90.625rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.breakpoint.600}" + }, + "name": "pf-t--global--breakpoint--2xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "2xl" + }, + "path": [ + "global", + "breakpoint", + "2xl" + ], + "references": [ + { "type": "number", - "value": 1450 - }, - "name": "pf-t--global--breakpoint--600", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "600" - }, - "path": [ - "global", - "breakpoint", - "600" - ] - } - ] + "value": "90.625rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1450 + }, + "name": "pf-t--global--breakpoint--600", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "600" + }, + "path": [ + "global", + "breakpoint", + "600" + ] + } + ] + } }, "pf-t--global--breakpoint--height--sm": { - "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "0rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.100}" - }, - "name": "pf-t--global--breakpoint--height--sm", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "sm" - }, - "path": [ - "global", - "breakpoint", - "height", - "sm" - ], - "references": [ - { + "value": "0rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define a small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "0rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.breakpoint.100}" + }, + "name": "pf-t--global--breakpoint--height--sm", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "sm" + }, + "path": [ + "global", + "breakpoint", + "height", + "sm" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--breakpoint--100", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "100" - }, - "path": [ - "global", - "breakpoint", - "100" - ] - } - ] + "value": "0rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + } + ] + } }, "pf-t--global--breakpoint--height--md": { - "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "40rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.250}" - }, - "name": "pf-t--global--breakpoint--height--md", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "md" - }, - "path": [ - "global", - "breakpoint", - "height", - "md" - ], - "references": [ - { + "value": "40rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define a medium height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "40rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.breakpoint.250}" + }, + "name": "pf-t--global--breakpoint--height--md", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "md" + }, + "path": [ + "global", + "breakpoint", + "height", + "md" + ], + "references": [ + { "type": "number", - "value": 640 - }, - "name": "pf-t--global--breakpoint--250", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "250" - }, - "path": [ - "global", - "breakpoint", - "250" - ] - } - ] + "value": "40rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 640 + }, + "name": "pf-t--global--breakpoint--250", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "250" + }, + "path": [ + "global", + "breakpoint", + "250" + ] + } + ] + } }, "pf-t--global--breakpoint--height--lg": { - "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "48rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.300}" - }, - "name": "pf-t--global--breakpoint--height--lg", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "lg" - }, - "path": [ - "global", - "breakpoint", - "height", - "lg" - ], - "references": [ - { + "value": "48rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define a large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "48rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.breakpoint.300}" + }, + "name": "pf-t--global--breakpoint--height--lg", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "lg" + }, + "path": [ + "global", + "breakpoint", + "height", + "lg" + ], + "references": [ + { "type": "number", - "value": 768 - }, - "name": "pf-t--global--breakpoint--300", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "300" - }, - "path": [ - "global", - "breakpoint", - "300" - ] - } - ] + "value": "48rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + } + ] + } }, "pf-t--global--breakpoint--height--xl": { - "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "60rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.350}" - }, - "name": "pf-t--global--breakpoint--height--xl", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "xl" - }, - "path": [ - "global", - "breakpoint", - "height", - "xl" - ], - "references": [ - { + "value": "60rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define an extra large height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "60rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.breakpoint.350}" + }, + "name": "pf-t--global--breakpoint--height--xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "xl" + }, + "path": [ + "global", + "breakpoint", + "height", + "xl" + ], + "references": [ + { "type": "number", - "value": 960 - }, - "name": "pf-t--global--breakpoint--350", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "350" - }, - "path": [ - "global", - "breakpoint", - "350" - ] - } - ] + "value": "60rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 960 + }, + "name": "pf-t--global--breakpoint--350", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "350" + }, + "path": [ + "global", + "breakpoint", + "350" + ] + } + ] + } }, "pf-t--global--breakpoint--height--2xl": { - "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", - "type": "number", - "value": "80rem", - "filePath": "tokens/default/semantic.dimension.json", - "isSource": true, - "original": { + "default": { "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "{global.breakpoint.550}" - }, - "name": "pf-t--global--breakpoint--height--2xl", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "height", - "subitem": "2xl" - }, - "path": [ - "global", - "breakpoint", - "height", - "2xl" - ], - "references": [ - { + "value": "80rem", + "filePath": "tokens/default/semantic.dimension.json", + "isSource": true, + "original": { + "description": "Use to define an extra small height breakpoint, which is the minimum height at which an effect applies to an element, in order to support responsive design.", "type": "number", - "value": "80rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "value": "{global.breakpoint.550}" + }, + "name": "pf-t--global--breakpoint--height--2xl", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "height", + "subitem": "2xl" + }, + "path": [ + "global", + "breakpoint", + "height", + "2xl" + ], + "references": [ + { "type": "number", - "value": 1280 - }, - "name": "pf-t--global--breakpoint--550", - "attributes": { - "category": "global", - "type": "breakpoint", - "item": "550" - }, - "path": [ - "global", - "breakpoint", - "550" - ] - } - ] + "value": "80rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1280 + }, + "name": "pf-t--global--breakpoint--550", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "550" + }, + "path": [ + "global", + "breakpoint", + "550" + ] + } + ] + } } }, "motion": { "pf-t--global--motion--duration--xs": { - "description": "Use for the quickest possible duration of an animation.", - "type": "number", - "value": "50ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use for the quickest possible duration of an animation.", "type": "number", - "value": "{global.duration.50}" - }, - "name": "pf-t--global--motion--duration--xs", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xs" - }, - "path": [ - "global", - "motion", - "duration", - "xs" - ], - "references": [ - { + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for the quickest possible duration of an animation.", "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.50}" + }, + "name": "pf-t--global--motion--duration--xs", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xs" + }, + "path": [ + "global", + "motion", + "duration", + "xs" + ], + "references": [ + { "type": "number", - "value": 50 - }, - "name": "pf-t--global--duration--50", - "attributes": { - "category": "global", - "type": "duration", - "item": "50" - }, - "path": [ - "global", - "duration", - "50" - ] - } - ] + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + } + ] + } }, "pf-t--global--motion--duration--sm": { - "description": "Use for a short animation duration. Use for simple and/or small animations.", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", - "value": "{global.duration.100}" - }, - "name": "pf-t--global--motion--duration--sm", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "sm" - }, - "path": [ - "global", - "motion", - "duration", - "sm" - ], - "references": [ - { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", + "type": "number", + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { "type": "number", - "value": 100 - }, - "name": "pf-t--global--duration--100", - "attributes": { - "category": "global", - "type": "duration", - "item": "100" - }, - "path": [ - "global", - "duration", - "100" - ] - } - ] + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + } }, "pf-t--global--motion--duration--md": { - "description": "Use for a medium animation duration.", - "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use for a medium animation duration.", "type": "number", - "value": "{global.duration.200}" - }, - "name": "pf-t--global--motion--duration--md", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "md" - }, - "path": [ - "global", - "motion", - "duration", - "md" - ], - "references": [ - { + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a medium animation duration.", "type": "number", - "value": "200ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { "type": "number", - "value": 200 - }, - "name": "pf-t--global--duration--200", - "attributes": { - "category": "global", - "type": "duration", - "item": "200" - }, - "path": [ - "global", - "duration", - "200" - ] - } - ] + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + } }, "pf-t--global--motion--duration--lg": { - "description": "Use for long animation duration. Use for larger, more expressive animations.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", - "value": "{global.duration.300}" - }, - "name": "pf-t--global--motion--duration--lg", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "lg" - }, - "path": [ - "global", - "motion", - "duration", - "lg" - ], - "references": [ - { + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - } - ] + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } }, "pf-t--global--motion--duration--xl": { - "description": "Use for extra long animation duration.", - "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use for extra long animation duration.", "type": "number", - "value": "{global.duration.400}" - }, - "name": "pf-t--global--motion--duration--xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xl" - }, - "path": [ - "global", - "motion", - "duration", - "xl" - ], - "references": [ - { + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for extra long animation duration.", "type": "number", - "value": "400ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { "type": "number", - "value": 400 - }, - "name": "pf-t--global--duration--400", - "attributes": { - "category": "global", - "type": "duration", - "item": "400" - }, - "path": [ - "global", - "duration", - "400" - ] - } - ] + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + } }, "pf-t--global--motion--duration--2xl": { - "description": "Use for significantly long animation duration.", - "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use for significantly long animation duration.", "type": "number", - "value": "{global.duration.500}" - }, - "name": "pf-t--global--motion--duration--2xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "2xl" - }, - "path": [ - "global", - "motion", - "duration", - "2xl" - ], - "references": [ - { + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for significantly long animation duration.", "type": "number", - "value": "500ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { "type": "number", - "value": 500 - }, - "name": "pf-t--global--duration--500", - "attributes": { - "category": "global", - "type": "duration", - "item": "500" - }, - "path": [ - "global", - "duration", - "500" - ] - } - ] + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + } }, "pf-t--global--motion--duration--3xl": { - "description": "Use for the longest possible duration of an animation.", - "type": "number", - "value": "600ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use for the longest possible duration of an animation.", "type": "number", - "value": "{global.duration.600}" - }, - "name": "pf-t--global--motion--duration--3xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "3xl" - }, - "path": [ - "global", - "motion", - "duration", - "3xl" - ], - "references": [ - { + "value": "600ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for the longest possible duration of an animation.", "type": "number", - "value": "600ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.600}" + }, + "name": "pf-t--global--motion--duration--3xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "3xl" + }, + "path": [ + "global", + "motion", + "duration", + "3xl" + ], + "references": [ + { "type": "number", - "value": 600 - }, - "name": "pf-t--global--duration--600", - "attributes": { - "category": "global", - "type": "duration", - "item": "600" - }, - "path": [ - "global", - "duration", - "600" - ] - } - ] + "value": "600ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--duration--600", + "attributes": { + "category": "global", + "type": "duration", + "item": "600" + }, + "path": [ + "global", + "duration", + "600" + ] + } + ] + } }, "pf-t--global--motion--duration--fade--short": { - "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", "type": "number", - "value": "{global.motion.duration.sm}" - }, - "name": "pf-t--global--motion--duration--fade--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "fade", - "state": "short" - }, - "path": [ - "global", - "motion", - "duration", - "fade", - "short" - ], - "references": [ - { - "description": "Use for a short animation duration. Use for simple and/or small animations.", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use a short/quick fade to transition color and/or opacity. Useful for fading in one or more elements. Short fades are used for small elements traveling short distances. Used in small interactions like buttons.", "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "value": "{global.motion.duration.sm}" + }, + "name": "pf-t--global--motion--duration--fade--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "short" + ], + "references": [ + { "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", - "value": "{global.duration.100}" - }, - "name": "pf-t--global--motion--duration--sm", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "sm" - }, - "path": [ - "global", - "motion", - "duration", - "sm" - ], - "references": [ - { + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { "type": "number", - "value": 100 - }, - "name": "pf-t--global--duration--100", - "attributes": { - "category": "global", - "type": "duration", - "item": "100" - }, - "path": [ - "global", - "duration", - "100" - ] - } - ] - } - ] + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--fade--default": { - "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", - "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", "type": "number", - "value": "{global.motion.duration.md}" - }, - "name": "pf-t--global--motion--duration--fade--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "fade", - "state": "default" - }, - "path": [ - "global", - "motion", - "duration", - "fade", - "default" - ], - "references": [ - { - "description": "Use for a medium animation duration.", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use a default fade to transition color and/or opacity. Useful for fading in one or more elements. Default fades are used for medium sized elements traveling medium distances. Used on alerts.", "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "value": "{global.motion.duration.md}" + }, + "name": "pf-t--global--motion--duration--fade--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "default" + ], + "references": [ + { "description": "Use for a medium animation duration.", "type": "number", - "value": "{global.duration.200}" - }, - "name": "pf-t--global--motion--duration--md", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "md" - }, - "path": [ - "global", - "motion", - "duration", - "md" - ], - "references": [ - { + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a medium animation duration.", "type": "number", - "value": "200ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { "type": "number", - "value": 200 - }, - "name": "pf-t--global--duration--200", - "attributes": { - "category": "global", - "type": "duration", - "item": "200" - }, - "path": [ - "global", - "duration", - "200" - ] - } - ] - } - ] + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--fade--long": { - "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", "type": "number", - "value": "{global.motion.duration.lg}" - }, - "name": "pf-t--global--motion--duration--fade--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "fade", - "state": "long" - }, - "path": [ - "global", - "motion", - "duration", - "fade", - "long" - ], - "references": [ - { - "description": "Use for long animation duration. Use for larger, more expressive animations.", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use a long fade to transition color and/or opacity. Useful for fading in one or more elements. Long fades are used for large elements traveling long distances.", "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--fade--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "fade", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "fade", + "long" + ], + "references": [ + { "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", - "value": "{global.duration.300}" - }, - "name": "pf-t--global--motion--duration--lg", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "lg" - }, - "path": [ - "global", - "motion", - "duration", - "lg" - ], - "references": [ - { + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - } - ] - } - ] + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--slide-out--short": { - "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", - "value": "{global.motion.duration.lg}" - }, - "name": "pf-t--global--motion--duration--slide-out--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-out", - "state": "short" - }, - "path": [ - "global", - "motion", - "duration", - "slide-out", - "short" - ], - "references": [ - { - "description": "Use for long animation duration. Use for larger, more expressive animations.", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a shorter duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--slide-out--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "short" + ], + "references": [ + { "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", - "value": "{global.duration.300}" - }, - "name": "pf-t--global--motion--duration--lg", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "lg" - }, - "path": [ - "global", - "motion", - "duration", - "lg" - ], - "references": [ - { + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - } - ] - } - ] + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--slide-out--default": { - "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", - "value": "{global.motion.duration.xl}" - }, - "name": "pf-t--global--motion--duration--slide-out--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-out", - "state": "default" - }, - "path": [ - "global", - "motion", - "duration", - "slide-out", - "default" - ], - "references": [ - { - "description": "Use for extra long animation duration.", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use as the default duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "value": "{global.motion.duration.xl}" + }, + "name": "pf-t--global--motion--duration--slide-out--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "default" + ], + "references": [ + { "description": "Use for extra long animation duration.", "type": "number", - "value": "{global.duration.400}" - }, - "name": "pf-t--global--motion--duration--xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xl" - }, - "path": [ - "global", - "motion", - "duration", - "xl" - ], - "references": [ - { + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for extra long animation duration.", "type": "number", - "value": "400ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { "type": "number", - "value": 400 - }, - "name": "pf-t--global--duration--400", - "attributes": { - "category": "global", - "type": "duration", - "item": "400" - }, - "path": [ - "global", - "duration", - "400" - ] - } - ] - } - ] + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--slide-out--long": { - "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", - "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", - "value": "{global.motion.duration.2xl}" - }, - "name": "pf-t--global--motion--duration--slide-out--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-out", - "state": "long" - }, - "path": [ - "global", - "motion", - "duration", - "slide-out", - "long" - ], - "references": [ - { - "description": "Use for significantly long animation duration.", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a longer duration of a slide-out animation, which moves an element out of the viewport.", "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "value": "{global.motion.duration.2xl}" + }, + "name": "pf-t--global--motion--duration--slide-out--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-out", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "slide-out", + "long" + ], + "references": [ + { "description": "Use for significantly long animation duration.", "type": "number", - "value": "{global.duration.500}" - }, - "name": "pf-t--global--motion--duration--2xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "2xl" - }, - "path": [ - "global", - "motion", - "duration", - "2xl" - ], - "references": [ - { + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for significantly long animation duration.", "type": "number", - "value": "500ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { "type": "number", - "value": 500 - }, - "name": "pf-t--global--duration--500", - "attributes": { - "category": "global", - "type": "duration", - "item": "500" - }, - "path": [ - "global", - "duration", - "500" - ] - } - ] - } - ] + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--slide-in--short": { - "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", - "value": "{global.motion.duration.lg}" - }, - "name": "pf-t--global--motion--duration--slide-in--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-in", - "state": "short" - }, - "path": [ - "global", - "motion", - "duration", - "slide-in", - "short" - ], - "references": [ - { - "description": "Use for long animation duration. Use for larger, more expressive animations.", + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a short duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", - "value": "300ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "value": "{global.motion.duration.lg}" + }, + "name": "pf-t--global--motion--duration--slide-in--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "short" + ], + "references": [ + { "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", - "value": "{global.duration.300}" - }, - "name": "pf-t--global--motion--duration--lg", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "lg" - }, - "path": [ - "global", - "motion", - "duration", - "lg" - ], - "references": [ - { + "value": "300ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for long animation duration. Use for larger, more expressive animations.", "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.300}" + }, + "name": "pf-t--global--motion--duration--lg", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "lg" + }, + "path": [ + "global", + "motion", + "duration", + "lg" + ], + "references": [ + { "type": "number", - "value": 300 - }, - "name": "pf-t--global--duration--300", - "attributes": { - "category": "global", - "type": "duration", - "item": "300" - }, - "path": [ - "global", - "duration", - "300" - ] - } - ] - } - ] + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--slide-in--default": { - "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", - "value": "{global.motion.duration.xl}" - }, - "name": "pf-t--global--motion--duration--slide-in--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-in", - "state": "default" - }, - "path": [ - "global", - "motion", - "duration", - "slide-in", - "default" - ], - "references": [ - { - "description": "Use for extra long animation duration.", + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a default duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", - "value": "400ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "value": "{global.motion.duration.xl}" + }, + "name": "pf-t--global--motion--duration--slide-in--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "default" + ], + "references": [ + { "description": "Use for extra long animation duration.", "type": "number", - "value": "{global.duration.400}" - }, - "name": "pf-t--global--motion--duration--xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xl" - }, - "path": [ - "global", - "motion", - "duration", - "xl" - ], - "references": [ - { + "value": "400ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for extra long animation duration.", "type": "number", - "value": "400ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.400}" + }, + "name": "pf-t--global--motion--duration--xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xl" + }, + "path": [ + "global", + "motion", + "duration", + "xl" + ], + "references": [ + { "type": "number", - "value": 400 - }, - "name": "pf-t--global--duration--400", - "attributes": { - "category": "global", - "type": "duration", - "item": "400" - }, - "path": [ - "global", - "duration", - "400" - ] - } - ] - } - ] + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--slide-in--long": { - "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", - "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", - "value": "{global.motion.duration.2xl}" - }, - "name": "pf-t--global--motion--duration--slide-in--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "slide-in", - "state": "long" - }, - "path": [ - "global", - "motion", - "duration", - "slide-in", - "long" - ], - "references": [ - { - "description": "Use for significantly long animation duration.", + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a longer duration of a slide-in animation, which moves an offscreen element into the viewport.", "type": "number", - "value": "500ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "value": "{global.motion.duration.2xl}" + }, + "name": "pf-t--global--motion--duration--slide-in--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "slide-in", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "slide-in", + "long" + ], + "references": [ + { "description": "Use for significantly long animation duration.", "type": "number", - "value": "{global.duration.500}" - }, - "name": "pf-t--global--motion--duration--2xl", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "2xl" - }, - "path": [ - "global", - "motion", - "duration", - "2xl" - ], - "references": [ - { + "value": "500ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for significantly long animation duration.", "type": "number", - "value": "500ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.500}" + }, + "name": "pf-t--global--motion--duration--2xl", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "2xl" + }, + "path": [ + "global", + "motion", + "duration", + "2xl" + ], + "references": [ + { "type": "number", - "value": 500 - }, - "name": "pf-t--global--duration--500", - "attributes": { - "category": "global", - "type": "duration", - "item": "500" - }, - "path": [ - "global", - "duration", - "500" - ] - } - ] - } - ] + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--icon--short": { - "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", - "type": "number", - "value": "50ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", "type": "number", - "value": "{global.motion.duration.xs}" - }, - "name": "pf-t--global--motion--duration--icon--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "icon", - "state": "short" - }, - "path": [ - "global", - "motion", - "duration", - "icon", - "short" - ], - "references": [ - { - "description": "Use for the quickest possible duration of an animation.", + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use a short duration on an icon that requires a fast/snappy transition. Used to define the speed at which an icon may animate. Used on a notification badge(stateful button).", "type": "number", - "value": "50ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "value": "{global.motion.duration.xs}" + }, + "name": "pf-t--global--motion--duration--icon--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "short" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "short" + ], + "references": [ + { "description": "Use for the quickest possible duration of an animation.", "type": "number", - "value": "{global.duration.50}" - }, - "name": "pf-t--global--motion--duration--xs", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "xs" - }, - "path": [ - "global", - "motion", - "duration", - "xs" - ], - "references": [ - { + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for the quickest possible duration of an animation.", "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.50}" + }, + "name": "pf-t--global--motion--duration--xs", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "xs" + }, + "path": [ + "global", + "motion", + "duration", + "xs" + ], + "references": [ + { "type": "number", - "value": 50 - }, - "name": "pf-t--global--duration--50", - "attributes": { - "category": "global", - "type": "duration", - "item": "50" - }, - "path": [ - "global", - "duration", - "50" - ] - } - ] - } - ] + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--icon--default": { - "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", "type": "number", - "value": "{global.motion.duration.sm}" - }, - "name": "pf-t--global--motion--duration--icon--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "icon", - "state": "default" - }, - "path": [ - "global", - "motion", - "duration", - "icon", - "default" - ], - "references": [ - { - "description": "Use for a short animation duration. Use for simple and/or small animations.", + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use a default duration on an icon that requires a moderately timed transition. Used to define the speed at which an icon may animate. Used on a favoriting star(icon button).", "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "value": "{global.motion.duration.sm}" + }, + "name": "pf-t--global--motion--duration--icon--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "default" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "default" + ], + "references": [ + { "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", - "value": "{global.duration.100}" - }, - "name": "pf-t--global--motion--duration--sm", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "sm" - }, - "path": [ - "global", - "motion", - "duration", - "sm" - ], - "references": [ - { + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a short animation duration. Use for simple and/or small animations.", "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.100}" + }, + "name": "pf-t--global--motion--duration--sm", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "sm" + }, + "path": [ + "global", + "motion", + "duration", + "sm" + ], + "references": [ + { "type": "number", - "value": 100 - }, - "name": "pf-t--global--duration--100", - "attributes": { - "category": "global", - "type": "duration", - "item": "100" - }, - "path": [ - "global", - "duration", - "100" - ] - } - ] - } - ] + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } + ] + } + ] + } }, "pf-t--global--motion--duration--icon--long": { - "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", - "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", "type": "number", - "value": "{global.motion.duration.md}" - }, - "name": "pf-t--global--motion--duration--icon--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "icon", - "state": "long" - }, - "path": [ - "global", - "motion", - "duration", - "icon", - "long" - ], - "references": [ - { - "description": "Use for a medium animation duration.", + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use a long duration on an icon that requires a slow transition. Used to define the speed at which an icon may animate. Used on the settings cog icon(plain menu toggle).", "type": "number", - "value": "200ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "value": "{global.motion.duration.md}" + }, + "name": "pf-t--global--motion--duration--icon--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "icon", + "state": "long" + }, + "path": [ + "global", + "motion", + "duration", + "icon", + "long" + ], + "references": [ + { "description": "Use for a medium animation duration.", "type": "number", - "value": "{global.duration.200}" - }, - "name": "pf-t--global--motion--duration--md", - "attributes": { - "category": "global", - "type": "motion", - "item": "duration", - "subitem": "md" - }, - "path": [ - "global", - "motion", - "duration", - "md" - ], - "references": [ - { + "value": "200ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use for a medium animation duration.", "type": "number", - "value": "200ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.duration.200}" + }, + "name": "pf-t--global--motion--duration--md", + "attributes": { + "category": "global", + "type": "motion", + "item": "duration", + "subitem": "md" + }, + "path": [ + "global", + "motion", + "duration", + "md" + ], + "references": [ + { "type": "number", - "value": 200 - }, - "name": "pf-t--global--duration--200", - "attributes": { - "category": "global", - "type": "duration", - "item": "200" - }, - "path": [ - "global", - "duration", - "200" - ] - } - ] - } - ] + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } + ] + } + ] + } }, "pf-t--global--motion--delay--none": { - "description": "Use when there should be no delay before an animation plays.", - "type": "number", - "value": "0ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use when there should be no delay before an animation plays.", "type": "number", - "value": "{global.delay.100}" - }, - "name": "pf-t--global--motion--delay--none", - "attributes": { - "category": "global", - "type": "motion", - "item": "delay", - "subitem": "none" - }, - "path": [ - "global", - "motion", - "delay", - "none" - ], - "references": [ - { + "value": "0ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use when there should be no delay before an animation plays.", "type": "number", - "value": "0ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.delay.100}" + }, + "name": "pf-t--global--motion--delay--none", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "none" + }, + "path": [ + "global", + "motion", + "delay", + "none" + ], + "references": [ + { "type": "number", - "value": 0 - }, - "name": "pf-t--global--delay--100", - "attributes": { - "category": "global", - "type": "delay", - "item": "100" - }, - "path": [ - "global", - "delay", - "100" - ] - } - ] + "value": "0ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--delay--100", + "attributes": { + "category": "global", + "type": "delay", + "item": "100" + }, + "path": [ + "global", + "delay", + "100" + ] + } + ] + } }, "pf-t--global--motion--delay--short": { - "description": "Use when there should be a short delay before an animation plays.", - "type": "number", - "value": "50ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use when there should be a short delay before an animation plays.", "type": "number", - "value": "{global.delay.200}" - }, - "name": "pf-t--global--motion--delay--short", - "attributes": { - "category": "global", - "type": "motion", - "item": "delay", - "subitem": "short" - }, - "path": [ - "global", - "motion", - "delay", - "short" - ], - "references": [ - { + "value": "50ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use when there should be a short delay before an animation plays.", "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.delay.200}" + }, + "name": "pf-t--global--motion--delay--short", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "short" + }, + "path": [ + "global", + "motion", + "delay", + "short" + ], + "references": [ + { "type": "number", - "value": 50 - }, - "name": "pf-t--global--delay--200", - "attributes": { - "category": "global", - "type": "delay", - "item": "200" - }, - "path": [ - "global", - "delay", - "200" - ] - } - ] + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--delay--200", + "attributes": { + "category": "global", + "type": "delay", + "item": "200" + }, + "path": [ + "global", + "delay", + "200" + ] + } + ] + } }, "pf-t--global--motion--delay--default": { - "description": "Use when there should be the default delay length before an animation plays.", - "type": "number", - "value": "100ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use when there should be the default delay length before an animation plays.", "type": "number", - "value": "{global.delay.300}" - }, - "name": "pf-t--global--motion--delay--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "delay", - "subitem": "default" - }, - "path": [ - "global", - "motion", - "delay", - "default" - ], - "references": [ - { + "value": "100ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use when there should be the default delay length before an animation plays.", "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.delay.300}" + }, + "name": "pf-t--global--motion--delay--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "default" + }, + "path": [ + "global", + "motion", + "delay", + "default" + ], + "references": [ + { "type": "number", - "value": 100 - }, - "name": "pf-t--global--delay--300", - "attributes": { - "category": "global", - "type": "delay", - "item": "300" - }, - "path": [ - "global", - "delay", - "300" - ] - } - ] + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--delay--300", + "attributes": { + "category": "global", + "type": "delay", + "item": "300" + }, + "path": [ + "global", + "delay", + "300" + ] + } + ] + } }, "pf-t--global--motion--delay--long": { - "description": "Use when there should be a long delay before an animation plays.", - "type": "number", - "value": "7000ms", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use when there should be a long delay before an animation plays.", "type": "number", - "value": "{global.delay.400}" - }, - "name": "pf-t--global--motion--delay--long", - "attributes": { - "category": "global", - "type": "motion", - "item": "delay", - "subitem": "long" - }, - "path": [ - "global", - "motion", - "delay", - "long" - ], - "references": [ - { + "value": "7000ms", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use when there should be a long delay before an animation plays.", "type": "number", - "value": "7000ms", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "{global.delay.400}" + }, + "name": "pf-t--global--motion--delay--long", + "attributes": { + "category": "global", + "type": "motion", + "item": "delay", + "subitem": "long" + }, + "path": [ + "global", + "motion", + "delay", + "long" + ], + "references": [ + { "type": "number", - "value": 7000 - }, - "name": "pf-t--global--delay--400", - "attributes": { - "category": "global", - "type": "delay", - "item": "400" - }, - "path": [ - "global", - "delay", - "400" - ] - } - ] - }, + "value": "7000ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 7000 + }, + "name": "pf-t--global--delay--400", + "attributes": { + "category": "global", + "type": "delay", + "item": "400" + }, + "path": [ + "global", + "delay", + "400" + ] + } + ] + } + }, "pf-t--global--motion--timing-function--accelerate": { - "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", - "type": "number", - "value": "cubic-bezier(.4, 0, .7, .2)", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", "type": "number", - "value": "{global.timing-function.100}" - }, - "name": "pf-t--global--motion--timing-function--accelerate", - "attributes": { - "category": "global", - "type": "motion", - "item": "timing-function", - "subitem": "accelerate" - }, - "path": [ - "global", - "motion", - "timing-function", - "accelerate" - ], - "references": [ - { - "type": "string", - "value": "cubic-bezier(.4, 0, .7, .2)", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use accelerate to specify that the animation starts slowly and accelerates gradually until the end. Timing function controls the pace of an animation transition. Acceleration is our equivalent to an ease-in.", + "type": "number", + "value": "{global.timing-function.100}" + }, + "name": "pf-t--global--motion--timing-function--accelerate", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "accelerate" + }, + "path": [ + "global", + "motion", + "timing-function", + "accelerate" + ], + "references": [ + { "type": "string", - "value": "cubic-bezier(.4, 0, .7, .2)" - }, - "name": "pf-t--global--timing-function--100", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "100" - }, - "path": [ - "global", - "timing-function", - "100" - ] - } - ] + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)" + }, + "name": "pf-t--global--timing-function--100", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "100" + }, + "path": [ + "global", + "timing-function", + "100" + ] + } + ] + } }, "pf-t--global--motion--timing-function--default": { - "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", - "type": "number", - "value": "cubic-bezier(.4, 0, .2, 1)", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", "type": "number", - "value": "{global.timing-function.200}" - }, - "name": "pf-t--global--motion--timing-function--default", - "attributes": { - "category": "global", - "type": "motion", - "item": "timing-function", - "subitem": "default" - }, - "path": [ - "global", - "motion", - "timing-function", - "default" - ], - "references": [ - { - "type": "string", - "value": "cubic-bezier(.4, 0, .2, 1)", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use default to specify that the animation starts slow, speeds up and slows down at the end. Timing function controls the pace of an animation transition. Default is our equivalent to an ease-in-out.", + "type": "number", + "value": "{global.timing-function.200}" + }, + "name": "pf-t--global--motion--timing-function--default", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "default" + }, + "path": [ + "global", + "motion", + "timing-function", + "default" + ], + "references": [ + { "type": "string", - "value": "cubic-bezier(.4, 0, .2, 1)" - }, - "name": "pf-t--global--timing-function--200", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "200" - }, - "path": [ - "global", - "timing-function", - "200" - ] - } - ] + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--200", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "200" + }, + "path": [ + "global", + "timing-function", + "200" + ] + } + ] + } }, "pf-t--global--motion--timing-function--decelerate": { - "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", - "type": "number", - "value": "cubic-bezier(0, 0, .2, 1)", - "filePath": "tokens/default/semantic.motion.json", - "isSource": true, - "original": { + "default": { "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", "type": "number", - "value": "{global.timing-function.300}" - }, - "name": "pf-t--global--motion--timing-function--decelerate", - "attributes": { - "category": "global", - "type": "motion", - "item": "timing-function", - "subitem": "decelerate" - }, - "path": [ - "global", - "motion", - "timing-function", - "decelerate" - ], - "references": [ - { - "type": "string", - "value": "cubic-bezier(0, 0, .2, 1)", - "filePath": "tokens/default/base.motion.json", - "isSource": true, - "original": { + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/semantic.motion.json", + "isSource": true, + "original": { + "description": "Use decelerate to specify that the animation starts quickly and decelerates gradually until the end. Timing function controls the pace of an animation transition. Deceleration is our equivalent to an ease-out.", + "type": "number", + "value": "{global.timing-function.300}" + }, + "name": "pf-t--global--motion--timing-function--decelerate", + "attributes": { + "category": "global", + "type": "motion", + "item": "timing-function", + "subitem": "decelerate" + }, + "path": [ + "global", + "motion", + "timing-function", + "decelerate" + ], + "references": [ + { "type": "string", - "value": "cubic-bezier(0, 0, .2, 1)" - }, - "name": "pf-t--global--timing-function--300", - "attributes": { - "category": "global", - "type": "timing-function", - "item": "300" - }, - "path": [ - "global", - "timing-function", - "300" - ] - } - ] + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--300", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "300" + }, + "path": [ + "global", + "timing-function", + "300" + ] + } + ] + } } } }, "base": { "colors": { "pf-t--global--icon--color--100": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--global--icon--color--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "color", - "100" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.90}" + }, + "name": "pf-t--global--icon--color--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } }, "pf-t--global--icon--color--200": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--icon--color--200", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "icon", - "color", - "200" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--global--icon--color--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - }, - "pf-t--global--icon--color--300": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + }, + "pf-t--global--icon--color--300": { + "default": { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--icon--color--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "color", - "300" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.white}" + }, + "name": "pf-t--global--icon--color--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } }, "pf-t--global--border--color--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--border--color--100", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "border", - "color", - "100" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--global--border--color--100", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "border", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } }, "pf-t--global--border--color--200": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--border--color--200", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "border", - "color", - "200" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--global--border--color--200", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "border", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } }, "pf-t--global--border--color--300": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--border--color--300", - "attributes": { - "category": "global", - "type": "border", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "border", - "color", - "300" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--global--border--color--300", + "attributes": { + "category": "global", + "type": "border", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "border", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } }, "pf-t--global--box-shadow--color--100": { - "type": "color", - "value": "rgba(0, 0, 0, 0.1600)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "rgba(0, 0, 0, 0.1600)" - }, - "name": "pf-t--global--box-shadow--color--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "color", - "100" - ] + "value": "rgba(0, 0, 0, 0.1600)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1600)" + }, + "name": "pf-t--global--box-shadow--color--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "color", + "100" + ] + } }, "pf-t--global--box-shadow--color--200": { - "type": "color", - "value": "rgba(0, 0, 0, 0.1200)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "rgba(0, 0, 0, 0.1200)" - }, - "name": "pf-t--global--box-shadow--color--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "color", - "200" - ] + "value": "rgba(0, 0, 0, 0.1200)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(0, 0, 0, 0.1200)" + }, + "name": "pf-t--global--box-shadow--color--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "color", + "200" + ] + } }, "pf-t--global--background--color--100": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--background--color--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "background", - "color", - "100" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.white}" + }, + "name": "pf-t--global--background--color--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "background", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } }, "pf-t--global--background--color--200": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--global--background--color--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "background", - "color", - "200" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.10}" + }, + "name": "pf-t--global--background--color--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "background", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } }, "pf-t--global--background--color--300": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--background--color--300", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "background", - "color", - "300" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.20}" + }, + "name": "pf-t--global--background--color--300", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "background", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } }, "pf-t--global--background--color--400": { - "type": "color", - "value": "#292929", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.80}" - }, - "name": "pf-t--global--background--color--400", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "400" - }, - "path": [ - "global", - "background", - "color", - "400" - ], - "references": [ - { + "value": "#292929", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#292929", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.80}" + }, + "name": "pf-t--global--background--color--400", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "background", + "color", + "400" + ], + "references": [ + { "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - } - ] + "value": "#292929", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#292929" + }, + "name": "pf-t--color--gray--80", + "attributes": { + "category": "color", + "type": "gray", + "item": "80" + }, + "path": [ + "color", + "gray", + "80" + ] + } + ] + } }, "pf-t--global--background--color--500": { - "type": "color", - "value": "rgba(21, 21, 21, 0.2000)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "rgba(21, 21, 21, 0.2000)" - }, - "name": "pf-t--global--background--color--500", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "500" - }, - "path": [ - "global", - "background", - "color", - "500" - ] + "value": "rgba(21, 21, 21, 0.2000)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(21, 21, 21, 0.2000)" + }, + "name": "pf-t--global--background--color--500", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "500" + }, + "path": [ + "global", + "background", + "color", + "500" + ] + } }, "pf-t--global--background--color--600": { - "type": "color", - "value": "rgba(199, 199, 199, 0.2500)", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "rgba(199, 199, 199, 0.2500)" - }, - "name": "pf-t--global--background--color--600", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "600" - }, - "path": [ - "global", - "background", - "color", - "600" - ] + "value": "rgba(199, 199, 199, 0.2500)", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "rgba(199, 199, 199, 0.2500)" + }, + "name": "pf-t--global--background--color--600", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "600" + }, + "path": [ + "global", + "background", + "color", + "600" + ] + } }, "pf-t--global--background--color--highlight--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--background--color--highlight--100", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "100" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--background--color--highlight--100", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "100" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } }, "pf-t--global--background--color--highlight--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--background--color--highlight--200", - "attributes": { - "category": "global", - "type": "background", - "item": "color", - "subitem": "highlight", - "state": "200" - }, - "path": [ - "global", - "background", - "color", - "highlight", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--background--color--highlight--200", + "attributes": { + "category": "global", + "type": "background", + "item": "color", + "subitem": "highlight", + "state": "200" + }, + "path": [ + "global", + "background", + "color", + "highlight", + "200" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - }, - "pf-t--global--color--brand--100": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--brand--100", - "attributes": { - "category": "global", - "type": "color", - "item": "brand", - "subitem": "100" - }, - "path": [ - "global", - "color", - "brand", - "100" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + }, + "pf-t--global--color--brand--100": { + "default": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--brand--100", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "100" + }, + "path": [ + "global", + "color", + "brand", + "100" + ], + "references": [ + { "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } }, "pf-t--global--color--brand--200": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--color--brand--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "brand", - "subitem": "200" - }, - "path": [ - "global", - "color", - "brand", - "200" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.50}" + }, + "name": "pf-t--global--color--brand--200", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "200" + }, + "path": [ + "global", + "color", + "brand", + "200" + ], + "references": [ + { "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } }, "pf-t--global--color--brand--300": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--color--brand--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "brand", - "subitem": "300" - }, - "path": [ - "global", - "color", - "brand", - "300" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.60}" + }, + "name": "pf-t--global--color--brand--300", + "attributes": { + "category": "global", + "type": "color", + "item": "brand", + "subitem": "300" + }, + "path": [ + "global", + "color", + "brand", + "300" + ], + "references": [ + { "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } }, "pf-t--global--color--disabled--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--disabled--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "disabled", - "subitem": "100" - }, - "path": [ - "global", - "color", - "disabled", - "100" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--disabled--100", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "100" + }, + "path": [ + "global", + "color", + "disabled", + "100" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } }, "pf-t--global--color--disabled--200": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--disabled--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "disabled", - "subitem": "200" - }, - "path": [ - "global", - "color", - "disabled", - "200" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--disabled--200", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "200" + }, + "path": [ + "global", + "color", + "disabled", + "200" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } }, "pf-t--global--color--disabled--300": { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--global--color--disabled--300", - "attributes": { - "category": "global", - "type": "color", - "item": "disabled", - "subitem": "300" - }, - "path": [ - "global", - "color", - "disabled", - "300" - ], - "references": [ - { + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.60}" + }, + "name": "pf-t--global--color--disabled--300", + "attributes": { + "category": "global", + "type": "color", + "item": "disabled", + "subitem": "300" + }, + "path": [ + "global", + "color", + "disabled", + "300" + ], + "references": [ + { "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } }, "pf-t--global--color--favorite--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--favorite--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "favorite", - "subitem": "100" - }, - "path": [ - "global", - "color", - "favorite", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--favorite--100", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "100" + }, + "path": [ + "global", + "color", + "favorite", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } }, "pf-t--global--color--favorite--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--favorite--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "favorite", - "subitem": "200" - }, - "path": [ - "global", - "color", - "favorite", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--favorite--200", + "attributes": { + "category": "global", + "type": "color", + "item": "favorite", + "subitem": "200" + }, + "path": [ + "global", + "color", + "favorite", + "200" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } }, "pf-t--global--color--status--success--100": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--global--color--status--success--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "success", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "success", - "100" - ], - "references": [ - { + "value": "#3d7317", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.60}" + }, + "name": "pf-t--global--color--status--success--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "success", + "100" + ], + "references": [ + { "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } }, "pf-t--global--color--status--success--200": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--global--color--status--success--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "success", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "success", - "200" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.70}" + }, + "name": "pf-t--global--color--status--success--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "success", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "success", + "200" + ], + "references": [ + { "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } }, "pf-t--global--color--status--warning--100": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--status--warning--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "warning", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "warning", - "100" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--status--warning--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "warning", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } }, "pf-t--global--color--status--warning--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--status--warning--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "warning", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "warning", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--status--warning--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "warning", + "200" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } }, "pf-t--global--color--status--warning--300": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--global--color--status--warning--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "warning", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "warning", - "300" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.50}" + }, + "name": "pf-t--global--color--status--warning--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "warning", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "warning", + "300" + ], + "references": [ + { "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } }, "pf-t--global--color--status--danger--100": { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--status--danger--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "danger", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "danger", - "100" - ], - "references": [ - { + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--status--danger--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "danger", + "100" + ], + "references": [ + { "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } }, "pf-t--global--color--status--danger--200": { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "danger", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "danger", - "200" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "danger", + "200" + ], + "references": [ + { "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } }, "pf-t--global--color--status--danger--300": { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--global--color--status--danger--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "danger", - "state": "300" - }, - "path": [ - "global", - "color", - "status", - "danger", - "300" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.70}" + }, + "name": "pf-t--global--color--status--danger--300", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "danger", + "state": "300" + }, + "path": [ + "global", + "color", + "status", + "danger", + "300" + ], + "references": [ + { "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } }, "pf-t--global--color--status--info--100": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--color--status--info--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "status", - "subitem": "info", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "info", - "100" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.50}" + }, + "name": "pf-t--global--color--status--info--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "info", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "info", + "100" + ], + "references": [ + { "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } }, "pf-t--global--color--status--info--200": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--global--color--status--info--200", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "info", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "info", - "200" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - }, - "pf-t--global--color--status--custom--100": { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--global--color--status--custom--100", - "attributes": { - "category": "global", - "type": "color", - "item": "status", - "subitem": "custom", - "state": "100" - }, - "path": [ - "global", - "color", - "status", - "custom", - "100" - ], - "references": [ - { + "value": "{color.purple.60}" + }, + "name": "pf-t--global--color--status--info--200", + "attributes": { + "category": "global", "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] + "item": "status", + "subitem": "info", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "info", + "200" + ], + "references": [ + { + "type": "color", + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } }, - "pf-t--global--color--status--custom--200": { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "pf-t--global--color--status--custom--100": { + "default": { "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--global--color--status--custom--200", - "attributes": { - "category": "global", + "value": "#147878", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.teal.60}" + }, + "name": "pf-t--global--color--status--custom--100", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "100" + }, + "path": [ + "global", + "color", + "status", + "custom", + "100" + ], + "references": [ + { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + }, + "pf-t--global--color--status--custom--200": { + "default": { "type": "color", - "item": "status", - "subitem": "custom", - "state": "200" - }, - "path": [ - "global", - "color", - "status", - "custom", - "200" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.70}" + }, + "name": "pf-t--global--color--status--custom--200", + "attributes": { + "category": "global", + "type": "color", + "item": "status", + "subitem": "custom", + "state": "200" + }, + "path": [ + "global", + "color", + "status", + "custom", + "200" + ], + "references": [ + { "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } }, "pf-t--global--color--severity--undefined--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--severity--undefined--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "severity", - "subitem": "undefined", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "undefined", - "100" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--severity--undefined--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "undefined", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "undefined", + "100" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } }, "pf-t--global--color--severity--none--100": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--severity--none--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "severity", - "subitem": "none", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "none", - "100" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--severity--none--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "none", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "none", + "100" + ], + "references": [ + { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } }, "pf-t--global--color--severity--minor--100": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--global--color--severity--minor--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "severity", - "subitem": "minor", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "minor", - "100" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--global--color--severity--minor--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "minor", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "minor", + "100" + ], + "references": [ + { "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } }, "pf-t--global--color--severity--moderate--100": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--severity--moderate--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "severity", - "subitem": "moderate", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "moderate", - "100" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--severity--moderate--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "moderate", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "moderate", + "100" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } }, "pf-t--global--color--severity--important--100": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--global--color--severity--important--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "severity", - "subitem": "important", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "important", - "100" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.50}" + }, + "name": "pf-t--global--color--severity--important--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "important", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "important", + "100" + ], + "references": [ + { "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } }, "pf-t--global--color--severity--critical--100": { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--global--color--severity--critical--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "severity", - "subitem": "critical", - "state": "100" - }, - "path": [ - "global", - "color", - "severity", - "critical", - "100" - ], - "references": [ - { + "value": "#b1380b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.60}" + }, + "name": "pf-t--global--color--severity--critical--100", + "attributes": { + "category": "global", + "type": "color", + "item": "severity", + "subitem": "critical", + "state": "100" + }, + "path": [ + "global", + "color", + "severity", + "critical", + "100" + ], + "references": [ + { "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } }, "pf-t--global--color--nonstatus--red--100": { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.20}" - }, - "name": "pf-t--global--color--nonstatus--red--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "100" - ], - "references": [ - { + "value": "#fbc5c5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red.20}" + }, + "name": "pf-t--global--color--nonstatus--red--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "100" + ], + "references": [ + { "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] - } - ] + "value": "#fbc5c5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } + ] + } }, "pf-t--global--color--nonstatus--red--200": { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.red.30}" - }, - "name": "pf-t--global--color--nonstatus--red--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "200" - ], - "references": [ - { + "value": "#f9a8a8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red.30}" + }, + "name": "pf-t--global--color--nonstatus--red--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "200" + ], + "references": [ + { "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] - } - ] + "value": "#f9a8a8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--red--300": { - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red.40}" - }, - "name": "pf-t--global--color--nonstatus--red--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "red", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "red", - "300" - ], - "references": [ - { + "value": "#f56e6e", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red.40}" + }, + "name": "pf-t--global--color--nonstatus--red--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "red", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "red", + "300" + ], + "references": [ + { "type": "color", - "value": "#f56e6e" - }, - "name": "pf-t--color--red--40", - "attributes": { - "category": "color", - "type": "red", - "item": "40" - }, - "path": [ - "color", - "red", - "40" - ] - } - ] + "value": "#f56e6e", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + } + ] + } }, "pf-t--global--color--nonstatus--orangered--100": { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.20}" - }, - "name": "pf-t--global--color--nonstatus--orangered--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "100" - ], - "references": [ - { + "value": "#fbbea8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#fbbea8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orangered--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "100" + ], + "references": [ + { "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] - } - ] + "value": "#fbbea8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } + ] + } }, "pf-t--global--color--nonstatus--orangered--200": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orangered--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "200" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orangered--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "200" + ], + "references": [ + { "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--orangered--300": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--color--nonstatus--orangered--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "orangered", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "orangered", - "300" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orangered--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orangered", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orangered", + "300" + ], + "references": [ + { "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } }, "pf-t--global--color--nonstatus--orange--100": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.orange.20}" - }, - "name": "pf-t--global--color--nonstatus--orange--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "100" - ], - "references": [ - { + "value": "#fccb8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#fccb8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.20}" + }, + "name": "pf-t--global--color--nonstatus--orange--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "100" + ], + "references": [ + { "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] - } - ] + "value": "#fccb8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } + ] + } }, "pf-t--global--color--nonstatus--orange--200": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--global--color--nonstatus--orange--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "200" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.30}" + }, + "name": "pf-t--global--color--nonstatus--orange--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "200" + ], + "references": [ + { "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--orange--300": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--global--color--nonstatus--orange--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "orange", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "orange", - "300" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.40}" + }, + "name": "pf-t--global--color--nonstatus--orange--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "orange", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "orange", + "300" + ], + "references": [ + { "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } }, "pf-t--global--color--nonstatus--yellow--100": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--global--color--nonstatus--yellow--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "100" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.20}" + }, + "name": "pf-t--global--color--nonstatus--yellow--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } }, "pf-t--global--color--nonstatus--yellow--200": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--global--color--nonstatus--yellow--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "200" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--global--color--nonstatus--yellow--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--yellow--300": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--global--color--nonstatus--yellow--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "yellow", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "yellow", - "300" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--global--color--nonstatus--yellow--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "yellow", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "yellow", + "300" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } }, "pf-t--global--color--nonstatus--green--100": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.20}" - }, - "name": "pf-t--global--color--nonstatus--green--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "100" - ], - "references": [ - { + "value": "#d1f1bb", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.20}" + }, + "name": "pf-t--global--color--nonstatus--green--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "100" + ], + "references": [ + { "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] - } - ] + "value": "#d1f1bb", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } + ] + } }, "pf-t--global--color--nonstatus--green--200": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--global--color--nonstatus--green--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "200" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.30}" + }, + "name": "pf-t--global--color--nonstatus--green--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "200" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--green--300": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--global--color--nonstatus--green--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "green", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "green", - "300" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.40}" + }, + "name": "pf-t--global--color--nonstatus--green--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "green", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "green", + "300" + ], + "references": [ + { "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } }, "pf-t--global--color--nonstatus--teal--100": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.teal.20}" - }, - "name": "pf-t--global--color--nonstatus--teal--100", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "100" - ], - "references": [ - { + "value": "#b9e5e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.20}" + }, + "name": "pf-t--global--color--nonstatus--teal--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "100" + ], + "references": [ + { "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - } - ] + "value": "#b9e5e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9e5e5" + }, + "name": "pf-t--color--teal--20", + "attributes": { + "category": "color", + "type": "teal", + "item": "20" + }, + "path": [ + "color", + "teal", + "20" + ] + } + ] + } }, "pf-t--global--color--nonstatus--teal--200": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--global--color--nonstatus--teal--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "200" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.30}" + }, + "name": "pf-t--global--color--nonstatus--teal--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "200" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--teal--300": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--global--color--nonstatus--teal--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "teal", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "teal", - "300" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.40}" + }, + "name": "pf-t--global--color--nonstatus--teal--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "teal", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "teal", + "300" + ], + "references": [ + { "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - }, - "pf-t--global--color--nonstatus--blue--100": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.20}" - }, - "name": "pf-t--global--color--nonstatus--blue--100", - "attributes": { - "category": "global", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + }, + "pf-t--global--color--nonstatus--blue--100": { + "default": { "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "100" - ], - "references": [ - { + "value": "#b9dafc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b9dafc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.20}" + }, + "name": "pf-t--global--color--nonstatus--blue--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "100" + ], + "references": [ + { "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - } - ] + "value": "#b9dafc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b9dafc" + }, + "name": "pf-t--color--blue--20", + "attributes": { + "category": "color", + "type": "blue", + "item": "20" + }, + "path": [ + "color", + "blue", + "20" + ] + } + ] + } }, "pf-t--global--color--nonstatus--blue--200": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--global--color--nonstatus--blue--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "200" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.30}" + }, + "name": "pf-t--global--color--nonstatus--blue--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "200" + ], + "references": [ + { "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--blue--300": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--global--color--nonstatus--blue--300", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "blue", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "blue", - "300" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.40}" + }, + "name": "pf-t--global--color--nonstatus--blue--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "blue", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "blue", + "300" + ], + "references": [ + { "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } }, "pf-t--global--color--nonstatus--purple--100": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.20}" - }, - "name": "pf-t--global--color--nonstatus--purple--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "100" - ], - "references": [ - { + "value": "#d0c5f4", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] - } - ] + "value": "{color.purple.20}" + }, + "name": "pf-t--global--color--nonstatus--purple--100", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "100" + ], + "references": [ + { + "type": "color", + "value": "#d0c5f4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } + ] + } }, "pf-t--global--color--nonstatus--purple--200": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--global--color--nonstatus--purple--200", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "200" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.30}" + }, + "name": "pf-t--global--color--nonstatus--purple--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "200" + ], + "references": [ + { "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } }, "pf-t--global--color--nonstatus--purple--300": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--global--color--nonstatus--purple--300", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "purple", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "purple", - "300" - ], - "references": [ - { + "value": "#876fd4", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.40}" + }, + "name": "pf-t--global--color--nonstatus--purple--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "purple", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "purple", + "300" + ], + "references": [ + { "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } }, "pf-t--global--color--nonstatus--gray--100": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--global--color--nonstatus--gray--100", - "attributes": { - "category": "global", + "default": { "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "100" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "100" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - }, - "pf-t--global--color--nonstatus--gray--200": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--global--color--nonstatus--gray--200", - "attributes": { - "category": "global", - "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "200" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "200" - ], - "references": [ - { + "value": "{color.gray.20}" + }, + "name": "pf-t--global--color--nonstatus--gray--100", + "attributes": { + "category": "global", "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "item": "nonstatus", + "subitem": "gray", + "state": "100" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "100" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } }, - "pf-t--global--color--nonstatus--gray--300": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "pf-t--global--color--nonstatus--gray--200": { + "default": { "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--global--color--nonstatus--gray--300", - "attributes": { - "category": "global", + "value": "#c7c7c7", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.gray.30}" + }, + "name": "pf-t--global--color--nonstatus--gray--200", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "200" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "200" + ], + "references": [ + { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + }, + "pf-t--global--color--nonstatus--gray--300": { + "default": { "type": "color", - "item": "nonstatus", - "subitem": "gray", - "state": "300" - }, - "path": [ - "global", - "color", - "nonstatus", - "gray", - "300" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--global--color--nonstatus--gray--300", + "attributes": { + "category": "global", + "type": "color", + "item": "nonstatus", + "subitem": "gray", + "state": "300" + }, + "path": [ + "global", + "color", + "nonstatus", + "gray", + "300" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } }, "pf-t--global--text--color--100": { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.95}" - }, - "name": "pf-t--global--text--color--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "100" - }, - "path": [ - "global", - "text", - "color", - "100" - ], - "references": [ - { + "value": "#151515", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.95}" + }, + "name": "pf-t--global--text--color--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "100" + }, + "path": [ + "global", + "text", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - } - ] + "value": "#151515", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#151515" + }, + "name": "pf-t--color--gray--95", + "attributes": { + "category": "color", + "type": "gray", + "item": "95" + }, + "path": [ + "color", + "gray", + "95" + ] + } + ] + } }, "pf-t--global--text--color--200": { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.60}" - }, - "name": "pf-t--global--text--color--200", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "200" - }, - "path": [ - "global", - "text", - "color", - "200" - ], - "references": [ - { + "value": "#4d4d4d", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.60}" + }, + "name": "pf-t--global--text--color--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "200" + }, + "path": [ + "global", + "text", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - } - ] + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4d4d4d" + }, + "name": "pf-t--color--gray--60", + "attributes": { + "category": "color", + "type": "gray", + "item": "60" + }, + "path": [ + "color", + "gray", + "60" + ] + } + ] + } }, "pf-t--global--text--color--300": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--global--text--color--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "300" - }, - "path": [ - "global", - "text", - "color", - "300" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.white}" + }, + "name": "pf-t--global--text--color--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "300" + }, + "path": [ + "global", + "text", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } }, "pf-t--global--text--color--400": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--global--text--color--400", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "400" - }, - "path": [ - "global", - "text", - "color", - "400" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.40}" + }, + "name": "pf-t--global--text--color--400", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "400" + }, + "path": [ + "global", + "text", + "color", + "400" + ], + "references": [ + { "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } }, "pf-t--global--text--color--link--100": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--global--text--color--link--100", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "100" - }, - "path": [ - "global", - "text", - "color", - "link", - "100" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.50}" + }, + "name": "pf-t--global--text--color--link--100", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "100" + }, + "path": [ + "global", + "text", + "color", + "link", + "100" + ], + "references": [ + { "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } }, "pf-t--global--text--color--link--200": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--global--text--color--link--200", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "200" - }, - "path": [ - "global", - "text", - "color", - "link", - "200" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.60}" + }, + "name": "pf-t--global--text--color--link--200", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "200" + }, + "path": [ + "global", + "text", + "color", + "link", + "200" + ], + "references": [ + { "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } }, "pf-t--global--text--color--link--300": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/base.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--global--text--color--link--300", - "attributes": { - "category": "global", - "type": "text", - "item": "color", - "subitem": "link", - "state": "300" - }, - "path": [ - "global", - "text", - "color", - "link", - "300" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/default/base.json", + "isSource": true, + "original": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.50}" + }, + "name": "pf-t--global--text--color--link--300", + "attributes": { + "category": "global", + "type": "text", + "item": "color", + "subitem": "link", + "state": "300" + }, + "path": [ + "global", + "text", + "color", + "link", + "300" + ], + "references": [ + { "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } } }, "dimension": { "pf-t--global--spacer--100": { - "type": "number", - "value": "0.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 4 - }, - "name": "pf-t--global--spacer--100", - "attributes": { - "category": "global", - "type": "spacer", - "item": "100" - }, - "path": [ - "global", - "spacer", - "100" - ] + "value": "0.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--spacer--100", + "attributes": { + "category": "global", + "type": "spacer", + "item": "100" + }, + "path": [ + "global", + "spacer", + "100" + ] + } }, "pf-t--global--spacer--200": { - "type": "number", - "value": "0.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 8 - }, - "name": "pf-t--global--spacer--200", - "attributes": { - "category": "global", - "type": "spacer", - "item": "200" - }, - "path": [ - "global", - "spacer", - "200" - ] + "value": "0.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--spacer--200", + "attributes": { + "category": "global", + "type": "spacer", + "item": "200" + }, + "path": [ + "global", + "spacer", + "200" + ] + } }, "pf-t--global--spacer--300": { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 16 - }, - "name": "pf-t--global--spacer--300", - "attributes": { - "category": "global", - "type": "spacer", - "item": "300" - }, - "path": [ - "global", - "spacer", - "300" - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--spacer--300", + "attributes": { + "category": "global", + "type": "spacer", + "item": "300" + }, + "path": [ + "global", + "spacer", + "300" + ] + } }, "pf-t--global--spacer--400": { - "type": "number", - "value": "1.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 24 - }, - "name": "pf-t--global--spacer--400", - "attributes": { - "category": "global", - "type": "spacer", - "item": "400" - }, - "path": [ - "global", - "spacer", - "400" - ] + "value": "1.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--spacer--400", + "attributes": { + "category": "global", + "type": "spacer", + "item": "400" + }, + "path": [ + "global", + "spacer", + "400" + ] + } }, "pf-t--global--spacer--500": { - "type": "number", - "value": "2rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 32 - }, - "name": "pf-t--global--spacer--500", - "attributes": { - "category": "global", - "type": "spacer", - "item": "500" - }, - "path": [ - "global", - "spacer", - "500" - ] + "value": "2rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 32 + }, + "name": "pf-t--global--spacer--500", + "attributes": { + "category": "global", + "type": "spacer", + "item": "500" + }, + "path": [ + "global", + "spacer", + "500" + ] + } }, "pf-t--global--spacer--600": { - "type": "number", - "value": "3rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 48 - }, - "name": "pf-t--global--spacer--600", - "attributes": { - "category": "global", - "type": "spacer", - "item": "600" - }, - "path": [ - "global", - "spacer", - "600" - ] + "value": "3rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 48 + }, + "name": "pf-t--global--spacer--600", + "attributes": { + "category": "global", + "type": "spacer", + "item": "600" + }, + "path": [ + "global", + "spacer", + "600" + ] + } + }, + "pf-t--global--spacer--700": { + "default": { + "type": "number", + "value": "4rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 64 + }, + "name": "pf-t--global--spacer--700", + "attributes": { + "category": "global", + "type": "spacer", + "item": "700" + }, + "path": [ + "global", + "spacer", + "700" + ] + } + }, + "pf-t--global--spacer--800": { + "default": { + "type": "number", + "value": "5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 80 + }, + "name": "pf-t--global--spacer--800", + "attributes": { + "category": "global", + "type": "spacer", + "item": "800" + }, + "path": [ + "global", + "spacer", + "800" + ] + } + }, + "pf-t--global--icon--size--100": { + "default": { + "type": "number", + "value": "0.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--icon--size--100", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "icon", + "size", + "100" + ] + } + }, + "pf-t--global--icon--size--200": { + "default": { + "type": "number", + "value": "0.875rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--icon--size--200", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "icon", + "size", + "200" + ] + } + }, + "pf-t--global--icon--size--250": { + "default": { + "type": "number", + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--icon--size--250", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "250" + }, + "path": [ + "global", + "icon", + "size", + "250" + ] + } + }, + "pf-t--global--icon--size--300": { + "default": { + "type": "number", + "value": "1.375rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--icon--size--300", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "icon", + "size", + "300" + ] + } + }, + "pf-t--global--icon--size--400": { + "default": { + "type": "number", + "value": "3.5rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 56 + }, + "name": "pf-t--global--icon--size--400", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "icon", + "size", + "400" + ] + } + }, + "pf-t--global--icon--size--500": { + "default": { + "type": "number", + "value": "6rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 96 + }, + "name": "pf-t--global--icon--size--500", + "attributes": { + "category": "global", + "type": "icon", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "icon", + "size", + "500" + ] + } + }, + "pf-t--global--border--width--100": { + "default": { + "type": "number", + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--border--width--100", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "100" + }, + "path": [ + "global", + "border", + "width", + "100" + ] + } + }, + "pf-t--global--border--width--200": { + "default": { + "type": "number", + "value": "2px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--global--border--width--200", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "200" + }, + "path": [ + "global", + "border", + "width", + "200" + ] + } + }, + "pf-t--global--border--width--300": { + "default": { + "type": "number", + "value": "3px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 3 + }, + "name": "pf-t--global--border--width--300", + "attributes": { + "category": "global", + "type": "border", + "item": "width", + "subitem": "300" + }, + "path": [ + "global", + "border", + "width", + "300" + ] + } + }, + "pf-t--global--border--radius--0": { + "default": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--border--radius--0", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "0" + }, + "path": [ + "global", + "border", + "radius", + "0" + ] + } + }, + "pf-t--global--border--radius--100": { + "default": { + "type": "number", + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--border--radius--100", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "100" + }, + "path": [ + "global", + "border", + "radius", + "100" + ] + } + }, + "pf-t--global--border--radius--200": { + "default": { + "type": "number", + "value": "6px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 6 + }, + "name": "pf-t--global--border--radius--200", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "200" + }, + "path": [ + "global", + "border", + "radius", + "200" + ] + } + }, + "pf-t--global--border--radius--300": { + "default": { + "type": "number", + "value": "16px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--border--radius--300", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "300" + }, + "path": [ + "global", + "border", + "radius", + "300" + ] + } + }, + "pf-t--global--border--radius--400": { + "default": { + "type": "number", + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--border--radius--400", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "400" + }, + "path": [ + "global", + "border", + "radius", + "400" + ] + } + }, + "pf-t--global--border--radius--500": { + "default": { + "type": "number", + "value": "999px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 999 + }, + "name": "pf-t--global--border--radius--500", + "attributes": { + "category": "global", + "type": "border", + "item": "radius", + "subitem": "500" + }, + "path": [ + "global", + "border", + "radius", + "500" + ] + } + }, + "pf-t--global--font--family--100": { + "default": { + "type": "string", + "value": "Red Hat Text VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Text VF" + }, + "name": "pf-t--global--font--family--100", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "100" + }, + "path": [ + "global", + "font", + "family", + "100" + ] + } + }, + "pf-t--global--font--family--200": { + "default": { + "type": "string", + "value": "Red Hat Display VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Display VF" + }, + "name": "pf-t--global--font--family--200", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "200" + }, + "path": [ + "global", + "font", + "family", + "200" + ] + } + }, + "pf-t--global--font--family--300": { + "default": { + "type": "string", + "value": "Red Hat Mono VF", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "string", + "value": "Red Hat Mono VF" + }, + "name": "pf-t--global--font--family--300", + "attributes": { + "category": "global", + "type": "font", + "item": "family", + "subitem": "300" + }, + "path": [ + "global", + "font", + "family", + "300" + ] + } + }, + "pf-t--global--font--weight--100": { + "default": { + "type": "number", + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--font--weight--100", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "100" + }, + "path": [ + "global", + "font", + "weight", + "100" + ] + } + }, + "pf-t--global--font--weight--200": { + "default": { + "type": "number", + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--font--weight--200", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "200" + }, + "path": [ + "global", + "font", + "weight", + "200" + ] + } + }, + "pf-t--global--font--weight--300": { + "default": { + "type": "number", + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 700 + }, + "name": "pf-t--global--font--weight--300", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "300" + }, + "path": [ + "global", + "font", + "weight", + "300" + ] + } }, - "pf-t--global--spacer--700": { - "type": "number", - "value": "4rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--font--weight--400": { + "default": { "type": "number", - "value": 64 - }, - "name": "pf-t--global--spacer--700", - "attributes": { - "category": "global", - "type": "spacer", - "item": "700" - }, - "path": [ - "global", - "spacer", - "700" - ] + "value": 700, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 700 + }, + "name": "pf-t--global--font--weight--400", + "attributes": { + "category": "global", + "type": "font", + "item": "weight", + "subitem": "400" + }, + "path": [ + "global", + "font", + "weight", + "400" + ] + } }, - "pf-t--global--spacer--800": { - "type": "number", - "value": "5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--font--line-height--100": { + "default": { "type": "number", - "value": 80 - }, - "name": "pf-t--global--spacer--800", - "attributes": { - "category": "global", - "type": "spacer", - "item": "800" - }, - "path": [ - "global", - "spacer", - "800" - ] + "value": 1.2999999523162842, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1.2999999523162842 + }, + "name": "pf-t--global--font--line-height--100", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "100" + }, + "path": [ + "global", + "font", + "line-height", + "100" + ] + } }, - "pf-t--global--icon--size--100": { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--font--line-height--200": { + "default": { "type": "number", - "value": 12 - }, - "name": "pf-t--global--icon--size--100", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "icon", - "size", - "100" - ] + "value": 1.5, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1.5 + }, + "name": "pf-t--global--font--line-height--200", + "attributes": { + "category": "global", + "type": "font", + "item": "line-height", + "subitem": "200" + }, + "path": [ + "global", + "font", + "line-height", + "200" + ] + } }, - "pf-t--global--icon--size--200": { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--font--size--100": { + "default": { "type": "number", - "value": 14 - }, - "name": "pf-t--global--icon--size--200", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "icon", - "size", - "200" - ] + "value": "0.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--global--font--size--100", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "100" + }, + "path": [ + "global", + "font", + "size", + "100" + ] + } }, - "pf-t--global--icon--size--250": { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--font--size--200": { + "default": { "type": "number", - "value": 16 - }, - "name": "pf-t--global--icon--size--250", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "250" - }, - "path": [ - "global", - "icon", - "size", - "250" - ] + "value": "0.875rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--global--font--size--200", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "200" + }, + "path": [ + "global", + "font", + "size", + "200" + ] + } }, - "pf-t--global--icon--size--300": { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--font--size--300": { + "default": { "type": "number", - "value": 22 - }, - "name": "pf-t--global--icon--size--300", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "icon", - "size", - "300" - ] + "value": "1rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 16 + }, + "name": "pf-t--global--font--size--300", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "300" + }, + "path": [ + "global", + "font", + "size", + "300" + ] + } }, - "pf-t--global--icon--size--400": { - "type": "number", - "value": "3.5rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--font--size--400": { + "default": { "type": "number", - "value": 56 - }, - "name": "pf-t--global--icon--size--400", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "icon", - "size", - "400" - ] + "value": "1.125rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--global--font--size--400", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "400" + }, + "path": [ + "global", + "font", + "size", + "400" + ] + } }, - "pf-t--global--icon--size--500": { - "type": "number", - "value": "6rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--font--size--500": { + "default": { "type": "number", - "value": 96 - }, - "name": "pf-t--global--icon--size--500", - "attributes": { - "category": "global", - "type": "icon", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "icon", - "size", - "500" - ] + "value": "1.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 20 + }, + "name": "pf-t--global--font--size--500", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "500" + }, + "path": [ + "global", + "font", + "size", + "500" + ] + } }, - "pf-t--global--border--width--100": { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--font--size--600": { + "default": { "type": "number", - "value": 1 - }, - "name": "pf-t--global--border--width--100", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "100" - }, - "path": [ - "global", - "border", - "width", - "100" - ] + "value": "1.375rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--global--font--size--600", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "600" + }, + "path": [ + "global", + "font", + "size", + "600" + ] + } }, - "pf-t--global--border--width--200": { - "type": "number", - "value": "2px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--font--size--700": { + "default": { "type": "number", - "value": 2 - }, - "name": "pf-t--global--border--width--200", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "200" - }, - "path": [ - "global", - "border", - "width", - "200" - ] + "value": "1.75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 28 + }, + "name": "pf-t--global--font--size--700", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "700" + }, + "path": [ + "global", + "font", + "size", + "700" + ] + } }, - "pf-t--global--border--width--300": { - "type": "number", - "value": "3px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--font--size--800": { + "default": { + "type": "number", + "value": "2.25rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 36 + }, + "name": "pf-t--global--font--size--800", + "attributes": { + "category": "global", + "type": "font", + "item": "size", + "subitem": "800" + }, + "path": [ + "global", + "font", + "size", + "800" + ] + } + }, + "pf-t--global--z-index--100": { + "default": { "type": "number", - "value": 3 - }, - "name": "pf-t--global--border--width--300", - "attributes": { - "category": "global", - "type": "border", - "item": "width", - "subitem": "300" - }, - "path": [ - "global", - "border", - "width", - "300" - ] + "value": 100, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--z-index--100", + "attributes": { + "category": "global", + "type": "z-index", + "item": "100" + }, + "path": [ + "global", + "z-index", + "100" + ] + } }, - "pf-t--global--border--radius--0": { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--z-index--200": { + "default": { "type": "number", - "value": 0 - }, - "name": "pf-t--global--border--radius--0", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "0" - }, - "path": [ - "global", - "border", - "radius", - "0" - ] + "value": 200, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--z-index--200", + "attributes": { + "category": "global", + "type": "z-index", + "item": "200" + }, + "path": [ + "global", + "z-index", + "200" + ] + } }, - "pf-t--global--border--radius--100": { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--z-index--300": { + "default": { "type": "number", - "value": 4 - }, - "name": "pf-t--global--border--radius--100", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "100" - }, - "path": [ - "global", - "border", - "radius", - "100" - ] + "value": 300, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--z-index--300", + "attributes": { + "category": "global", + "type": "z-index", + "item": "300" + }, + "path": [ + "global", + "z-index", + "300" + ] + } }, - "pf-t--global--border--radius--200": { - "type": "number", - "value": "6px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--z-index--400": { + "default": { "type": "number", - "value": 6 - }, - "name": "pf-t--global--border--radius--200", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "200" - }, - "path": [ - "global", - "border", - "radius", - "200" - ] + "value": 400, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--z-index--400", + "attributes": { + "category": "global", + "type": "z-index", + "item": "400" + }, + "path": [ + "global", + "z-index", + "400" + ] + } }, - "pf-t--global--border--radius--300": { - "type": "number", - "value": "16px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--z-index--500": { + "default": { "type": "number", - "value": 16 - }, - "name": "pf-t--global--border--radius--300", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "300" - }, - "path": [ - "global", - "border", - "radius", - "300" - ] + "value": 500, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--z-index--500", + "attributes": { + "category": "global", + "type": "z-index", + "item": "500" + }, + "path": [ + "global", + "z-index", + "500" + ] + } }, - "pf-t--global--border--radius--400": { - "type": "number", - "value": "24px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--z-index--600": { + "default": { "type": "number", - "value": 24 - }, - "name": "pf-t--global--border--radius--400", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "400" - }, - "path": [ - "global", - "border", - "radius", - "400" - ] + "value": 600, + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--z-index--600", + "attributes": { + "category": "global", + "type": "z-index", + "item": "600" + }, + "path": [ + "global", + "z-index", + "600" + ] + } }, - "pf-t--global--border--radius--500": { - "type": "number", - "value": "999px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--box-shadow--X--100": { + "default": { "type": "number", - "value": 999 - }, - "name": "pf-t--global--border--radius--500", - "attributes": { - "category": "global", - "type": "border", - "item": "radius", - "subitem": "500" - }, - "path": [ - "global", - "border", - "radius", - "500" - ] + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--X--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "X", + "100" + ] + } }, - "pf-t--global--font--family--100": { - "type": "string", - "value": "Red Hat Text VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "string", - "value": "Red Hat Text VF" - }, - "name": "pf-t--global--font--family--100", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "100" - }, - "path": [ - "global", - "font", - "family", - "100" - ] + "pf-t--global--box-shadow--X--200": { + "default": { + "type": "number", + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--X--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "X", + "200" + ] + } }, - "pf-t--global--font--family--200": { - "type": "string", - "value": "Red Hat Display VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "string", - "value": "Red Hat Display VF" - }, - "name": "pf-t--global--font--family--200", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "200" - }, - "path": [ - "global", - "font", - "family", - "200" - ] + "pf-t--global--box-shadow--X--300": { + "default": { + "type": "number", + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--X--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "X", + "300" + ] + } }, - "pf-t--global--font--family--300": { - "type": "string", - "value": "Red Hat Mono VF", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "string", - "value": "Red Hat Mono VF" - }, - "name": "pf-t--global--font--family--300", - "attributes": { - "category": "global", - "type": "font", - "item": "family", - "subitem": "300" - }, - "path": [ - "global", - "font", - "family", - "300" - ] + "pf-t--global--box-shadow--X--400": { + "default": { + "type": "number", + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--X--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "X", + "400" + ] + } }, - "pf-t--global--font--weight--100": { - "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--box-shadow--X--500": { + "default": { "type": "number", - "value": 400 - }, - "name": "pf-t--global--font--weight--100", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "100" - }, - "path": [ - "global", - "font", - "weight", - "100" - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--X--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "X", + "500" + ] + } }, - "pf-t--global--font--weight--200": { - "type": "number", - "value": 500, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--box-shadow--X--600": { + "default": { "type": "number", - "value": 500 - }, - "name": "pf-t--global--font--weight--200", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "200" - }, - "path": [ - "global", - "font", - "weight", - "200" - ] + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--X--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "X", + "600" + ] + } }, - "pf-t--global--font--weight--300": { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--box-shadow--X--700": { + "default": { "type": "number", - "value": 700 - }, - "name": "pf-t--global--font--weight--300", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "300" - }, - "path": [ - "global", - "font", - "weight", - "300" - ] + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--X--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "X", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "X", + "700" + ] + } }, - "pf-t--global--font--weight--400": { - "type": "number", - "value": 700, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--box-shadow--Y--100": { + "default": { "type": "number", - "value": 700 - }, - "name": "pf-t--global--font--weight--400", - "attributes": { - "category": "global", - "type": "font", - "item": "weight", - "subitem": "400" - }, - "path": [ - "global", - "font", - "weight", - "400" - ] + "value": "-8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -8 + }, + "name": "pf-t--global--box-shadow--Y--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "Y", + "100" + ] + } }, - "pf-t--global--font--line-height--100": { - "type": "number", - "value": 1.2999999523162842, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--box-shadow--Y--200": { + "default": { "type": "number", - "value": 1.2999999523162842 - }, - "name": "pf-t--global--font--line-height--100", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "100" - }, - "path": [ - "global", - "font", - "line-height", - "100" - ] + "value": "-4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -4 + }, + "name": "pf-t--global--box-shadow--Y--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "Y", + "200" + ] + } }, - "pf-t--global--font--line-height--200": { - "type": "number", - "value": 1.5, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--box-shadow--Y--300": { + "default": { "type": "number", - "value": 1.5 - }, - "name": "pf-t--global--font--line-height--200", - "attributes": { - "category": "global", - "type": "font", - "item": "line-height", - "subitem": "200" - }, - "path": [ - "global", - "font", - "line-height", - "200" - ] + "value": "-1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": -1 + }, + "name": "pf-t--global--box-shadow--Y--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "Y", + "300" + ] + } }, - "pf-t--global--font--size--100": { - "type": "number", - "value": "0.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--box-shadow--Y--400": { + "default": { "type": "number", - "value": 12 - }, - "name": "pf-t--global--font--size--100", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "100" - }, - "path": [ - "global", - "font", - "size", - "100" - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--Y--400", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "400" + }, + "path": [ + "global", + "box-shadow", + "Y", + "400" + ] + } }, - "pf-t--global--font--size--200": { - "type": "number", - "value": "0.875rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--box-shadow--Y--500": { + "default": { "type": "number", - "value": 14 - }, - "name": "pf-t--global--font--size--200", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "200" - }, - "path": [ - "global", - "font", - "size", - "200" - ] + "value": "1px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--global--box-shadow--Y--500", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "500" + }, + "path": [ + "global", + "box-shadow", + "Y", + "500" + ] + } }, - "pf-t--global--font--size--300": { - "type": "number", - "value": "1rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--box-shadow--Y--600": { + "default": { "type": "number", - "value": 16 - }, - "name": "pf-t--global--font--size--300", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "300" - }, - "path": [ - "global", - "font", - "size", - "300" - ] + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--Y--600", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "600" + }, + "path": [ + "global", + "box-shadow", + "Y", + "600" + ] + } }, - "pf-t--global--font--size--400": { - "type": "number", - "value": "1.125rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--box-shadow--Y--700": { + "default": { "type": "number", - "value": 18 - }, - "name": "pf-t--global--font--size--400", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "400" - }, - "path": [ - "global", - "font", - "size", - "400" - ] + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--Y--700", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "Y", + "subitem": "700" + }, + "path": [ + "global", + "box-shadow", + "Y", + "700" + ] + } }, - "pf-t--global--font--size--500": { - "type": "number", - "value": "1.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--box-shadow--blur--100": { + "default": { "type": "number", - "value": 20 - }, - "name": "pf-t--global--font--size--500", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "500" - }, - "path": [ - "global", - "font", - "size", - "500" - ] + "value": "4px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 4 + }, + "name": "pf-t--global--box-shadow--blur--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "blur", + "100" + ] + } }, - "pf-t--global--font--size--600": { - "type": "number", - "value": "1.375rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--box-shadow--blur--200": { + "default": { + "type": "number", + "value": "8px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--global--box-shadow--blur--200", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "200" + }, + "path": [ + "global", + "box-shadow", + "blur", + "200" + ] + } + }, + "pf-t--global--box-shadow--blur--300": { + "default": { "type": "number", - "value": 22 - }, - "name": "pf-t--global--font--size--600", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "600" - }, - "path": [ - "global", - "font", - "size", - "600" - ] + "value": "24px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 24 + }, + "name": "pf-t--global--box-shadow--blur--300", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "blur", + "subitem": "300" + }, + "path": [ + "global", + "box-shadow", + "blur", + "300" + ] + } }, - "pf-t--global--font--size--700": { - "type": "number", - "value": "1.75rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--box-shadow--spread--100": { + "default": { "type": "number", - "value": 28 - }, - "name": "pf-t--global--font--size--700", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "700" - }, - "path": [ - "global", - "font", - "size", - "700" - ] + "value": "0px", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--box-shadow--spread--100", + "attributes": { + "category": "global", + "type": "box-shadow", + "item": "spread", + "subitem": "100" + }, + "path": [ + "global", + "box-shadow", + "spread", + "100" + ] + } }, - "pf-t--global--font--size--800": { - "type": "number", - "value": "2.25rem", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--breakpoint--100": { + "default": { "type": "number", - "value": 36 - }, - "name": "pf-t--global--font--size--800", - "attributes": { - "category": "global", - "type": "font", - "item": "size", - "subitem": "800" - }, - "path": [ - "global", - "font", - "size", - "800" - ] + "value": "0rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--breakpoint--100", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "100" + }, + "path": [ + "global", + "breakpoint", + "100" + ] + } }, - "pf-t--global--z-index--100": { - "type": "number", - "value": 100, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--breakpoint--200": { + "default": { "type": "number", - "value": 100 - }, - "name": "pf-t--global--z-index--100", - "attributes": { - "category": "global", - "type": "z-index", - "item": "100" - }, - "path": [ - "global", - "z-index", - "100" - ] + "value": "36rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 576 + }, + "name": "pf-t--global--breakpoint--200", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "200" + }, + "path": [ + "global", + "breakpoint", + "200" + ] + } }, - "pf-t--global--z-index--200": { - "type": "number", - "value": 200, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--breakpoint--250": { + "default": { "type": "number", - "value": 200 - }, - "name": "pf-t--global--z-index--200", - "attributes": { - "category": "global", - "type": "z-index", - "item": "200" - }, - "path": [ - "global", - "z-index", - "200" - ] + "value": "40rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 640 + }, + "name": "pf-t--global--breakpoint--250", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "250" + }, + "path": [ + "global", + "breakpoint", + "250" + ] + } }, - "pf-t--global--z-index--300": { - "type": "number", - "value": 300, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--breakpoint--300": { + "default": { "type": "number", - "value": 300 - }, - "name": "pf-t--global--z-index--300", - "attributes": { - "category": "global", - "type": "z-index", - "item": "300" - }, - "path": [ - "global", - "z-index", - "300" - ] + "value": "48rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 768 + }, + "name": "pf-t--global--breakpoint--300", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "300" + }, + "path": [ + "global", + "breakpoint", + "300" + ] + } }, - "pf-t--global--z-index--400": { - "type": "number", - "value": 400, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--breakpoint--350": { + "default": { "type": "number", - "value": 400 - }, - "name": "pf-t--global--z-index--400", - "attributes": { - "category": "global", - "type": "z-index", - "item": "400" - }, - "path": [ - "global", - "z-index", - "400" - ] + "value": "60rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 960 + }, + "name": "pf-t--global--breakpoint--350", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "350" + }, + "path": [ + "global", + "breakpoint", + "350" + ] + } }, - "pf-t--global--z-index--500": { - "type": "number", - "value": 500, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--breakpoint--400": { + "default": { "type": "number", - "value": 500 - }, - "name": "pf-t--global--z-index--500", - "attributes": { - "category": "global", - "type": "z-index", - "item": "500" - }, - "path": [ - "global", - "z-index", - "500" - ] + "value": "62rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 992 + }, + "name": "pf-t--global--breakpoint--400", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "400" + }, + "path": [ + "global", + "breakpoint", + "400" + ] + } }, - "pf-t--global--z-index--600": { - "type": "number", - "value": 600, - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--breakpoint--500": { + "default": { "type": "number", - "value": 600 - }, - "name": "pf-t--global--z-index--600", - "attributes": { - "category": "global", - "type": "z-index", - "item": "600" - }, - "path": [ - "global", - "z-index", - "600" - ] + "value": "75rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1200 + }, + "name": "pf-t--global--breakpoint--500", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "500" + }, + "path": [ + "global", + "breakpoint", + "500" + ] + } }, - "pf-t--global--box-shadow--X--100": { - "type": "number", - "value": "-8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--breakpoint--550": { + "default": { "type": "number", - "value": -8 - }, - "name": "pf-t--global--box-shadow--X--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "X", - "100" - ] + "value": "80rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1280 + }, + "name": "pf-t--global--breakpoint--550", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "550" + }, + "path": [ + "global", + "breakpoint", + "550" + ] + } }, - "pf-t--global--box-shadow--X--200": { - "type": "number", - "value": "-4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--breakpoint--600": { + "default": { "type": "number", - "value": -4 - }, - "name": "pf-t--global--box-shadow--X--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "X", - "200" - ] + "value": "90.625rem", + "filePath": "tokens/default/base.dimension.json", + "isSource": true, + "original": { + "type": "number", + "value": 1450 + }, + "name": "pf-t--global--breakpoint--600", + "attributes": { + "category": "global", + "type": "breakpoint", + "item": "600" + }, + "path": [ + "global", + "breakpoint", + "600" + ] + } + } + }, + "motion": { + "pf-t--global--duration--50": { + "default": { + "type": "number", + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--duration--50", + "attributes": { + "category": "global", + "type": "duration", + "item": "50" + }, + "path": [ + "global", + "duration", + "50" + ] + } }, - "pf-t--global--box-shadow--X--300": { - "type": "number", - "value": "-1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--duration--100": { + "default": { "type": "number", - "value": -1 - }, - "name": "pf-t--global--box-shadow--X--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "X", - "300" - ] + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--duration--100", + "attributes": { + "category": "global", + "type": "duration", + "item": "100" + }, + "path": [ + "global", + "duration", + "100" + ] + } }, - "pf-t--global--box-shadow--X--400": { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--duration--200": { + "default": { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--X--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "X", - "400" - ] + "value": "200ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 200 + }, + "name": "pf-t--global--duration--200", + "attributes": { + "category": "global", + "type": "duration", + "item": "200" + }, + "path": [ + "global", + "duration", + "200" + ] + } }, - "pf-t--global--box-shadow--X--500": { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--duration--300": { + "default": { "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--X--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "X", - "500" - ] + "value": "300ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--global--duration--300", + "attributes": { + "category": "global", + "type": "duration", + "item": "300" + }, + "path": [ + "global", + "duration", + "300" + ] + } }, - "pf-t--global--box-shadow--X--600": { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--duration--400": { + "default": { "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--X--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "X", - "600" - ] + "value": "400ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 400 + }, + "name": "pf-t--global--duration--400", + "attributes": { + "category": "global", + "type": "duration", + "item": "400" + }, + "path": [ + "global", + "duration", + "400" + ] + } }, - "pf-t--global--box-shadow--X--700": { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--duration--500": { + "default": { "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--X--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "X", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "X", - "700" - ] + "value": "500ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 500 + }, + "name": "pf-t--global--duration--500", + "attributes": { + "category": "global", + "type": "duration", + "item": "500" + }, + "path": [ + "global", + "duration", + "500" + ] + } }, - "pf-t--global--box-shadow--Y--100": { - "type": "number", - "value": "-8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--duration--600": { + "default": { "type": "number", - "value": -8 - }, - "name": "pf-t--global--box-shadow--Y--100", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "100" - }, - "path": [ - "global", - "box-shadow", - "Y", - "100" - ] + "value": "600ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 600 + }, + "name": "pf-t--global--duration--600", + "attributes": { + "category": "global", + "type": "duration", + "item": "600" + }, + "path": [ + "global", + "duration", + "600" + ] + } }, - "pf-t--global--box-shadow--Y--200": { - "type": "number", - "value": "-4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--delay--100": { + "default": { "type": "number", - "value": -4 - }, - "name": "pf-t--global--box-shadow--Y--200", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "200" - }, - "path": [ - "global", - "box-shadow", - "Y", - "200" - ] + "value": "0ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 0 + }, + "name": "pf-t--global--delay--100", + "attributes": { + "category": "global", + "type": "delay", + "item": "100" + }, + "path": [ + "global", + "delay", + "100" + ] + } }, - "pf-t--global--box-shadow--Y--300": { - "type": "number", - "value": "-1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--delay--200": { + "default": { "type": "number", - "value": -1 - }, - "name": "pf-t--global--box-shadow--Y--300", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "300" - }, - "path": [ - "global", - "box-shadow", - "Y", - "300" - ] + "value": "50ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--global--delay--200", + "attributes": { + "category": "global", + "type": "delay", + "item": "200" + }, + "path": [ + "global", + "delay", + "200" + ] + } }, - "pf-t--global--box-shadow--Y--400": { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--delay--300": { + "default": { "type": "number", - "value": 0 - }, - "name": "pf-t--global--box-shadow--Y--400", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "400" - }, - "path": [ - "global", - "box-shadow", - "Y", - "400" - ] + "value": "100ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 100 + }, + "name": "pf-t--global--delay--300", + "attributes": { + "category": "global", + "type": "delay", + "item": "300" + }, + "path": [ + "global", + "delay", + "300" + ] + } }, - "pf-t--global--box-shadow--Y--500": { - "type": "number", - "value": "1px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { + "pf-t--global--delay--400": { + "default": { "type": "number", - "value": 1 - }, - "name": "pf-t--global--box-shadow--Y--500", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "500" - }, - "path": [ - "global", - "box-shadow", - "Y", - "500" - ] + "value": "7000ms", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "number", + "value": 7000 + }, + "name": "pf-t--global--delay--400", + "attributes": { + "category": "global", + "type": "delay", + "item": "400" + }, + "path": [ + "global", + "delay", + "400" + ] + } }, - "pf-t--global--box-shadow--Y--600": { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 4 - }, - "name": "pf-t--global--box-shadow--Y--600", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "600" - }, - "path": [ - "global", - "box-shadow", - "Y", - "600" - ] + "pf-t--global--timing-function--100": { + "default": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .7, .2)" + }, + "name": "pf-t--global--timing-function--100", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "100" + }, + "path": [ + "global", + "timing-function", + "100" + ] + } }, - "pf-t--global--box-shadow--Y--700": { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", - "isSource": true, - "original": { - "type": "number", - "value": 8 - }, - "name": "pf-t--global--box-shadow--Y--700", - "attributes": { - "category": "global", - "type": "box-shadow", - "item": "Y", - "subitem": "700" - }, - "path": [ - "global", - "box-shadow", - "Y", - "700" - ] + "pf-t--global--timing-function--200": { + "default": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(.4, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--200", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "200" + }, + "path": [ + "global", + "timing-function", + "200" + ] + } }, - "pf-t--global--box-shadow--blur--100": { - "type": "number", - "value": "4px", - "filePath": "tokens/default/base.dimension.json", + "pf-t--global--timing-function--300": { + "default": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)", + "filePath": "tokens/default/base.motion.json", + "isSource": true, + "original": { + "type": "string", + "value": "cubic-bezier(0, 0, .2, 1)" + }, + "name": "pf-t--global--timing-function--300", + "attributes": { + "category": "global", + "type": "timing-function", + "item": "300" + }, + "path": [ + "global", + "timing-function", + "300" + ] + } + } + } + }, + "palette": { + "pf-t--color--white": { + "default": { + "type": "color", + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 4 + "type": "color", + "value": "#ffffff" }, - "name": "pf-t--global--box-shadow--blur--100", + "name": "pf-t--color--white", "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "100" + "category": "color", + "type": "white" }, "path": [ - "global", - "box-shadow", - "blur", - "100" + "color", + "white" ] - }, - "pf-t--global--box-shadow--blur--200": { - "type": "number", - "value": "8px", - "filePath": "tokens/default/base.dimension.json", + } + }, + "pf-t--color--gray--10": { + "default": { + "type": "color", + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 8 + "type": "color", + "value": "#f2f2f2" }, - "name": "pf-t--global--box-shadow--blur--200", + "name": "pf-t--color--gray--10", "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "200" + "category": "color", + "type": "gray", + "item": "10" }, "path": [ - "global", - "box-shadow", - "blur", - "200" + "color", + "gray", + "10" ] - }, - "pf-t--global--box-shadow--blur--300": { - "type": "number", - "value": "24px", - "filePath": "tokens/default/base.dimension.json", + } + }, + "pf-t--color--gray--20": { + "default": { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 24 + "type": "color", + "value": "#e0e0e0" }, - "name": "pf-t--global--box-shadow--blur--300", + "name": "pf-t--color--gray--20", "attributes": { - "category": "global", - "type": "box-shadow", - "item": "blur", - "subitem": "300" + "category": "color", + "type": "gray", + "item": "20" }, "path": [ - "global", - "box-shadow", - "blur", - "300" + "color", + "gray", + "20" ] - }, - "pf-t--global--box-shadow--spread--100": { - "type": "number", - "value": "0px", - "filePath": "tokens/default/base.dimension.json", + } + }, + "pf-t--color--gray--30": { + "default": { + "type": "color", + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 0 + "type": "color", + "value": "#c7c7c7" }, - "name": "pf-t--global--box-shadow--spread--100", + "name": "pf-t--color--gray--30", "attributes": { - "category": "global", - "type": "box-shadow", - "item": "spread", - "subitem": "100" + "category": "color", + "type": "gray", + "item": "30" }, "path": [ - "global", - "box-shadow", - "spread", - "100" + "color", + "gray", + "30" ] - }, - "pf-t--global--breakpoint--100": { - "type": "number", - "value": "0rem", - "filePath": "tokens/default/base.dimension.json", + } + }, + "pf-t--color--gray--40": { + "default": { + "type": "color", + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 0 + "type": "color", + "value": "#a3a3a3" }, - "name": "pf-t--global--breakpoint--100", + "name": "pf-t--color--gray--40", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "100" + "category": "color", + "type": "gray", + "item": "40" }, "path": [ - "global", - "breakpoint", - "100" + "color", + "gray", + "40" ] - }, - "pf-t--global--breakpoint--200": { - "type": "number", - "value": "36rem", - "filePath": "tokens/default/base.dimension.json", + } + }, + "pf-t--color--gray--50": { + "default": { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 576 + "type": "color", + "value": "#707070" }, - "name": "pf-t--global--breakpoint--200", + "name": "pf-t--color--gray--50", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "200" + "category": "color", + "type": "gray", + "item": "50" }, "path": [ - "global", - "breakpoint", - "200" + "color", + "gray", + "50" ] - }, - "pf-t--global--breakpoint--250": { - "type": "number", - "value": "40rem", - "filePath": "tokens/default/base.dimension.json", + } + }, + "pf-t--color--gray--60": { + "default": { + "type": "color", + "value": "#4d4d4d", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 640 + "type": "color", + "value": "#4d4d4d" }, - "name": "pf-t--global--breakpoint--250", + "name": "pf-t--color--gray--60", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "250" + "category": "color", + "type": "gray", + "item": "60" }, "path": [ - "global", - "breakpoint", - "250" + "color", + "gray", + "60" ] - }, - "pf-t--global--breakpoint--300": { - "type": "number", - "value": "48rem", - "filePath": "tokens/default/base.dimension.json", + } + }, + "pf-t--color--gray--70": { + "default": { + "type": "color", + "value": "#383838", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 768 + "type": "color", + "value": "#383838" }, - "name": "pf-t--global--breakpoint--300", + "name": "pf-t--color--gray--70", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "300" + "category": "color", + "type": "gray", + "item": "70" }, "path": [ - "global", - "breakpoint", - "300" + "color", + "gray", + "70" ] - }, - "pf-t--global--breakpoint--350": { - "type": "number", - "value": "60rem", - "filePath": "tokens/default/base.dimension.json", + } + }, + "pf-t--color--gray--80": { + "default": { + "type": "color", + "value": "#292929", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 960 + "type": "color", + "value": "#292929" }, - "name": "pf-t--global--breakpoint--350", + "name": "pf-t--color--gray--80", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "350" + "category": "color", + "type": "gray", + "item": "80" }, "path": [ - "global", - "breakpoint", - "350" + "color", + "gray", + "80" ] - }, - "pf-t--global--breakpoint--400": { - "type": "number", - "value": "62rem", - "filePath": "tokens/default/base.dimension.json", + } + }, + "pf-t--color--gray--90": { + "default": { + "type": "color", + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 992 + "type": "color", + "value": "#1f1f1f" }, - "name": "pf-t--global--breakpoint--400", + "name": "pf-t--color--gray--90", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "400" + "category": "color", + "type": "gray", + "item": "90" }, "path": [ - "global", - "breakpoint", - "400" + "color", + "gray", + "90" ] - }, - "pf-t--global--breakpoint--500": { - "type": "number", - "value": "75rem", - "filePath": "tokens/default/base.dimension.json", + } + }, + "pf-t--color--gray--95": { + "default": { + "type": "color", + "value": "#151515", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 1200 + "type": "color", + "value": "#151515" }, - "name": "pf-t--global--breakpoint--500", + "name": "pf-t--color--gray--95", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "500" + "category": "color", + "type": "gray", + "item": "95" }, "path": [ - "global", - "breakpoint", - "500" + "color", + "gray", + "95" ] - }, - "pf-t--global--breakpoint--550": { - "type": "number", - "value": "80rem", - "filePath": "tokens/default/base.dimension.json", + } + }, + "pf-t--color--black": { + "default": { + "type": "color", + "value": "#000000", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 1280 + "type": "color", + "value": "#000000" }, - "name": "pf-t--global--breakpoint--550", + "name": "pf-t--color--black", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "550" + "category": "color", + "type": "black" }, "path": [ - "global", - "breakpoint", - "550" + "color", + "black" ] - }, - "pf-t--global--breakpoint--600": { - "type": "number", - "value": "90.625rem", - "filePath": "tokens/default/base.dimension.json", + } + }, + "pf-t--color--blue--10": { + "default": { + "type": "color", + "value": "#e0f0ff", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 1450 + "type": "color", + "value": "#e0f0ff" }, - "name": "pf-t--global--breakpoint--600", + "name": "pf-t--color--blue--10", "attributes": { - "category": "global", - "type": "breakpoint", - "item": "600" + "category": "color", + "type": "blue", + "item": "10" }, "path": [ - "global", - "breakpoint", - "600" + "color", + "blue", + "10" ] } }, - "motion": { - "pf-t--global--duration--50": { - "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", + "pf-t--color--blue--20": { + "default": { + "type": "color", + "value": "#b9dafc", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 50 + "type": "color", + "value": "#b9dafc" }, - "name": "pf-t--global--duration--50", + "name": "pf-t--color--blue--20", "attributes": { - "category": "global", - "type": "duration", - "item": "50" + "category": "color", + "type": "blue", + "item": "20" }, "path": [ - "global", - "duration", - "50" + "color", + "blue", + "20" ] - }, - "pf-t--global--duration--100": { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", + } + }, + "pf-t--color--blue--30": { + "default": { + "type": "color", + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 100 + "type": "color", + "value": "#92c5f9" }, - "name": "pf-t--global--duration--100", + "name": "pf-t--color--blue--30", "attributes": { - "category": "global", - "type": "duration", - "item": "100" + "category": "color", + "type": "blue", + "item": "30" }, "path": [ - "global", - "duration", - "100" + "color", + "blue", + "30" ] - }, - "pf-t--global--duration--200": { - "type": "number", - "value": "200ms", - "filePath": "tokens/default/base.motion.json", + } + }, + "pf-t--color--blue--40": { + "default": { + "type": "color", + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 200 + "type": "color", + "value": "#4394e5" }, - "name": "pf-t--global--duration--200", + "name": "pf-t--color--blue--40", "attributes": { - "category": "global", - "type": "duration", - "item": "200" + "category": "color", + "type": "blue", + "item": "40" }, "path": [ - "global", - "duration", - "200" + "color", + "blue", + "40" ] - }, - "pf-t--global--duration--300": { - "type": "number", - "value": "300ms", - "filePath": "tokens/default/base.motion.json", + } + }, + "pf-t--color--blue--50": { + "default": { + "type": "color", + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 300 + "type": "color", + "value": "#0066cc" }, - "name": "pf-t--global--duration--300", + "name": "pf-t--color--blue--50", "attributes": { - "category": "global", - "type": "duration", - "item": "300" + "category": "color", + "type": "blue", + "item": "50" }, "path": [ - "global", - "duration", - "300" + "color", + "blue", + "50" ] - }, - "pf-t--global--duration--400": { - "type": "number", - "value": "400ms", - "filePath": "tokens/default/base.motion.json", + } + }, + "pf-t--color--blue--60": { + "default": { + "type": "color", + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 400 + "type": "color", + "value": "#004d99" }, - "name": "pf-t--global--duration--400", + "name": "pf-t--color--blue--60", "attributes": { - "category": "global", - "type": "duration", - "item": "400" + "category": "color", + "type": "blue", + "item": "60" }, "path": [ - "global", - "duration", - "400" + "color", + "blue", + "60" ] - }, - "pf-t--global--duration--500": { - "type": "number", - "value": "500ms", - "filePath": "tokens/default/base.motion.json", + } + }, + "pf-t--color--blue--70": { + "default": { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 500 + "type": "color", + "value": "#003366" }, - "name": "pf-t--global--duration--500", + "name": "pf-t--color--blue--70", "attributes": { - "category": "global", - "type": "duration", - "item": "500" + "category": "color", + "type": "blue", + "item": "70" }, "path": [ - "global", - "duration", - "500" + "color", + "blue", + "70" ] - }, - "pf-t--global--duration--600": { - "type": "number", - "value": "600ms", - "filePath": "tokens/default/base.motion.json", + } + }, + "pf-t--color--teal--10": { + "default": { + "type": "color", + "value": "#daf2f2", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 600 + "type": "color", + "value": "#daf2f2" }, - "name": "pf-t--global--duration--600", + "name": "pf-t--color--teal--10", "attributes": { - "category": "global", - "type": "duration", - "item": "600" + "category": "color", + "type": "teal", + "item": "10" }, "path": [ - "global", - "duration", - "600" + "color", + "teal", + "10" ] - }, - "pf-t--global--delay--100": { - "type": "number", - "value": "0ms", - "filePath": "tokens/default/base.motion.json", + } + }, + "pf-t--color--teal--20": { + "default": { + "type": "color", + "value": "#b9e5e5", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 0 + "type": "color", + "value": "#b9e5e5" }, - "name": "pf-t--global--delay--100", + "name": "pf-t--color--teal--20", "attributes": { - "category": "global", - "type": "delay", - "item": "100" + "category": "color", + "type": "teal", + "item": "20" }, "path": [ - "global", - "delay", - "100" + "color", + "teal", + "20" ] - }, - "pf-t--global--delay--200": { - "type": "number", - "value": "50ms", - "filePath": "tokens/default/base.motion.json", + } + }, + "pf-t--color--teal--30": { + "default": { + "type": "color", + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 50 + "type": "color", + "value": "#9ad8d8" }, - "name": "pf-t--global--delay--200", + "name": "pf-t--color--teal--30", "attributes": { - "category": "global", - "type": "delay", - "item": "200" + "category": "color", + "type": "teal", + "item": "30" }, "path": [ - "global", - "delay", - "200" + "color", + "teal", + "30" ] - }, - "pf-t--global--delay--300": { - "type": "number", - "value": "100ms", - "filePath": "tokens/default/base.motion.json", + } + }, + "pf-t--color--teal--40": { + "default": { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 100 + "type": "color", + "value": "#63bdbd" }, - "name": "pf-t--global--delay--300", + "name": "pf-t--color--teal--40", "attributes": { - "category": "global", - "type": "delay", - "item": "300" + "category": "color", + "type": "teal", + "item": "40" }, "path": [ - "global", - "delay", - "300" + "color", + "teal", + "40" ] - }, - "pf-t--global--delay--400": { - "type": "number", - "value": "7000ms", - "filePath": "tokens/default/base.motion.json", + } + }, + "pf-t--color--teal--50": { + "default": { + "type": "color", + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "number", - "value": 7000 + "type": "color", + "value": "#37a3a3" }, - "name": "pf-t--global--delay--400", + "name": "pf-t--color--teal--50", "attributes": { - "category": "global", - "type": "delay", - "item": "400" + "category": "color", + "type": "teal", + "item": "50" }, "path": [ - "global", - "delay", - "400" + "color", + "teal", + "50" ] - }, - "pf-t--global--timing-function--100": { - "type": "string", - "value": "cubic-bezier(.4, 0, .7, .2)", - "filePath": "tokens/default/base.motion.json", + } + }, + "pf-t--color--teal--60": { + "default": { + "type": "color", + "value": "#147878", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "string", - "value": "cubic-bezier(.4, 0, .7, .2)" + "type": "color", + "value": "#147878" }, - "name": "pf-t--global--timing-function--100", + "name": "pf-t--color--teal--60", "attributes": { - "category": "global", - "type": "timing-function", - "item": "100" + "category": "color", + "type": "teal", + "item": "60" }, "path": [ - "global", - "timing-function", - "100" + "color", + "teal", + "60" ] - }, - "pf-t--global--timing-function--200": { - "type": "string", - "value": "cubic-bezier(.4, 0, .2, 1)", - "filePath": "tokens/default/base.motion.json", + } + }, + "pf-t--color--teal--70": { + "default": { + "type": "color", + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "string", - "value": "cubic-bezier(.4, 0, .2, 1)" + "type": "color", + "value": "#004d4d" }, - "name": "pf-t--global--timing-function--200", + "name": "pf-t--color--teal--70", "attributes": { - "category": "global", - "type": "timing-function", - "item": "200" + "category": "color", + "type": "teal", + "item": "70" }, "path": [ - "global", - "timing-function", - "200" + "color", + "teal", + "70" ] - }, - "pf-t--global--timing-function--300": { - "type": "string", - "value": "cubic-bezier(0, 0, .2, 1)", - "filePath": "tokens/default/base.motion.json", + } + }, + "pf-t--color--yellow--10": { + "default": { + "type": "color", + "value": "#fff4cc", + "filePath": "tokens/default/palette.color.json", "isSource": true, "original": { - "type": "string", - "value": "cubic-bezier(0, 0, .2, 1)" + "type": "color", + "value": "#fff4cc" }, - "name": "pf-t--global--timing-function--300", + "name": "pf-t--color--yellow--10", "attributes": { - "category": "global", - "type": "timing-function", - "item": "300" + "category": "color", + "type": "yellow", + "item": "10" }, "path": [ - "global", - "timing-function", - "300" + "color", + "yellow", + "10" ] } - } - }, - "palette": { - "pf-t--color--white": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - }, - "pf-t--color--gray--10": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - }, - "pf-t--color--gray--20": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - }, - "pf-t--color--gray--30": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - }, - "pf-t--color--gray--40": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - }, - "pf-t--color--gray--50": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - }, - "pf-t--color--gray--60": { - "type": "color", - "value": "#4d4d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4d4d4d" - }, - "name": "pf-t--color--gray--60", - "attributes": { - "category": "color", - "type": "gray", - "item": "60" - }, - "path": [ - "color", - "gray", - "60" - ] - }, - "pf-t--color--gray--70": { - "type": "color", - "value": "#383838", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - }, - "pf-t--color--gray--80": { - "type": "color", - "value": "#292929", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#292929" - }, - "name": "pf-t--color--gray--80", - "attributes": { - "category": "color", - "type": "gray", - "item": "80" - }, - "path": [ - "color", - "gray", - "80" - ] - }, - "pf-t--color--gray--90": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - }, - "pf-t--color--gray--95": { - "type": "color", - "value": "#151515", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#151515" - }, - "name": "pf-t--color--gray--95", - "attributes": { - "category": "color", - "type": "gray", - "item": "95" - }, - "path": [ - "color", - "gray", - "95" - ] - }, - "pf-t--color--black": { - "type": "color", - "value": "#000000", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#000000" - }, - "name": "pf-t--color--black", - "attributes": { - "category": "color", - "type": "black" - }, - "path": [ - "color", - "black" - ] - }, - "pf-t--color--blue--10": { - "type": "color", - "value": "#e0f0ff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0f0ff" - }, - "name": "pf-t--color--blue--10", - "attributes": { - "category": "color", - "type": "blue", - "item": "10" - }, - "path": [ - "color", - "blue", - "10" - ] - }, - "pf-t--color--blue--20": { - "type": "color", - "value": "#b9dafc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9dafc" - }, - "name": "pf-t--color--blue--20", - "attributes": { - "category": "color", - "type": "blue", - "item": "20" - }, - "path": [ - "color", - "blue", - "20" - ] - }, - "pf-t--color--blue--30": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - }, - "pf-t--color--blue--40": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - }, - "pf-t--color--blue--50": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - }, - "pf-t--color--blue--60": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - }, - "pf-t--color--blue--70": { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#003366" - }, - "name": "pf-t--color--blue--70", - "attributes": { - "category": "color", - "type": "blue", - "item": "70" - }, - "path": [ - "color", - "blue", - "70" - ] - }, - "pf-t--color--teal--10": { - "type": "color", - "value": "#daf2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#daf2f2" - }, - "name": "pf-t--color--teal--10", - "attributes": { - "category": "color", - "type": "teal", - "item": "10" - }, - "path": [ - "color", - "teal", - "10" - ] - }, - "pf-t--color--teal--20": { - "type": "color", - "value": "#b9e5e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#b9e5e5" - }, - "name": "pf-t--color--teal--20", - "attributes": { - "category": "color", - "type": "teal", - "item": "20" - }, - "path": [ - "color", - "teal", - "20" - ] - }, - "pf-t--color--teal--30": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - }, - "pf-t--color--teal--40": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - }, - "pf-t--color--teal--50": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - }, - "pf-t--color--teal--60": { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - }, - "pf-t--color--teal--70": { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - }, - "pf-t--color--yellow--10": { - "type": "color", - "value": "#fff4cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#fff4cc" - }, - "name": "pf-t--color--yellow--10", - "attributes": { - "category": "color", - "type": "yellow", - "item": "10" - }, - "path": [ - "color", - "yellow", - "10" - ] }, "pf-t--color--yellow--20": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } }, "pf-t--color--yellow--30": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } }, "pf-t--color--yellow--40": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } }, "pf-t--color--yellow--50": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } }, "pf-t--color--yellow--60": { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#96640f" - }, - "name": "pf-t--color--yellow--60", - "attributes": { - "category": "color", - "type": "yellow", - "item": "60" - }, - "path": [ - "color", - "yellow", - "60" - ] + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + } }, "pf-t--color--yellow--70": { - "type": "color", - "value": "#73480b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#73480b" - }, - "name": "pf-t--color--yellow--70", - "attributes": { - "category": "color", - "type": "yellow", - "item": "70" - }, - "path": [ - "color", - "yellow", - "70" - ] + "value": "#73480b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#73480b" + }, + "name": "pf-t--color--yellow--70", + "attributes": { + "category": "color", + "type": "yellow", + "item": "70" + }, + "path": [ + "color", + "yellow", + "70" + ] + } }, "pf-t--color--green--10": { - "type": "color", - "value": "#e9f7df", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#e9f7df" - }, - "name": "pf-t--color--green--10", - "attributes": { - "category": "color", - "type": "green", - "item": "10" - }, - "path": [ - "color", - "green", - "10" - ] + "value": "#e9f7df", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e9f7df" + }, + "name": "pf-t--color--green--10", + "attributes": { + "category": "color", + "type": "green", + "item": "10" + }, + "path": [ + "color", + "green", + "10" + ] + } }, "pf-t--color--green--20": { - "type": "color", - "value": "#d1f1bb", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#d1f1bb" - }, - "name": "pf-t--color--green--20", - "attributes": { - "category": "color", - "type": "green", - "item": "20" - }, - "path": [ - "color", - "green", - "20" - ] + "value": "#d1f1bb", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d1f1bb" + }, + "name": "pf-t--color--green--20", + "attributes": { + "category": "color", + "type": "green", + "item": "20" + }, + "path": [ + "color", + "green", + "20" + ] + } }, "pf-t--color--green--30": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } }, "pf-t--color--green--40": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } }, "pf-t--color--green--50": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } }, "pf-t--color--green--60": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } }, "pf-t--color--green--70": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } }, "pf-t--color--orange--10": { - "type": "color", - "value": "#ffe8cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#ffe8cc" - }, - "name": "pf-t--color--orange--10", - "attributes": { - "category": "color", - "type": "orange", - "item": "10" - }, - "path": [ - "color", - "orange", - "10" - ] + "value": "#ffe8cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe8cc" + }, + "name": "pf-t--color--orange--10", + "attributes": { + "category": "color", + "type": "orange", + "item": "10" + }, + "path": [ + "color", + "orange", + "10" + ] + } }, "pf-t--color--orange--20": { - "type": "color", - "value": "#fccb8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#fccb8f" - }, - "name": "pf-t--color--orange--20", - "attributes": { - "category": "color", - "type": "orange", - "item": "20" - }, - "path": [ - "color", - "orange", - "20" - ] + "value": "#fccb8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fccb8f" + }, + "name": "pf-t--color--orange--20", + "attributes": { + "category": "color", + "type": "orange", + "item": "20" + }, + "path": [ + "color", + "orange", + "20" + ] + } }, "pf-t--color--orange--30": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } }, "pf-t--color--orange--40": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } }, "pf-t--color--orange--50": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } }, "pf-t--color--orange--60": { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#9e4a06" - }, - "name": "pf-t--color--orange--60", - "attributes": { - "category": "color", - "type": "orange", - "item": "60" - }, - "path": [ - "color", - "orange", - "60" - ] + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + } }, "pf-t--color--orange--70": { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#732e00" - }, - "name": "pf-t--color--orange--70", - "attributes": { - "category": "color", - "type": "orange", - "item": "70" - }, - "path": [ - "color", - "orange", - "70" - ] + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + } }, "pf-t--color--red-orange--10": { - "type": "color", - "value": "#ffe3d9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#ffe3d9" - }, - "name": "pf-t--color--red-orange--10", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "10" - }, - "path": [ - "color", - "red-orange", - "10" - ] + "value": "#ffe3d9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe3d9" + }, + "name": "pf-t--color--red-orange--10", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "10" + }, + "path": [ + "color", + "red-orange", + "10" + ] + } }, "pf-t--color--red-orange--20": { - "type": "color", - "value": "#fbbea8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#fbbea8" - }, - "name": "pf-t--color--red-orange--20", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "20" - }, - "path": [ - "color", - "red-orange", - "20" - ] + "value": "#fbbea8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbbea8" + }, + "name": "pf-t--color--red-orange--20", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "20" + }, + "path": [ + "color", + "red-orange", + "20" + ] + } }, "pf-t--color--red-orange--30": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } }, "pf-t--color--red-orange--40": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } }, "pf-t--color--red-orange--50": { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] + "value": "#f0561d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } }, "pf-t--color--red-orange--60": { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } }, "pf-t--color--red-orange--70": { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } }, "pf-t--color--purple--10": { - "type": "color", - "value": "#ece6ff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#ece6ff" - }, - "name": "pf-t--color--purple--10", - "attributes": { - "category": "color", - "type": "purple", - "item": "10" - }, - "path": [ - "color", - "purple", - "10" - ] + "value": "#ece6ff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ece6ff" + }, + "name": "pf-t--color--purple--10", + "attributes": { + "category": "color", + "type": "purple", + "item": "10" + }, + "path": [ + "color", + "purple", + "10" + ] + } }, "pf-t--color--purple--20": { - "type": "color", - "value": "#d0c5f4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#d0c5f4" - }, - "name": "pf-t--color--purple--20", - "attributes": { - "category": "color", - "type": "purple", - "item": "20" - }, - "path": [ - "color", - "purple", - "20" - ] + "value": "#d0c5f4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#d0c5f4" + }, + "name": "pf-t--color--purple--20", + "attributes": { + "category": "color", + "type": "purple", + "item": "20" + }, + "path": [ + "color", + "purple", + "20" + ] + } }, "pf-t--color--purple--30": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } }, "pf-t--color--purple--40": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } }, "pf-t--color--purple--50": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } }, "pf-t--color--purple--60": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } }, "pf-t--color--purple--70": { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#21134d" - }, - "name": "pf-t--color--purple--70", - "attributes": { - "category": "color", - "type": "purple", - "item": "70" - }, - "path": [ - "color", - "purple", - "70" - ] + "value": "#21134d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#21134d" + }, + "name": "pf-t--color--purple--70", + "attributes": { + "category": "color", + "type": "purple", + "item": "70" + }, + "path": [ + "color", + "purple", + "70" + ] + } }, "pf-t--color--red--10": { - "type": "color", - "value": "#fce3e3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#fce3e3" - }, - "name": "pf-t--color--red--10", - "attributes": { - "category": "color", - "type": "red", - "item": "10" - }, - "path": [ - "color", - "red", - "10" - ] + "value": "#fce3e3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fce3e3" + }, + "name": "pf-t--color--red--10", + "attributes": { + "category": "color", + "type": "red", + "item": "10" + }, + "path": [ + "color", + "red", + "10" + ] + } }, "pf-t--color--red--20": { - "type": "color", - "value": "#fbc5c5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#fbc5c5" - }, - "name": "pf-t--color--red--20", - "attributes": { - "category": "color", - "type": "red", - "item": "20" - }, - "path": [ - "color", - "red", - "20" - ] + "value": "#fbc5c5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#fbc5c5" + }, + "name": "pf-t--color--red--20", + "attributes": { + "category": "color", + "type": "red", + "item": "20" + }, + "path": [ + "color", + "red", + "20" + ] + } }, "pf-t--color--red--30": { - "type": "color", - "value": "#f9a8a8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#f9a8a8" - }, - "name": "pf-t--color--red--30", - "attributes": { - "category": "color", - "type": "red", - "item": "30" - }, - "path": [ - "color", - "red", - "30" - ] + "value": "#f9a8a8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f9a8a8" + }, + "name": "pf-t--color--red--30", + "attributes": { + "category": "color", + "type": "red", + "item": "30" + }, + "path": [ + "color", + "red", + "30" + ] + } }, "pf-t--color--red--40": { - "type": "color", - "value": "#f56e6e", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#f56e6e" - }, - "name": "pf-t--color--red--40", - "attributes": { - "category": "color", - "type": "red", - "item": "40" - }, - "path": [ - "color", - "red", - "40" - ] + "value": "#f56e6e", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f56e6e" + }, + "name": "pf-t--color--red--40", + "attributes": { + "category": "color", + "type": "red", + "item": "40" + }, + "path": [ + "color", + "red", + "40" + ] + } }, "pf-t--color--red--50": { - "type": "color", - "value": "#ee0000", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#ee0000" - }, - "name": "pf-t--color--red--50", - "attributes": { - "category": "color", - "type": "red", - "item": "50" - }, - "path": [ - "color", - "red", - "50" - ] + "value": "#ee0000", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ee0000" + }, + "name": "pf-t--color--red--50", + "attributes": { + "category": "color", + "type": "red", + "item": "50" + }, + "path": [ + "color", + "red", + "50" + ] + } }, "pf-t--color--red--60": { - "type": "color", - "value": "#a60000", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#a60000" - }, - "name": "pf-t--color--red--60", - "attributes": { - "category": "color", - "type": "red", - "item": "60" - }, - "path": [ - "color", - "red", - "60" - ] + "value": "#a60000", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a60000" + }, + "name": "pf-t--color--red--60", + "attributes": { + "category": "color", + "type": "red", + "item": "60" + }, + "path": [ + "color", + "red", + "60" + ] + } }, "pf-t--color--red--70": { - "type": "color", - "value": "#5f0000", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "#5f0000" - }, - "name": "pf-t--color--red--70", - "attributes": { - "category": "color", - "type": "red", - "item": "70" - }, - "path": [ - "color", - "red", - "70" - ] + "value": "#5f0000", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5f0000" + }, + "name": "pf-t--color--red--70", + "attributes": { + "category": "color", + "type": "red", + "item": "70" + }, + "path": [ + "color", + "red", + "70" + ] + } } }, "chart": { "pf-t--chart--color--blue--100": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } }, "pf-t--chart--color--blue--200": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } }, "pf-t--chart--color--blue--300": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--300", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "blue", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "blue", - "300" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } }, "pf-t--chart--color--blue--400": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--chart--color--blue--400", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "blue", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "blue", - "400" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.60}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } }, "pf-t--chart--color--blue--500": { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.70}" - }, - "name": "pf-t--chart--color--blue--500", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "blue", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "blue", - "500" - ], - "references": [ - { + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#003366", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.70}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { "type": "color", - "value": "#003366" - }, - "name": "pf-t--color--blue--70", - "attributes": { - "category": "color", - "type": "blue", - "item": "70" - }, - "path": [ - "color", - "blue", - "70" - ] - } - ] + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + } + ] + } }, "pf-t--chart--color--green--100": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--chart--color--green--100", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "green", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "green", - "100" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } }, "pf-t--chart--color--green--200": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--chart--color--green--200", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "green", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "green", - "200" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } }, "pf-t--chart--color--green--300": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.50}" - }, - "name": "pf-t--chart--color--green--300", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "green", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "green", - "300" - ], - "references": [ - { + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#63993d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } - ] + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } }, "pf-t--chart--color--green--400": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.60}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } }, "pf-t--chart--color--green--500": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.70}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } }, "pf-t--chart--color--teal--100": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } }, "pf-t--chart--color--teal--200": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } }, "pf-t--chart--color--teal--300": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--300", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "teal", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "teal", - "300" - ], - "references": [ - { + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } }, "pf-t--chart--color--teal--400": { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--chart--color--teal--400", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "teal", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "teal", - "400" - ], - "references": [ - { + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.60}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } }, "pf-t--chart--color--teal--500": { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.70}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } }, "pf-t--chart--color--purple--100": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--chart--color--purple--100", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "purple", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "purple", - "100" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } }, "pf-t--chart--color--purple--200": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--chart--color--purple--200", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "purple", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "purple", - "200" - ], - "references": [ - { + "value": "#876fd4", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } }, "pf-t--chart--color--purple--300": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--chart--color--purple--300", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "purple", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "purple", - "300" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } }, "pf-t--chart--color--purple--400": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--chart--color--purple--400", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "purple", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "purple", - "400" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } }, "pf-t--chart--color--purple--500": { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.70}" - }, - "name": "pf-t--chart--color--purple--500", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "purple", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "purple", - "500" - ], - "references": [ - { + "value": "#21134d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#21134d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.70}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { "type": "color", - "value": "#21134d" - }, - "name": "pf-t--color--purple--70", - "attributes": { - "category": "color", - "type": "purple", - "item": "70" - }, - "path": [ - "color", - "purple", - "70" - ] - } - ] + "value": "#21134d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#21134d" + }, + "name": "pf-t--color--purple--70", + "attributes": { + "category": "color", + "type": "purple", + "item": "70" + }, + "path": [ + "color", + "purple", + "70" + ] + } + ] + } }, "pf-t--chart--color--yellow--100": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } }, "pf-t--chart--color--yellow--200": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--color--yellow--200", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "yellow", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "yellow", - "200" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } }, "pf-t--chart--color--yellow--300": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--color--yellow--300", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "yellow", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "yellow", - "300" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } }, "pf-t--chart--color--yellow--400": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "yellow", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "yellow", - "400" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } }, "pf-t--chart--color--yellow--500": { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.60}" - }, - "name": "pf-t--chart--color--yellow--500", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "yellow", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "yellow", - "500" - ], - "references": [ - { + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#96640f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.60}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { "type": "color", - "value": "#96640f" - }, - "name": "pf-t--color--yellow--60", - "attributes": { - "category": "color", - "type": "yellow", - "item": "60" - }, - "path": [ - "color", - "yellow", - "60" - ] - } - ] + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + } + ] + } }, "pf-t--chart--color--orange--100": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } }, "pf-t--chart--color--orange--200": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--color--orange--200", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "orange", - "200" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } }, "pf-t--chart--color--orange--300": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--300", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "orange", - "300" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } }, "pf-t--chart--color--orange--400": { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.60}" - }, - "name": "pf-t--chart--color--orange--400", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "orange", - "400" - ], - "references": [ - { + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.60}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { "type": "color", - "value": "#9e4a06" - }, - "name": "pf-t--color--orange--60", - "attributes": { - "category": "color", - "type": "orange", - "item": "60" - }, - "path": [ - "color", - "orange", - "60" - ] - } - ] + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + } + ] + } }, "pf-t--chart--color--orange--500": { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.orange.70}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#732e00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.70}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { "type": "color", - "value": "#732e00" - }, - "name": "pf-t--color--orange--70", - "attributes": { - "category": "color", - "type": "orange", - "item": "70" - }, - "path": [ - "color", - "orange", - "70" - ] - } - ] + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + } + ] + } }, "pf-t--chart--color--red-orange--100": { - "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.30}" - }, - "name": "pf-t--chart--color--red-orange--100", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "red-orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "red-orange", - "100" - ], - "references": [ - { + "value": "#f89b78", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f89b78", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.30}" + }, + "name": "pf-t--chart--color--red-orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "red-orange", + "100" + ], + "references": [ + { "type": "color", - "value": "#f89b78" - }, - "name": "pf-t--color--red-orange--30", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "30" - }, - "path": [ - "color", - "red-orange", - "30" - ] - } - ] + "value": "#f89b78", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f89b78" + }, + "name": "pf-t--color--red-orange--30", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "30" + }, + "path": [ + "color", + "red-orange", + "30" + ] + } + ] + } }, "pf-t--chart--color--red-orange--200": { - "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.40}" - }, - "name": "pf-t--chart--color--red-orange--200", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "red-orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "red-orange", - "200" - ], - "references": [ - { + "value": "#f4784a", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f4784a", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.40}" + }, + "name": "pf-t--chart--color--red-orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "red-orange", + "200" + ], + "references": [ + { "type": "color", - "value": "#f4784a" - }, - "name": "pf-t--color--red-orange--40", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "40" - }, - "path": [ - "color", - "red-orange", - "40" - ] - } - ] + "value": "#f4784a", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f4784a" + }, + "name": "pf-t--color--red-orange--40", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "40" + }, + "path": [ + "color", + "red-orange", + "40" + ] + } + ] + } }, "pf-t--chart--color--red-orange--300": { - "type": "color", - "value": "#f0561d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.red-orange.50}" - }, - "name": "pf-t--chart--color--red-orange--300", - "attributes": { - "category": "chart", - "type": "color", - "item": "red-orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "red-orange", - "300" - ], - "references": [ - { + "value": "#f0561d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f0561d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.50}" + }, + "name": "pf-t--chart--color--red-orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "red-orange", + "300" + ], + "references": [ + { "type": "color", - "value": "#f0561d" - }, - "name": "pf-t--color--red-orange--50", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "50" - }, - "path": [ - "color", - "red-orange", - "50" - ] - } - ] + "value": "#f0561d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f0561d" + }, + "name": "pf-t--color--red-orange--50", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "50" + }, + "path": [ + "color", + "red-orange", + "50" + ] + } + ] + } }, "pf-t--chart--color--red-orange--400": { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--chart--color--red-orange--400", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "red-orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "red-orange", - "400" - ], - "references": [ - { + "value": "#b1380b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.60}" + }, + "name": "pf-t--chart--color--red-orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "red-orange", + "400" + ], + "references": [ + { "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } }, "pf-t--chart--color--red-orange--500": { - "type": "color", - "value": "#731f00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.red-orange.70}" - }, - "name": "pf-t--chart--color--red-orange--500", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "red-orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "red-orange", - "500" - ], - "references": [ - { + "value": "#731f00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#731f00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.70}" + }, + "name": "pf-t--chart--color--red-orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "red-orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "red-orange", + "500" + ], + "references": [ + { "type": "color", - "value": "#731f00" - }, - "name": "pf-t--color--red-orange--70", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "70" - }, - "path": [ - "color", - "red-orange", - "70" - ] - } - ] + "value": "#731f00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#731f00" + }, + "name": "pf-t--color--red-orange--70", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "70" + }, + "path": [ + "color", + "red-orange", + "70" + ] + } + ] + } }, "pf-t--chart--color--black--100": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--chart--color--black--100", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "black", - "100" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } }, "pf-t--chart--color--black--200": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--chart--color--black--200", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "black", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "black", - "200" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { + "type": "color", + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } }, "pf-t--chart--color--black--300": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--chart--color--black--300", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "black", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "black", - "300" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } }, "pf-t--chart--color--black--400": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--chart--color--black--400", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "black", - "400" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } }, "pf-t--chart--color--black--500": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--chart--color--black--500", - "attributes": { - "category": "chart", + "default": { "type": "color", - "item": "black", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "black", - "500" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } }, "pf-t--chart--global--BorderWidth--xs": { - "type": "number", - "value": 1, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 1 - }, - "name": "pf-t--chart--global--BorderWidth--xs", - "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "xs" - }, - "path": [ - "chart", - "global", - "BorderWidth", - "xs" - ] + "value": 1, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--chart--global--BorderWidth--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "xs" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "xs" + ] + } }, "pf-t--chart--global--BorderWidth--sm": { - "type": "number", - "value": 2, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 2 - }, - "name": "pf-t--chart--global--BorderWidth--sm", - "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "sm" - }, - "path": [ - "chart", - "global", - "BorderWidth", - "sm" - ] + "value": 2, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--chart--global--BorderWidth--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "sm" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "sm" + ] + } }, "pf-t--chart--global--BorderWidth--lg": { - "type": "number", - "value": 8, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 8 - }, - "name": "pf-t--chart--global--BorderWidth--lg", - "attributes": { - "category": "chart", - "type": "global", - "item": "BorderWidth", - "subitem": "lg" - }, - "path": [ - "chart", - "global", - "BorderWidth", - "lg" - ] + "value": 8, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--chart--global--BorderWidth--lg", + "attributes": { + "category": "chart", + "type": "global", + "item": "BorderWidth", + "subitem": "lg" + }, + "path": [ + "chart", + "global", + "BorderWidth", + "lg" + ] + } }, "pf-t--chart--global--stroke--width--xs": { - "type": "number", - "value": 1, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 1 - }, - "name": "pf-t--chart--global--stroke--width--xs", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke", - "subitem": "width", - "state": "xs" - }, - "path": [ - "chart", - "global", - "stroke", - "width", - "xs" - ] + "value": 1, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 1 + }, + "name": "pf-t--chart--global--stroke--width--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke", + "subitem": "width", + "state": "xs" + }, + "path": [ + "chart", + "global", + "stroke", + "width", + "xs" + ] + } }, "pf-t--chart--global--stroke--width--sm": { - "type": "number", - "value": 2, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 2 - }, - "name": "pf-t--chart--global--stroke--width--sm", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke", - "subitem": "width", - "state": "sm" - }, - "path": [ - "chart", - "global", - "stroke", - "width", - "sm" - ] + "value": 2, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 2 + }, + "name": "pf-t--chart--global--stroke--width--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke", + "subitem": "width", + "state": "sm" + }, + "path": [ + "chart", + "global", + "stroke", + "width", + "sm" + ] + } }, "pf-t--chart--global--fill--color--100": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--chart--global--fill--color--100", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "100" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "100" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--global--fill--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } }, "pf-t--chart--global--fill--color--200": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--chart--global--fill--color--200", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "200" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "200" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--global--fill--color--200", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "200" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } }, "pf-t--chart--global--fill--color--300": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--chart--global--fill--color--300", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "300" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "300" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--global--fill--color--300", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "300" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "300" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } }, "pf-t--chart--global--fill--color--400": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--chart--global--fill--color--400", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "400" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "400" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--global--fill--color--400", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "400" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "400" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } }, "pf-t--chart--global--fill--color--500": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--chart--global--fill--color--500", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "500" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "500" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--global--fill--color--500", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "500" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "500" + ], + "references": [ + { "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } }, "pf-t--chart--global--fill--color--700": { - "type": "color", - "value": "#383838", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.70}" - }, - "name": "pf-t--chart--global--fill--color--700", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "700" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "700" - ], - "references": [ - { + "value": "#383838", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#383838", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.70}" + }, + "name": "pf-t--chart--global--fill--color--700", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "700" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "700" + ], + "references": [ + { "type": "color", - "value": "#383838" - }, - "name": "pf-t--color--gray--70", - "attributes": { - "category": "color", - "type": "gray", - "item": "70" - }, - "path": [ - "color", - "gray", - "70" - ] - } - ] + "value": "#383838", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#383838" + }, + "name": "pf-t--color--gray--70", + "attributes": { + "category": "color", + "type": "gray", + "item": "70" + }, + "path": [ + "color", + "gray", + "70" + ] + } + ] + } }, "pf-t--chart--global--fill--color--900": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--chart--global--fill--color--900", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "900" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "900" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.90}" + }, + "name": "pf-t--chart--global--fill--color--900", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "900" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "900" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } }, "pf-t--chart--global--fill--color--white": { - "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.white}" - }, - "name": "pf-t--chart--global--fill--color--white", - "attributes": { - "category": "chart", - "type": "global", - "item": "fill", - "subitem": "color", - "state": "white" - }, - "path": [ - "chart", - "global", - "fill", - "color", - "white" - ], - "references": [ - { + "value": "#ffffff", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffffff", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.white}" + }, + "name": "pf-t--chart--global--fill--color--white", + "attributes": { + "category": "chart", + "type": "global", + "item": "fill", + "subitem": "color", + "state": "white" + }, + "path": [ + "chart", + "global", + "fill", + "color", + "white" + ], + "references": [ + { "type": "color", - "value": "#ffffff" - }, - "name": "pf-t--color--white", - "attributes": { - "category": "color", - "type": "white" - }, - "path": [ - "color", - "white" - ] - } - ] + "value": "#ffffff", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffffff" + }, + "name": "pf-t--color--white", + "attributes": { + "category": "color", + "type": "white" + }, + "path": [ + "color", + "white" + ] + } + ] + } }, "pf-t--chart--global--warning--color--100": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--global--warning--color--100", - "attributes": { - "category": "chart", - "type": "global", - "item": "warning", - "subitem": "color", - "state": "100" - }, - "path": [ - "chart", - "global", - "warning", - "color", - "100" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--global--warning--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "warning", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "warning", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } }, "pf-t--chart--global--warning--color--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--global--warning--color--200", - "attributes": { - "category": "chart", - "type": "global", - "item": "warning", - "subitem": "color", - "state": "200" - }, - "path": [ - "chart", - "global", - "warning", - "color", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--global--warning--color--200", + "attributes": { + "category": "chart", + "type": "global", + "item": "warning", + "subitem": "color", + "state": "200" + }, + "path": [ + "chart", + "global", + "warning", + "color", + "200" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } }, "pf-t--chart--global--success--color--100": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--global--success--color--100", - "attributes": { - "category": "chart", - "type": "global", - "item": "success", - "subitem": "color", - "state": "100" - }, - "path": [ - "chart", - "global", - "success", - "color", - "100" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--global--success--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "success", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "success", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } }, "pf-t--chart--global--danger--color--100": { - "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.red-orange.60}" - }, - "name": "pf-t--chart--global--danger--color--100", - "attributes": { - "category": "chart", - "type": "global", - "item": "danger", - "subitem": "color", - "state": "100" - }, - "path": [ - "chart", - "global", - "danger", - "color", - "100" - ], - "references": [ - { + "value": "#b1380b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#b1380b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.red-orange.60}" + }, + "name": "pf-t--chart--global--danger--color--100", + "attributes": { + "category": "chart", + "type": "global", + "item": "danger", + "subitem": "color", + "state": "100" + }, + "path": [ + "chart", + "global", + "danger", + "color", + "100" + ], + "references": [ + { "type": "color", - "value": "#b1380b" - }, - "name": "pf-t--color--red-orange--60", - "attributes": { - "category": "color", - "type": "red-orange", - "item": "60" - }, - "path": [ - "color", - "red-orange", - "60" - ] - } - ] + "value": "#b1380b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b1380b" + }, + "name": "pf-t--color--red-orange--60", + "attributes": { + "category": "color", + "type": "red-orange", + "item": "60" + }, + "path": [ + "color", + "red-orange", + "60" + ] + } + ] + } }, "pf-t--chart--global--FontSize--xs": { - "type": "number", - "value": 12, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 12 - }, - "name": "pf-t--chart--global--FontSize--xs", - "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "xs" - }, - "path": [ - "chart", - "global", - "FontSize", - "xs" - ] + "value": 12, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 12 + }, + "name": "pf-t--chart--global--FontSize--xs", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "xs" + }, + "path": [ + "chart", + "global", + "FontSize", + "xs" + ] + } }, "pf-t--chart--global--FontSize--sm": { - "type": "number", - "value": 14, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 14 - }, - "name": "pf-t--chart--global--FontSize--sm", - "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "sm" - }, - "path": [ - "chart", - "global", - "FontSize", - "sm" - ] + "value": 14, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 14 + }, + "name": "pf-t--chart--global--FontSize--sm", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "sm" + }, + "path": [ + "chart", + "global", + "FontSize", + "sm" + ] + } }, "pf-t--chart--global--FontSize--lg": { - "type": "number", - "value": 18, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 18 - }, - "name": "pf-t--chart--global--FontSize--lg", - "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "lg" - }, - "path": [ - "chart", - "global", - "FontSize", - "lg" - ] + "value": 18, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 18 + }, + "name": "pf-t--chart--global--FontSize--lg", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "lg" + }, + "path": [ + "chart", + "global", + "FontSize", + "lg" + ] + } }, "pf-t--chart--global--FontSize--2xl": { - "type": "number", - "value": 22, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 22 - }, - "name": "pf-t--chart--global--FontSize--2xl", - "attributes": { - "category": "chart", - "type": "global", - "item": "FontSize", - "subitem": "2xl" - }, - "path": [ - "chart", - "global", - "FontSize", - "2xl" - ] + "value": 22, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 22 + }, + "name": "pf-t--chart--global--FontSize--2xl", + "attributes": { + "category": "chart", + "type": "global", + "item": "FontSize", + "subitem": "2xl" + }, + "path": [ + "chart", + "global", + "FontSize", + "2xl" + ] + } }, "pf-t--chart--global--letter-spacing": { - "type": "string", - "value": "normal", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "string", - "value": "normal" - }, - "name": "pf-t--chart--global--letter-spacing", - "attributes": { - "category": "chart", - "type": "global", - "item": "letter-spacing" - }, - "path": [ - "chart", - "global", - "letter-spacing" - ] + "value": "normal", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "string", + "value": "normal" + }, + "name": "pf-t--chart--global--letter-spacing", + "attributes": { + "category": "chart", + "type": "global", + "item": "letter-spacing" + }, + "path": [ + "chart", + "global", + "letter-spacing" + ] + } }, "pf-t--chart--global--stroke-line-cap": { - "type": "string", - "value": "round", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "string", - "value": "round" - }, - "name": "pf-t--chart--global--stroke-line-cap", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke-line-cap" - }, - "path": [ - "chart", - "global", - "stroke-line-cap" - ] + "value": "round", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "string", + "value": "round" + }, + "name": "pf-t--chart--global--stroke-line-cap", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke-line-cap" + }, + "path": [ + "chart", + "global", + "stroke-line-cap" + ] + } }, "pf-t--chart--global--label--padding": { - "type": "number", - "value": 10, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 10 - }, - "name": "pf-t--chart--global--label--padding", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "padding" - }, - "path": [ - "chart", - "global", - "label", - "padding" - ] + "value": 10, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 10 + }, + "name": "pf-t--chart--global--label--padding", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "padding" + }, + "path": [ + "chart", + "global", + "label", + "padding" + ] + } }, "pf-t--chart--global--label--margin": { - "type": "number", - "value": 8, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 8 - }, - "name": "pf-t--chart--global--label--margin", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "margin" - }, - "path": [ - "chart", - "global", - "label", - "margin" - ] + "value": 8, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 8 + }, + "name": "pf-t--chart--global--label--margin", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "margin" + }, + "path": [ + "chart", + "global", + "label", + "margin" + ] + } }, "pf-t--chart--global--label--stroke": { - "width": { - "type": "number", - "value": 0, - "filePath": "tokens/default/charts.json", - "isSource": true - }, - "type": "string", - "value": "transparent", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "width": { "type": "number", "value": 0, @@ -46899,7210 +48423,7424 @@ "isSource": true }, "type": "string", - "value": "transparent" - }, - "name": "pf-t--chart--global--label--stroke", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "stroke" - }, - "path": [ - "chart", - "global", - "label", - "stroke" - ] + "value": "transparent", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "width": { + "type": "number", + "value": 0, + "filePath": "tokens/default/charts.json", + "isSource": true + }, + "type": "string", + "value": "transparent" + }, + "name": "pf-t--chart--global--label--stroke", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "stroke" + }, + "path": [ + "chart", + "global", + "label", + "stroke" + ] + } }, "pf-t--chart--global--label--text-anchor": { - "type": "string", - "value": "middle", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "string", - "value": "middle" - }, - "name": "pf-t--chart--global--label--text-anchor", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "text-anchor" - }, - "path": [ - "chart", - "global", - "label", - "text-anchor" - ] + "value": "middle", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "string", + "value": "middle" + }, + "name": "pf-t--chart--global--label--text-anchor", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "text-anchor" + }, + "path": [ + "chart", + "global", + "label", + "text-anchor" + ] + } }, "pf-t--chart--global--label--fill": { - "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{color.gray.90}" - }, - "name": "pf-t--chart--global--label--fill", - "attributes": { - "category": "chart", - "type": "global", - "item": "label", - "subitem": "fill" - }, - "path": [ - "chart", - "global", - "label", - "fill" - ], - "references": [ - { + "value": "#1f1f1f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#1f1f1f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.90}" + }, + "name": "pf-t--chart--global--label--fill", + "attributes": { + "category": "chart", + "type": "global", + "item": "label", + "subitem": "fill" + }, + "path": [ + "chart", + "global", + "label", + "fill" + ], + "references": [ + { "type": "color", - "value": "#1f1f1f" - }, - "name": "pf-t--color--gray--90", - "attributes": { - "category": "color", - "type": "gray", - "item": "90" - }, - "path": [ - "color", - "gray", - "90" - ] - } - ] + "value": "#1f1f1f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#1f1f1f" + }, + "name": "pf-t--color--gray--90", + "attributes": { + "category": "color", + "type": "gray", + "item": "90" + }, + "path": [ + "color", + "gray", + "90" + ] + } + ] + } }, "pf-t--chart--global--layout--padding": { - "type": "number", - "value": 50, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 50 - }, - "name": "pf-t--chart--global--layout--padding", - "attributes": { - "category": "chart", - "type": "global", - "item": "layout", - "subitem": "padding" - }, - "path": [ - "chart", - "global", - "layout", - "padding" - ] + "value": 50, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 50 + }, + "name": "pf-t--chart--global--layout--padding", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "padding" + }, + "path": [ + "chart", + "global", + "layout", + "padding" + ] + } }, "pf-t--chart--global--layout--height": { - "type": "number", - "value": 300, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 300 - }, - "name": "pf-t--chart--global--layout--height", - "attributes": { - "category": "chart", - "type": "global", - "item": "layout", - "subitem": "height" - }, - "path": [ - "chart", - "global", - "layout", - "height" - ] + "value": 300, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 300 + }, + "name": "pf-t--chart--global--layout--height", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "height" + }, + "path": [ + "chart", + "global", + "layout", + "height" + ] + } }, "pf-t--chart--global--layout--width": { - "type": "number", - "value": 450, - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "number", - "value": 450 - }, - "name": "pf-t--chart--global--layout--width", - "attributes": { - "category": "chart", - "type": "global", - "item": "layout", - "subitem": "width" - }, - "path": [ - "chart", - "global", - "layout", - "width" - ] + "value": 450, + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "number", + "value": 450 + }, + "name": "pf-t--chart--global--layout--width", + "attributes": { + "category": "chart", + "type": "global", + "item": "layout", + "subitem": "width" + }, + "path": [ + "chart", + "global", + "layout", + "width" + ] + } }, "pf-t--chart--global--stroke-line-join": { - "type": "string", - "value": "round", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "string", - "value": "round" - }, - "name": "pf-t--chart--global--stroke-line-join", - "attributes": { - "category": "chart", - "type": "global", - "item": "stroke-line-join" - }, - "path": [ - "chart", - "global", - "stroke-line-join" - ] + "value": "round", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "string", + "value": "round" + }, + "name": "pf-t--chart--global--stroke-line-join", + "attributes": { + "category": "chart", + "type": "global", + "item": "stroke-line-join" + }, + "path": [ + "chart", + "global", + "stroke-line-join" + ] + } }, "pf-t--chart--theme--colorscales--blue--colorscale--100": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.blue.300}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "100" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--300", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "blue", - "300" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--blue--colorscale--200": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.blue.100}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "200" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--blue--colorscale--300": { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.blue.500}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.70}" - }, - "name": "pf-t--chart--color--blue--500", - "attributes": { - "category": "chart", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "blue", - "500" - ], - "references": [ - { + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#003366", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.70}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { "type": "color", - "value": "#003366" - }, - "name": "pf-t--color--blue--70", - "attributes": { - "category": "color", - "type": "blue", - "item": "70" - }, - "path": [ - "color", - "blue", - "70" - ] - } - ] - } - ] + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--blue--colorscale--400": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.blue.200}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "400" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--blue--colorscale--500": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.blue.400}" - }, - "name": "pf-t--chart--theme--colorscales--blue--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "blue", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "blue", - "colorscale", - "500" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d99", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--chart--color--blue--400", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--blue--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "blue", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "blue", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "blue", - "400" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.60}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--teal--colorscale--100": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.teal.300}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--300", - "attributes": { - "category": "chart", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "teal", - "300" - ], - "references": [ - { + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] - } - ] + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--teal--colorscale--200": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.teal.100}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "200" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--teal--colorscale--300": { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.teal.500}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "300" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.70}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--teal--colorscale--400": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.teal.200}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "400" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { - "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { + "type": "color", + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--teal--colorscale--500": { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.teal.400}" - }, - "name": "pf-t--chart--theme--colorscales--teal--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "teal", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "teal", - "colorscale", - "500" - ], - "references": [ - { + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#147878", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--chart--color--teal--400", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--teal--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "teal", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "teal", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "teal", - "400" - ], - "references": [ - { + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.60}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - } - ] + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--yellow--colorscale--100": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.yellow.300}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "100" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--color--yellow--300", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "yellow", - "300" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--yellow--colorscale--200": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.yellow.100}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "200" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--yellow--colorscale--300": { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.yellow.500}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.60}" - }, - "name": "pf-t--chart--color--yellow--500", - "attributes": { - "category": "chart", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "yellow", - "500" - ], - "references": [ - { + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#96640f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.60}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { "type": "color", - "value": "#96640f" - }, - "name": "pf-t--color--yellow--60", - "attributes": { - "category": "color", - "type": "yellow", - "item": "60" - }, - "path": [ - "color", - "yellow", - "60" - ] - } - ] - } - ] + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--yellow--colorscale--400": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.yellow.200}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "400" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--color--yellow--200", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "yellow", - "200" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--yellow--colorscale--500": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.yellow.400}" - }, - "name": "pf-t--chart--theme--colorscales--yellow--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "yellow", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "yellow", - "colorscale", - "500" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--400", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--yellow--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "yellow", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "yellow", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "yellow", - "400" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--gray--colorscale--100": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.black.300}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "100" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--chart--color--black--300", - "attributes": { - "category": "chart", + "value": "{chart.color.black.300}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "black", - "300" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--gray--colorscale--200": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.black.100}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "200" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--chart--color--black--100", - "attributes": { - "category": "chart", + "value": "{chart.color.black.100}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "black", - "100" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--gray--colorscale--300": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.black.500}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "300" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--chart--color--black--500", - "attributes": { - "category": "chart", - "type": "color", - "item": "black", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "black", - "500" - ], - "references": [ - { + "value": "{chart.color.black.500}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "300" + ], + "references": [ + { + "type": "color", + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--gray--colorscale--400": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.black.200}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "400" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--chart--color--black--200", - "attributes": { - "category": "chart", + "value": "{chart.color.black.200}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "black", - "200" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--gray--colorscale--500": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.black.400}" - }, - "name": "pf-t--chart--theme--colorscales--gray--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "gray", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "gray", - "colorscale", - "500" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--chart--color--black--400", - "attributes": { - "category": "chart", + "value": "{chart.color.black.400}" + }, + "name": "pf-t--chart--theme--colorscales--gray--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "gray", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "gray", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "black", - "400" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--green--colorscale--100": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.green.300}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "100" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.50}" - }, - "name": "pf-t--chart--color--green--300", - "attributes": { - "category": "chart", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "green", - "300" - ], - "references": [ - { + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#63993d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } - ] - } - ] + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--green--colorscale--200": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.green.100}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "200" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--chart--color--green--100", - "attributes": { - "category": "chart", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "green", - "100" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--green--colorscale--300": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.green.500}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "300" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.70}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--green--colorscale--400": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.green.200}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "400" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--chart--color--green--200", - "attributes": { - "category": "chart", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "green", - "200" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--green--colorscale--500": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.green.400}" - }, - "name": "pf-t--chart--theme--colorscales--green--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "green", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "green", - "colorscale", - "500" - ], - "references": [ - { + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--green--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "green", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "green", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.60}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - } - ] + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--purple--colorscale--100": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.purple.300}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "100" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--chart--color--purple--300", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.300}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "purple", - "300" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--purple--colorscale--200": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.purple.100}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "200" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--chart--color--purple--100", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.100}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "purple", - "100" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--purple--colorscale--300": { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.purple.500}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.70}" - }, - "name": "pf-t--chart--color--purple--500", - "attributes": { - "category": "chart", + "value": "#21134d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.500}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "purple", - "500" - ], - "references": [ - { + "value": "#21134d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#21134d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.70}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { "type": "color", - "value": "#21134d" - }, - "name": "pf-t--color--purple--70", - "attributes": { - "category": "color", - "type": "purple", - "item": "70" - }, - "path": [ - "color", - "purple", - "70" - ] - } - ] - } - ] + "value": "#21134d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#21134d" + }, + "name": "pf-t--color--purple--70", + "attributes": { + "category": "color", + "type": "purple", + "item": "70" + }, + "path": [ + "color", + "purple", + "70" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--purple--colorscale--400": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.purple.200}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "400" - ], - "references": [ - { + "value": "#876fd4", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--chart--color--purple--200", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.200}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "purple", - "200" - ], - "references": [ - { + "value": "#876fd4", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] - } - ] + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--purple--colorscale--500": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.purple.400}" - }, - "name": "pf-t--chart--theme--colorscales--purple--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "purple", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "purple", - "colorscale", - "500" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--chart--color--purple--400", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.400}" + }, + "name": "pf-t--chart--theme--colorscales--purple--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "purple", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "purple", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "purple", - "400" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--orange--colorscale--100": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.orange.300}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "100" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--300", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "orange", - "300" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - } - ] + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--orange--colorscale--200": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.orange.100}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "200" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--orange--colorscale--300": { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.orange.500}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.70}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#732e00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.70}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { "type": "color", - "value": "#732e00" - }, - "name": "pf-t--color--orange--70", - "attributes": { - "category": "color", - "type": "orange", - "item": "70" - }, - "path": [ - "color", - "orange", - "70" - ] - } - ] - } - ] + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--orange--colorscale--400": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.orange.200}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "400" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--color--orange--200", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "orange", - "200" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--orange--colorscale--500": { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.orange.400}" - }, - "name": "pf-t--chart--theme--colorscales--orange--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "orange", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "orange", - "colorscale", - "500" - ], - "references": [ - { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.60}" - }, - "name": "pf-t--chart--color--orange--400", - "attributes": { - "category": "chart", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--orange--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "orange", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "orange", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "orange", - "400" - ], - "references": [ - { + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.60}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { "type": "color", - "value": "#9e4a06" - }, - "name": "pf-t--color--orange--60", - "attributes": { - "category": "color", - "type": "orange", - "item": "60" - }, - "path": [ - "color", - "orange", - "60" - ] - } - ] - } - ] + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.blue.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "100" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--300", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "blue", - "300" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.green.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "200" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.50}" - }, - "name": "pf-t--chart--color--green--300", - "attributes": { - "category": "chart", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "green", - "300" - ], - "references": [ - { + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#63993d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } - ] - } - ] + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.teal.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--300", - "attributes": { - "category": "chart", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "teal", - "300" - ], - "references": [ - { + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] - } - ] + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.yellow.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "400" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--color--yellow--300", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "yellow", - "300" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.orange.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "500" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--300", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "orange", - "300" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - } - ] + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.blue.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "600" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "600" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.green.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "700" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "700" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.70}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.teal.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "800" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "800" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900": { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.yellow.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "900" - ], - "references": [ - { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.60}" - }, - "name": "pf-t--chart--color--yellow--500", - "attributes": { - "category": "chart", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "900" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "yellow", - "500" - ], - "references": [ - { + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#96640f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.60}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { "type": "color", - "value": "#96640f" - }, - "name": "pf-t--color--yellow--60", - "attributes": { - "category": "color", - "type": "yellow", - "item": "60" - }, - "path": [ - "color", - "yellow", - "60" - ] - } - ] - } - ] + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.orange.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1000" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1000" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100": { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.blue.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1100" - ], - "references": [ - { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.70}" - }, - "name": "pf-t--chart--color--blue--500", - "attributes": { - "category": "chart", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1100" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "blue", - "500" - ], - "references": [ - { + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#003366", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.70}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { "type": "color", - "value": "#003366" - }, - "name": "pf-t--color--blue--70", - "attributes": { - "category": "color", - "type": "blue", - "item": "70" - }, - "path": [ - "color", - "blue", - "70" - ] - } - ] - } - ] + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.green.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1200" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--chart--color--green--100", - "attributes": { - "category": "chart", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1200" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "green", - "100" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300": { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.teal.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1300" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1300" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.70}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.yellow.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1400" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1400" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500": { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.orange.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1500" - ], - "references": [ - { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.70}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1500" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#732e00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.70}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { "type": "color", - "value": "#732e00" - }, - "name": "pf-t--color--orange--70", - "attributes": { - "category": "color", - "type": "orange", - "item": "70" - }, - "path": [ - "color", - "orange", - "70" - ] - } - ] - } - ] + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.blue.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1600" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1600" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.green.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1700" - ], - "references": [ - { + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1700" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.60}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - } - ] + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.teal.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1800" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1800" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.yellow.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "1900" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--400", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "1900" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "yellow", - "400" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.orange.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2000" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--color--orange--200", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2000" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "orange", - "200" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.blue.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2100" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d99", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--chart--color--blue--400", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2100" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "blue", - "400" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.60}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.green.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2200" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--chart--color--green--200", - "attributes": { - "category": "chart", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2200" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "green", - "200" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300": { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.teal.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2300" - ], - "references": [ - { + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#147878", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--chart--color--teal--400", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2300" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "teal", - "400" - ], - "references": [ - { + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.60}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - } - ] + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.yellow.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2400" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--color--yellow--200", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2400" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "yellow", - "200" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500": { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.orange.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-ordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-ordered", - "colorscale", - "2500" - ], - "references": [ - { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.60}" - }, - "name": "pf-t--chart--color--orange--400", - "attributes": { - "category": "chart", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-ordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-ordered", + "colorscale", + "2500" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "orange", - "400" - ], - "references": [ - { + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.60}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { "type": "color", - "value": "#9e4a06" - }, - "name": "pf-t--color--orange--60", - "attributes": { - "category": "color", - "type": "orange", - "item": "60" - }, - "path": [ - "color", - "orange", - "60" - ] - } - ] - } - ] + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100": { - "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.blue.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "100" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.50}" - }, - "name": "pf-t--chart--color--blue--300", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "100" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "blue", - "300" - ], - "references": [ - { + "value": "#0066cc", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#0066cc", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.50}" + }, + "name": "pf-t--chart--color--blue--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "blue", + "300" + ], + "references": [ + { "type": "color", - "value": "#0066cc" - }, - "name": "pf-t--color--blue--50", - "attributes": { - "category": "color", - "type": "blue", - "item": "50" - }, - "path": [ - "color", - "blue", - "50" - ] - } - ] - } - ] + "value": "#0066cc", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#0066cc" + }, + "name": "pf-t--color--blue--50", + "attributes": { + "category": "color", + "type": "blue", + "item": "50" + }, + "path": [ + "color", + "blue", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200": { - "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.yellow.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "200" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.40}" - }, - "name": "pf-t--chart--color--yellow--300", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "200" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "yellow", - "300" - ], - "references": [ - { + "value": "#dca614", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#dca614", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.40}" + }, + "name": "pf-t--chart--color--yellow--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "yellow", + "300" + ], + "references": [ + { "type": "color", - "value": "#dca614" - }, - "name": "pf-t--color--yellow--40", - "attributes": { - "category": "color", - "type": "yellow", - "item": "40" - }, - "path": [ - "color", - "yellow", - "40" - ] - } - ] - } - ] + "value": "#dca614", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#dca614" + }, + "name": "pf-t--color--yellow--40", + "attributes": { + "category": "color", + "type": "yellow", + "item": "40" + }, + "path": [ + "color", + "yellow", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300": { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.green.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "300" - ], - "references": [ - { - "type": "color", - "value": "#63993d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.50}" - }, - "name": "pf-t--chart--color--green--300", - "attributes": { - "category": "chart", + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "300" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "green", - "300" - ], - "references": [ - { + "value": "#63993d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#63993d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.50}" + }, + "name": "pf-t--chart--color--green--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "green", + "300" + ], + "references": [ + { "type": "color", - "value": "#63993d" - }, - "name": "pf-t--color--green--50", - "attributes": { - "category": "color", - "type": "green", - "item": "50" - }, - "path": [ - "color", - "green", - "50" - ] - } - ] - } - ] + "value": "#63993d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63993d" + }, + "name": "pf-t--color--green--50", + "attributes": { + "category": "color", + "type": "green", + "item": "50" + }, + "path": [ + "color", + "green", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400": { - "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.purple.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "400" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.50}" - }, - "name": "pf-t--chart--color--purple--300", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "400" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "purple", - "300" - ], - "references": [ - { + "value": "#5e40be", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#5e40be", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.50}" + }, + "name": "pf-t--chart--color--purple--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "purple", + "300" + ], + "references": [ + { "type": "color", - "value": "#5e40be" - }, - "name": "pf-t--color--purple--50", - "attributes": { - "category": "color", - "type": "purple", - "item": "50" - }, - "path": [ - "color", - "purple", - "50" - ] - } - ] - } - ] + "value": "#5e40be", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#5e40be" + }, + "name": "pf-t--color--purple--50", + "attributes": { + "category": "color", + "type": "purple", + "item": "50" + }, + "path": [ + "color", + "purple", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500": { - "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.orange.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "500" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.50}" - }, - "name": "pf-t--chart--color--orange--300", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "500" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "orange", - "300" - ], - "references": [ - { + "value": "#ca6c0f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ca6c0f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.50}" + }, + "name": "pf-t--chart--color--orange--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "orange", + "300" + ], + "references": [ + { "type": "color", - "value": "#ca6c0f" - }, - "name": "pf-t--color--orange--50", - "attributes": { - "category": "color", - "type": "orange", - "item": "50" - }, - "path": [ - "color", - "orange", - "50" - ] - } - ] - } - ] + "value": "#ca6c0f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ca6c0f" + }, + "name": "pf-t--color--orange--50", + "attributes": { + "category": "color", + "type": "orange", + "item": "50" + }, + "path": [ + "color", + "orange", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600": { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.teal.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "600" - ], - "references": [ - { - "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.50}" - }, - "name": "pf-t--chart--color--teal--300", - "attributes": { - "category": "chart", + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.teal.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "600" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "teal", - "300" - ], - "references": [ - { + "value": "#37a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#37a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.50}" + }, + "name": "pf-t--chart--color--teal--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "teal", + "300" + ], + "references": [ + { "type": "color", - "value": "#37a3a3" - }, - "name": "pf-t--color--teal--50", - "attributes": { - "category": "color", - "type": "teal", - "item": "50" - }, - "path": [ - "color", - "teal", - "50" - ] - } - ] - } - ] + "value": "#37a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#37a3a3" + }, + "name": "pf-t--color--teal--50", + "attributes": { + "category": "color", + "type": "teal", + "item": "50" + }, + "path": [ + "color", + "teal", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700": { - "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.black.300}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "700" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.30}" - }, - "name": "pf-t--chart--color--black--300", - "attributes": { - "category": "chart", + "value": "{chart.color.black.300}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "700" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "300" - }, - "path": [ - "chart", - "color", - "black", - "300" - ], - "references": [ - { + "value": "#c7c7c7", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#c7c7c7", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.30}" + }, + "name": "pf-t--chart--color--black--300", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "300" + }, + "path": [ + "chart", + "color", + "black", + "300" + ], + "references": [ + { "type": "color", - "value": "#c7c7c7" - }, - "name": "pf-t--color--gray--30", - "attributes": { - "category": "color", - "type": "gray", - "item": "30" - }, - "path": [ - "color", - "gray", - "30" - ] - } - ] - } - ] + "value": "#c7c7c7", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#c7c7c7" + }, + "name": "pf-t--color--gray--30", + "attributes": { + "category": "color", + "type": "gray", + "item": "30" + }, + "path": [ + "color", + "gray", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800": { - "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.blue.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "800" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.30}" - }, - "name": "pf-t--chart--color--blue--100", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "800" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "blue", - "100" - ], - "references": [ - { + "value": "#92c5f9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#92c5f9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.30}" + }, + "name": "pf-t--chart--color--blue--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "blue", + "100" + ], + "references": [ + { "type": "color", - "value": "#92c5f9" - }, - "name": "pf-t--color--blue--30", - "attributes": { - "category": "color", - "type": "blue", - "item": "30" - }, - "path": [ - "color", - "blue", - "30" - ] - } - ] - } - ] + "value": "#92c5f9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#92c5f9" + }, + "name": "pf-t--color--blue--30", + "attributes": { + "category": "color", + "type": "blue", + "item": "30" + }, + "path": [ + "color", + "blue", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900": { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.yellow.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "900" - ], - "references": [ - { - "type": "color", - "value": "#96640f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.60}" - }, - "name": "pf-t--chart--color--yellow--500", - "attributes": { - "category": "chart", + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.yellow.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "900" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "yellow", - "500" - ], - "references": [ - { + "value": "#96640f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#96640f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.60}" + }, + "name": "pf-t--chart--color--yellow--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "yellow", + "500" + ], + "references": [ + { "type": "color", - "value": "#96640f" - }, - "name": "pf-t--color--yellow--60", - "attributes": { - "category": "color", - "type": "yellow", - "item": "60" - }, - "path": [ - "color", - "yellow", - "60" - ] - } - ] - } - ] + "value": "#96640f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#96640f" + }, + "name": "pf-t--color--yellow--60", + "attributes": { + "category": "color", + "type": "yellow", + "item": "60" + }, + "path": [ + "color", + "yellow", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000": { - "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.green.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1000" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.30}" - }, - "name": "pf-t--chart--color--green--100", - "attributes": { - "category": "chart", + "value": "{chart.color.green.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1000" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "green", - "100" - ], - "references": [ - { + "value": "#afdc8f", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#afdc8f", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.30}" + }, + "name": "pf-t--chart--color--green--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "green", + "100" + ], + "references": [ + { "type": "color", - "value": "#afdc8f" - }, - "name": "pf-t--color--green--30", - "attributes": { - "category": "color", - "type": "green", - "item": "30" - }, - "path": [ - "color", - "green", - "30" - ] - } - ] - } - ] + "value": "#afdc8f", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#afdc8f" + }, + "name": "pf-t--color--green--30", + "attributes": { + "category": "color", + "type": "green", + "item": "30" + }, + "path": [ + "color", + "green", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100": { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.purple.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1100" - ], - "references": [ - { - "type": "color", - "value": "#21134d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.70}" - }, - "name": "pf-t--chart--color--purple--500", - "attributes": { - "category": "chart", + "value": "#21134d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1100" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "purple", - "500" - ], - "references": [ - { + "value": "#21134d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#21134d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.70}" + }, + "name": "pf-t--chart--color--purple--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "purple", + "500" + ], + "references": [ + { "type": "color", - "value": "#21134d" - }, - "name": "pf-t--color--purple--70", - "attributes": { - "category": "color", - "type": "purple", - "item": "70" - }, - "path": [ - "color", - "purple", - "70" - ] - } - ] - } - ] + "value": "#21134d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#21134d" + }, + "name": "pf-t--color--purple--70", + "attributes": { + "category": "color", + "type": "purple", + "item": "70" + }, + "path": [ + "color", + "purple", + "70" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200": { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.orange.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1200" - ], - "references": [ - { - "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.30}" - }, - "name": "pf-t--chart--color--orange--100", - "attributes": { - "category": "chart", + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1200" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "orange", - "100" - ], - "references": [ - { + "value": "#f8ae54", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f8ae54", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.30}" + }, + "name": "pf-t--chart--color--orange--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "orange", + "100" + ], + "references": [ + { "type": "color", - "value": "#f8ae54" - }, - "name": "pf-t--color--orange--30", - "attributes": { - "category": "color", - "type": "orange", - "item": "30" - }, - "path": [ - "color", - "orange", - "30" - ] - } - ] - } - ] + "value": "#f8ae54", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f8ae54" + }, + "name": "pf-t--color--orange--30", + "attributes": { + "category": "color", + "type": "orange", + "item": "30" + }, + "path": [ + "color", + "orange", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300": { - "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.teal.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1300" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.70}" - }, - "name": "pf-t--chart--color--teal--500", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1300" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "teal", - "500" - ], - "references": [ - { + "value": "#004d4d", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d4d", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.70}" + }, + "name": "pf-t--chart--color--teal--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "teal", + "500" + ], + "references": [ + { "type": "color", - "value": "#004d4d" - }, - "name": "pf-t--color--teal--70", - "attributes": { - "category": "color", - "type": "teal", - "item": "70" - }, - "path": [ - "color", - "teal", - "70" - ] - } - ] - } - ] + "value": "#004d4d", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d4d" + }, + "name": "pf-t--color--teal--70", + "attributes": { + "category": "color", + "type": "teal", + "item": "70" + }, + "path": [ + "color", + "teal", + "70" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400": { - "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.black.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1400" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.10}" - }, - "name": "pf-t--chart--color--black--100", - "attributes": { - "category": "chart", + "value": "{chart.color.black.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1400" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "black", - "100" - ], - "references": [ - { + "value": "#f2f2f2", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f2f2f2", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.10}" + }, + "name": "pf-t--chart--color--black--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "black", + "100" + ], + "references": [ + { "type": "color", - "value": "#f2f2f2" - }, - "name": "pf-t--color--gray--10", - "attributes": { - "category": "color", - "type": "gray", - "item": "10" - }, - "path": [ - "color", - "gray", - "10" - ] - } - ] - } - ] + "value": "#f2f2f2", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f2f2f2" + }, + "name": "pf-t--color--gray--10", + "attributes": { + "category": "color", + "type": "gray", + "item": "10" + }, + "path": [ + "color", + "gray", + "10" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500": { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.blue.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1500" - ], - "references": [ - { - "type": "color", - "value": "#003366", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.70}" - }, - "name": "pf-t--chart--color--blue--500", - "attributes": { - "category": "chart", + "default": { + "type": "color", + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.blue.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1500" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "blue", - "500" - ], - "references": [ - { + "value": "#003366", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#003366", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.70}" + }, + "name": "pf-t--chart--color--blue--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "blue", + "500" + ], + "references": [ + { "type": "color", - "value": "#003366" - }, - "name": "pf-t--color--blue--70", - "attributes": { - "category": "color", - "type": "blue", - "item": "70" - }, - "path": [ - "color", - "blue", - "70" - ] - } - ] - } - ] + "value": "#003366", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#003366" + }, + "name": "pf-t--color--blue--70", + "attributes": { + "category": "color", + "type": "blue", + "item": "70" + }, + "path": [ + "color", + "blue", + "70" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600": { - "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.yellow.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1600" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.20}" - }, - "name": "pf-t--chart--color--yellow--100", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1600" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "yellow", - "100" - ], - "references": [ - { + "value": "#ffe072", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffe072", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.20}" + }, + "name": "pf-t--chart--color--yellow--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "yellow", + "100" + ], + "references": [ + { "type": "color", - "value": "#ffe072" - }, - "name": "pf-t--color--yellow--20", - "attributes": { - "category": "color", - "type": "yellow", - "item": "20" - }, - "path": [ - "color", - "yellow", - "20" - ] - } - ] - } - ] + "value": "#ffe072", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffe072" + }, + "name": "pf-t--color--yellow--20", + "attributes": { + "category": "color", + "type": "yellow", + "item": "20" + }, + "path": [ + "color", + "yellow", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700": { - "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.green.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1700" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#204d00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.70}" - }, - "name": "pf-t--chart--color--green--500", - "attributes": { - "category": "chart", + "value": "{chart.color.green.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1700" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "green", - "500" - ], - "references": [ - { + "value": "#204d00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#204d00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.70}" + }, + "name": "pf-t--chart--color--green--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "green", + "500" + ], + "references": [ + { "type": "color", - "value": "#204d00" - }, - "name": "pf-t--color--green--70", - "attributes": { - "category": "color", - "type": "green", - "item": "70" - }, - "path": [ - "color", - "green", - "70" - ] - } - ] - } - ] + "value": "#204d00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#204d00" + }, + "name": "pf-t--color--green--70", + "attributes": { + "category": "color", + "type": "green", + "item": "70" + }, + "path": [ + "color", + "green", + "70" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800": { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.purple.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1800" - ], - "references": [ - { - "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.30}" - }, - "name": "pf-t--chart--color--purple--100", - "attributes": { - "category": "chart", + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.purple.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1800" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "purple", - "100" - ], - "references": [ - { + "value": "#b6a6e9", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#b6a6e9", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.30}" + }, + "name": "pf-t--chart--color--purple--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "purple", + "100" + ], + "references": [ + { "type": "color", - "value": "#b6a6e9" - }, - "name": "pf-t--color--purple--30", - "attributes": { - "category": "color", - "type": "purple", - "item": "30" - }, - "path": [ - "color", - "purple", - "30" - ] - } - ] - } - ] + "value": "#b6a6e9", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b6a6e9" + }, + "name": "pf-t--color--purple--30", + "attributes": { + "category": "color", + "type": "purple", + "item": "30" + }, + "path": [ + "color", + "purple", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900": { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.orange.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "1900" - ], - "references": [ - { - "type": "color", - "value": "#732e00", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.70}" - }, - "name": "pf-t--chart--color--orange--500", - "attributes": { - "category": "chart", + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "1900" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "orange", - "500" - ], - "references": [ - { + "value": "#732e00", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#732e00", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.70}" + }, + "name": "pf-t--chart--color--orange--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "orange", + "500" + ], + "references": [ + { "type": "color", - "value": "#732e00" - }, - "name": "pf-t--color--orange--70", - "attributes": { - "category": "color", - "type": "orange", - "item": "70" - }, - "path": [ - "color", - "orange", - "70" - ] - } - ] - } - ] + "value": "#732e00", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#732e00" + }, + "name": "pf-t--color--orange--70", + "attributes": { + "category": "color", + "type": "orange", + "item": "70" + }, + "path": [ + "color", + "orange", + "70" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000": { - "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.teal.100}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2000" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.30}" - }, - "name": "pf-t--chart--color--teal--100", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.100}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2000" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "100" - }, - "path": [ - "chart", - "color", - "teal", - "100" - ], - "references": [ - { + "value": "#9ad8d8", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#9ad8d8", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.30}" + }, + "name": "pf-t--chart--color--teal--100", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "100" + }, + "path": [ + "chart", + "color", + "teal", + "100" + ], + "references": [ + { "type": "color", - "value": "#9ad8d8" - }, - "name": "pf-t--color--teal--30", - "attributes": { - "category": "color", - "type": "teal", - "item": "30" - }, - "path": [ - "color", - "teal", - "30" - ] - } - ] - } - ] + "value": "#9ad8d8", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9ad8d8" + }, + "name": "pf-t--color--teal--30", + "attributes": { + "category": "color", + "type": "teal", + "item": "30" + }, + "path": [ + "color", + "teal", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100": { - "type": "color", - "value": "#707070", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.black.500}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2100" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.50}" - }, - "name": "pf-t--chart--color--black--500", - "attributes": { - "category": "chart", + "value": "{chart.color.black.500}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2100" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "500" - }, - "path": [ - "chart", - "color", - "black", - "500" - ], - "references": [ - { + "value": "#707070", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#707070", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.50}" + }, + "name": "pf-t--chart--color--black--500", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "500" + }, + "path": [ + "chart", + "color", + "black", + "500" + ], + "references": [ + { "type": "color", - "value": "#707070" - }, - "name": "pf-t--color--gray--50", - "attributes": { - "category": "color", - "type": "gray", - "item": "50" - }, - "path": [ - "color", - "gray", - "50" - ] - } - ] - } - ] + "value": "#707070", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#707070" + }, + "name": "pf-t--color--gray--50", + "attributes": { + "category": "color", + "type": "gray", + "item": "50" + }, + "path": [ + "color", + "gray", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200": { - "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.blue.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2200" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.40}" - }, - "name": "pf-t--chart--color--blue--200", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2200" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "blue", - "200" - ], - "references": [ - { + "value": "#4394e5", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#4394e5", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.40}" + }, + "name": "pf-t--chart--color--blue--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "blue", + "200" + ], + "references": [ + { "type": "color", - "value": "#4394e5" - }, - "name": "pf-t--color--blue--40", - "attributes": { - "category": "color", - "type": "blue", - "item": "40" - }, - "path": [ - "color", - "blue", - "40" - ] - } - ] - } - ] + "value": "#4394e5", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#4394e5" + }, + "name": "pf-t--color--blue--40", + "attributes": { + "category": "color", + "type": "blue", + "item": "40" + }, + "path": [ + "color", + "blue", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300": { - "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.yellow.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2300" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.50}" - }, - "name": "pf-t--chart--color--yellow--400", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2300" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "yellow", - "400" - ], - "references": [ - { + "value": "#b98412", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#b98412", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.50}" + }, + "name": "pf-t--chart--color--yellow--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "yellow", + "400" + ], + "references": [ + { "type": "color", - "value": "#b98412" - }, - "name": "pf-t--color--yellow--50", - "attributes": { - "category": "color", - "type": "yellow", - "item": "50" - }, - "path": [ - "color", - "yellow", - "50" - ] - } - ] - } - ] + "value": "#b98412", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#b98412" + }, + "name": "pf-t--color--yellow--50", + "attributes": { + "category": "color", + "type": "yellow", + "item": "50" + }, + "path": [ + "color", + "yellow", + "50" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400": { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{chart.color.green.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2400" - ], - "references": [ - { - "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.40}" - }, - "name": "pf-t--chart--color--green--200", - "attributes": { - "category": "chart", + "default": { + "type": "color", + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.green.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2400" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "green", - "200" - ], - "references": [ - { + "value": "#87bb62", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#87bb62", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.40}" + }, + "name": "pf-t--chart--color--green--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "green", + "200" + ], + "references": [ + { "type": "color", - "value": "#87bb62" - }, - "name": "pf-t--color--green--40", - "attributes": { - "category": "color", - "type": "green", - "item": "40" - }, - "path": [ - "color", - "green", - "40" - ] - } - ] - } - ] + "value": "#87bb62", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#87bb62" + }, + "name": "pf-t--color--green--40", + "attributes": { + "category": "color", + "type": "green", + "item": "40" + }, + "path": [ + "color", + "green", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500": { - "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.purple.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2500" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.60}" - }, - "name": "pf-t--chart--color--purple--400", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2500" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "purple", - "400" - ], - "references": [ - { + "value": "#3d2785", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d2785", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.60}" + }, + "name": "pf-t--chart--color--purple--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "purple", + "400" + ], + "references": [ + { "type": "color", - "value": "#3d2785" - }, - "name": "pf-t--color--purple--60", - "attributes": { - "category": "color", - "type": "purple", - "item": "60" - }, - "path": [ - "color", - "purple", - "60" - ] - } - ] - } - ] + "value": "#3d2785", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d2785" + }, + "name": "pf-t--color--purple--60", + "attributes": { + "category": "color", + "type": "purple", + "item": "60" + }, + "path": [ + "color", + "purple", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600": { - "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.orange.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2600" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.40}" - }, - "name": "pf-t--chart--color--orange--200", - "attributes": { - "category": "chart", + "value": "{chart.color.orange.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2600" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "orange", - "200" - ], - "references": [ - { + "value": "#f5921b", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#f5921b", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.40}" + }, + "name": "pf-t--chart--color--orange--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "orange", + "200" + ], + "references": [ + { "type": "color", - "value": "#f5921b" - }, - "name": "pf-t--color--orange--40", - "attributes": { - "category": "color", - "type": "orange", - "item": "40" - }, - "path": [ - "color", - "orange", - "40" - ] - } - ] - } - ] + "value": "#f5921b", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#f5921b" + }, + "name": "pf-t--color--orange--40", + "attributes": { + "category": "color", + "type": "orange", + "item": "40" + }, + "path": [ + "color", + "orange", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700": { - "type": "color", - "value": "#147878", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.teal.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2700" - ], - "references": [ - { + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#147878", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.60}" - }, - "name": "pf-t--chart--color--teal--400", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2700" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "teal", - "400" - ], - "references": [ - { + "value": "#147878", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#147878", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.60}" + }, + "name": "pf-t--chart--color--teal--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "teal", + "400" + ], + "references": [ + { "type": "color", - "value": "#147878" - }, - "name": "pf-t--color--teal--60", - "attributes": { - "category": "color", - "type": "teal", - "item": "60" - }, - "path": [ - "color", - "teal", - "60" - ] - } - ] - } - ] + "value": "#147878", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#147878" + }, + "name": "pf-t--color--teal--60", + "attributes": { + "category": "color", + "type": "teal", + "item": "60" + }, + "path": [ + "color", + "teal", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800": { - "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.black.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2800" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.20}" - }, - "name": "pf-t--chart--color--black--200", - "attributes": { - "category": "chart", + "value": "{chart.color.black.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2800" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "black", - "200" - ], - "references": [ - { + "value": "#e0e0e0", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#e0e0e0", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.20}" + }, + "name": "pf-t--chart--color--black--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "black", + "200" + ], + "references": [ + { "type": "color", - "value": "#e0e0e0" - }, - "name": "pf-t--color--gray--20", - "attributes": { - "category": "color", - "type": "gray", - "item": "20" - }, - "path": [ - "color", - "gray", - "20" - ] - } - ] - } - ] + "value": "#e0e0e0", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#e0e0e0" + }, + "name": "pf-t--color--gray--20", + "attributes": { + "category": "color", + "type": "gray", + "item": "20" + }, + "path": [ + "color", + "gray", + "20" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900": { - "type": "color", - "value": "#004d99", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.blue.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "2900" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d99", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.blue.60}" - }, - "name": "pf-t--chart--color--blue--400", - "attributes": { - "category": "chart", + "value": "{chart.color.blue.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "2900" + ], + "references": [ + { "type": "color", - "item": "blue", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "blue", - "400" - ], - "references": [ - { + "value": "#004d99", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#004d99", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.blue.60}" + }, + "name": "pf-t--chart--color--blue--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "blue", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "blue", + "400" + ], + "references": [ + { "type": "color", - "value": "#004d99" - }, - "name": "pf-t--color--blue--60", - "attributes": { - "category": "color", - "type": "blue", - "item": "60" - }, - "path": [ - "color", - "blue", - "60" - ] - } - ] - } - ] + "value": "#004d99", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#004d99" + }, + "name": "pf-t--color--blue--60", + "attributes": { + "category": "color", + "type": "blue", + "item": "60" + }, + "path": [ + "color", + "blue", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000": { - "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.yellow.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3000" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.yellow.30}" - }, - "name": "pf-t--chart--color--yellow--200", - "attributes": { - "category": "chart", + "value": "{chart.color.yellow.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3000" + ], + "references": [ + { "type": "color", - "item": "yellow", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "yellow", - "200" - ], - "references": [ - { + "value": "#ffcc17", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#ffcc17", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.yellow.30}" + }, + "name": "pf-t--chart--color--yellow--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "yellow", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "yellow", + "200" + ], + "references": [ + { "type": "color", - "value": "#ffcc17" - }, - "name": "pf-t--color--yellow--30", - "attributes": { - "category": "color", - "type": "yellow", - "item": "30" - }, - "path": [ - "color", - "yellow", - "30" - ] - } - ] - } - ] + "value": "#ffcc17", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#ffcc17" + }, + "name": "pf-t--color--yellow--30", + "attributes": { + "category": "color", + "type": "yellow", + "item": "30" + }, + "path": [ + "color", + "yellow", + "30" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100": { - "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.green.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3100" - ], - "references": [ - { + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.green.60}" - }, - "name": "pf-t--chart--color--green--400", - "attributes": { - "category": "chart", + "value": "{chart.color.green.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3100" + ], + "references": [ + { "type": "color", - "item": "green", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "green", - "400" - ], - "references": [ - { + "value": "#3d7317", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#3d7317", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.green.60}" + }, + "name": "pf-t--chart--color--green--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "green", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "green", + "400" + ], + "references": [ + { "type": "color", - "value": "#3d7317" - }, - "name": "pf-t--color--green--60", - "attributes": { - "category": "color", - "type": "green", - "item": "60" - }, - "path": [ - "color", - "green", - "60" - ] - } - ] - } - ] + "value": "#3d7317", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#3d7317" + }, + "name": "pf-t--color--green--60", + "attributes": { + "category": "color", + "type": "green", + "item": "60" + }, + "path": [ + "color", + "green", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200": { - "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.purple.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3200" - ], - "references": [ - { + "value": "#876fd4", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.purple.40}" - }, - "name": "pf-t--chart--color--purple--200", - "attributes": { - "category": "chart", + "value": "{chart.color.purple.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3200" + ], + "references": [ + { "type": "color", - "item": "purple", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "purple", - "200" - ], - "references": [ - { + "value": "#876fd4", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#876fd4", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.purple.40}" + }, + "name": "pf-t--chart--color--purple--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "purple", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "purple", + "200" + ], + "references": [ + { "type": "color", - "value": "#876fd4" - }, - "name": "pf-t--color--purple--40", - "attributes": { - "category": "color", - "type": "purple", - "item": "40" - }, - "path": [ - "color", - "purple", - "40" - ] - } - ] - } - ] + "value": "#876fd4", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#876fd4" + }, + "name": "pf-t--color--purple--40", + "attributes": { + "category": "color", + "type": "purple", + "item": "40" + }, + "path": [ + "color", + "purple", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300": { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.orange.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3300" - ], - "references": [ - { - "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.orange.60}" - }, - "name": "pf-t--chart--color--orange--400", - "attributes": { - "category": "chart", + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { + "type": "color", + "value": "{chart.color.orange.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3300" + ], + "references": [ + { "type": "color", - "item": "orange", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "orange", - "400" - ], - "references": [ - { + "value": "#9e4a06", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#9e4a06", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.orange.60}" + }, + "name": "pf-t--chart--color--orange--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "orange", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "orange", + "400" + ], + "references": [ + { "type": "color", - "value": "#9e4a06" - }, - "name": "pf-t--color--orange--60", - "attributes": { - "category": "color", - "type": "orange", - "item": "60" - }, - "path": [ - "color", - "orange", - "60" - ] - } - ] - } - ] + "value": "#9e4a06", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#9e4a06" + }, + "name": "pf-t--color--orange--60", + "attributes": { + "category": "color", + "type": "orange", + "item": "60" + }, + "path": [ + "color", + "orange", + "60" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400": { - "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.teal.200}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3400" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.teal.40}" - }, - "name": "pf-t--chart--color--teal--200", - "attributes": { - "category": "chart", + "value": "{chart.color.teal.200}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3400" + ], + "references": [ + { "type": "color", - "item": "teal", - "subitem": "200" - }, - "path": [ - "chart", - "color", - "teal", - "200" - ], - "references": [ - { + "value": "#63bdbd", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#63bdbd", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.teal.40}" + }, + "name": "pf-t--chart--color--teal--200", + "attributes": { + "category": "chart", + "type": "color", + "item": "teal", + "subitem": "200" + }, + "path": [ + "chart", + "color", + "teal", + "200" + ], + "references": [ + { "type": "color", - "value": "#63bdbd" - }, - "name": "pf-t--color--teal--40", - "attributes": { - "category": "color", - "type": "teal", - "item": "40" - }, - "path": [ - "color", - "teal", - "40" - ] - } - ] - } - ] + "value": "#63bdbd", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#63bdbd" + }, + "name": "pf-t--color--teal--40", + "attributes": { + "category": "color", + "type": "teal", + "item": "40" + }, + "path": [ + "color", + "teal", + "40" + ] + } + ] + } + ] + } }, "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500": { - "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { + "default": { "type": "color", - "value": "{chart.color.black.400}" - }, - "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500", - "attributes": { - "category": "chart", - "type": "theme", - "item": "colorscales", - "subitem": "multi-colored-unordered", - "state": "colorscale" - }, - "path": [ - "chart", - "theme", - "colorscales", - "multi-colored-unordered", - "colorscale", - "3500" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/charts.json", - "isSource": true, - "original": { - "type": "color", - "value": "{color.gray.40}" - }, - "name": "pf-t--chart--color--black--400", - "attributes": { - "category": "chart", + "value": "{chart.color.black.400}" + }, + "name": "pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500", + "attributes": { + "category": "chart", + "type": "theme", + "item": "colorscales", + "subitem": "multi-colored-unordered", + "state": "colorscale" + }, + "path": [ + "chart", + "theme", + "colorscales", + "multi-colored-unordered", + "colorscale", + "3500" + ], + "references": [ + { "type": "color", - "item": "black", - "subitem": "400" - }, - "path": [ - "chart", - "color", - "black", - "400" - ], - "references": [ - { + "value": "#a3a3a3", + "filePath": "tokens/default/charts.json", + "isSource": true, + "original": { "type": "color", - "value": "#a3a3a3", - "filePath": "tokens/default/palette.color.json", - "isSource": true, - "original": { + "value": "{color.gray.40}" + }, + "name": "pf-t--chart--color--black--400", + "attributes": { + "category": "chart", + "type": "color", + "item": "black", + "subitem": "400" + }, + "path": [ + "chart", + "color", + "black", + "400" + ], + "references": [ + { "type": "color", - "value": "#a3a3a3" - }, - "name": "pf-t--color--gray--40", - "attributes": { - "category": "color", - "type": "gray", - "item": "40" - }, - "path": [ - "color", - "gray", - "40" - ] - } - ] - } - ] + "value": "#a3a3a3", + "filePath": "tokens/default/palette.color.json", + "isSource": true, + "original": { + "type": "color", + "value": "#a3a3a3" + }, + "name": "pf-t--color--gray--40", + "attributes": { + "category": "color", + "type": "gray", + "item": "40" + }, + "path": [ + "color", + "gray", + "40" + ] + } + ] + } + ] + } } } } \ No newline at end of file diff --git a/packages/module/patternfly-docs/content/tokensTable.js b/packages/module/patternfly-docs/content/tokensTable.js index 440ff02..70c21c1 100644 --- a/packages/module/patternfly-docs/content/tokensTable.js +++ b/packages/module/patternfly-docs/content/tokensTable.js @@ -1,20 +1,5 @@ import React, { useMemo } from 'react'; -import { - Flex, - FlexItem, - Grid, - GridItem, - MenuToggle, - SearchInput, - Select, - SelectList, - SelectOption, - Title, - Toolbar, - ToolbarItem, - ToolbarContent, - capitalize -} from '@patternfly/react-core'; +import { Flex, FlexItem, Grid, GridItem, Title, capitalize } from '@patternfly/react-core'; import { Table, Thead, @@ -26,57 +11,23 @@ import { OuterScrollContainer, InnerScrollContainer } from '@patternfly/react-table'; +import { TokensToolbar } from './tokensToolbar'; import './tokensTable.css'; // eslint-disable-next-line camelcase import global_spacer_md from '@patternfly/react-tokens/dist/esm/global_spacer_md'; import LevelUpAltIcon from '@patternfly/react-icons/dist/esm/icons/level-up-alt-icon'; -import FilterIcon from '@patternfly/react-icons/dist/esm/icons/filter-icon'; const isColorRegex = /^(#|rgb)/; // Used to combine data grouped by theme under each token name -const combineObjects = (parentObject) => { - let combined = {}; - const addToCombined = (obj, objName) => { - for (let key in obj) { - if (obj.hasOwnProperty(key)) { - if (!combined.hasOwnProperty(key)) { - combined[key] = {}; - } - combined[key][objName] = obj[key]; - } - } - }; - Object.entries(parentObject).forEach(([key, value]) => { - addToCombined(value, key); - }); - - return combined; -}; - -const combineTokens = (tokensObj, tokensByTheme) => { - Object.entries(tokensObj).map(([layerName, layerObj]) => { - // ['chart', {}] - const layerCategories = Object.keys(layerObj); // [] - if (layerCategories.length > 0) { - Object.keys(layerObj).map((layerCategory) => { - const layerCategoryByTheme = Object.entries(tokensByTheme).reduce((acc, [themeName, themeData]) => { - acc[themeName] = themeData[layerName][layerCategory]; - return acc; - }, {}); - tokensObj[layerName][layerCategory] = combineObjects(layerCategoryByTheme); - }); - } else { - const layerByTheme = Object.entries(tokensByTheme).reduce((acc, [themeName, themeData]) => { - // ['dark', {'palette': { ... }, 'chart': { ... } }] - acc[themeName] = themeData[layerName]; // {'dark': { ...chart data } } - return acc; - }, {}); - tokensObj[layerName] = combineObjects(layerByTheme); +const deepMerge = (target, source) => { + for (const key in source) { + if (source[key] instanceof Object && key in target) { + Object.assign(source[key], deepMerge(target[key], source[key])); } - }); - return tokensObj; + } + return Object.assign(target || {}, source); }; const getTokenChain = (themeTokenData) => { @@ -114,258 +65,177 @@ const showTokenChain = (themeTokenData) => { }; export const TokensTable = ({ tokenJson, formatThemeText = capitalize }) => { - const combinedTokensObj = { - semantic: { - colors: {}, - dimension: {}, - motion: {} - }, - base: { - colors: {}, - dimension: {}, - motion: {} - }, - palette: {}, - chart: {} - }; - // combine all themes/tokens into one object - const themeKeys = Object.keys(tokenJson); - const tokensByTheme = useMemo( - () => - themeKeys.reduce((allTokensObj, curTheme) => { - // transform from modules - const themeTokens = JSON.parse(JSON.stringify(tokenJson[curTheme])); - allTokensObj[curTheme] = themeTokens; - return allTokensObj; - }, {}), - [tokenJson] - ); - const allTokens = combineTokens(combinedTokensObj, tokensByTheme); + // parse tokens from json, convert from modules, merge into single allTokens obj + const themesArr = Object.keys(tokenJson); + const themesObj = themesArr.reduce((acc, cur) => { + acc[cur] = JSON.parse(JSON.stringify(tokenJson[cur])); + return acc; + }, {}); + const allTokens = deepMerge(...Object.values(themesObj)); + // remove default property which is duplicate of other fields + delete allTokens.default; + // state variables const [searchValue, setSearchValue] = React.useState(''); const [expandedTokens, setExpandedTokens] = React.useState([]); - const [isSelectOpen, setIsSelectOpen] = React.useState(false); const [selectedCategories, setSelectedCategories] = React.useState([]); + + // helper funcs + const isTokenExpanded = (tokenName) => expandedTokens.includes(tokenName); const setExpanded = (tokenName, isExpanding = true) => setExpandedTokens((prevExpanded) => { const otherExpandedTokens = prevExpanded.filter((n) => n !== tokenName); return isExpanding ? [...otherExpandedTokens, tokenName] : otherExpandedTokens; }); - - const isTokenExpanded = (tokenName) => expandedTokens.includes(tokenName); + const getIsSearchMatch = (searchValue, tokenName, tokenData) => { + // match all tokens if no search term + if (searchValue === '') { + return true; + } + // match search term to token name, value, and description + searchValue = searchValue.toLowerCase(); + return ( + tokenName.toLowerCase().includes(searchValue) || + Object.entries(tokenData).some( + ([_themeName, themeData]) => + themeData?.value?.toString().toLowerCase().includes(searchValue) || + themeData?.description?.toLowerCase().includes(searchValue) + ) + ); + }; return ( - - - - setSearchValue(value)} - onClear={() => setSearchValue('')} - /> - - - - - - + - {Object.entries(allTokens).map(([layerName, layerDataObj], _rowIndex) => { - if (layerName === 'palette') { - layerDataObj = { palette: layerDataObj }; - } - if (layerName === 'chart') { - layerDataObj = { chart: layerDataObj }; - } - const isSemanticLayer = layerName === 'semantic'; - return ( - <> - {formatThemeText(layerName)} tokens - - - - {/* Only semantic tokens have description, adjust columns accordingly */} - - - - {isSemanticLayer && } - - - {Object.entries(layerDataObj).map((layerDataProperties, _rowIndex) => { - let [categoryName, categoryDataObj] = layerDataProperties; + { + // Create new Table for each tokens layer [base, chart, palette, semantic] + Object.entries(allTokens).map(([layerName, layerDataObj], _rowIndex) => { + // save if semantic layer - used for custom styling due to description field + const isSemanticLayer = layerName === 'semantic'; + // Create array of all tokens (& nested tokens) in layer [base, chart, palette, semantic] + let layerTokens = []; + if (!['base', 'semantic'].includes(layerName)) { + layerTokens = Object.entries(layerDataObj); + } else { + // base/semantic combine subcategory tokens into flattened arr + for (var subLayer in layerDataObj) { + layerTokens.push(...Object.entries(layerDataObj[subLayer])); + } + } - return Object.entries(categoryDataObj).map(([tokenName, themesDataObj], rowIndex) => { - const searchTerm = searchValue.toLowerCase(); - if (tokenName === 'default') { - return undefined; - } else if ( - // Match search value to any token name/value in token chain or to description - searchValue !== '' && - !( - tokenName.toLowerCase().includes(searchTerm) || - Object.entries(themesDataObj).some( - ([_themeName, themeData]) => - themeData?.value?.toString().toLowerCase().includes(searchTerm) || - themeData?.description?.toLowerCase().includes(searchTerm) - ) - ) - ) { - return undefined; - } else if (selectedCategories.length !== 0 && !selectedCategories.includes(categoryName)) { - return undefined; - } else { - const themesDataArr = Object.entries(themesDataObj); + return ( + <> + {formatThemeText(layerName)} tokens +
NameValueDescription
+ + + {/* Only semantic tokens have description, adjust columns accordingly */} + + + + {isSemanticLayer && } + + - let hasReferences = false; - let description = null; - themesDataArr.map(([_themeName, themeTokenData]) => { - // if references values exists anywhere, set isNotResolved to true - if (!hasReferences && themeTokenData.references !== undefined) { - hasReferences = true; - } - // Save description first time found - shared across themes - if (!description && themeTokenData.description) { - description = themeTokenData.description; - } - }); + {/* Loop through row for each token in current layer */} + {layerTokens.map(([tokenName, tokenData], rowIndex) => { + // Skip token if it doesn't match search + const isSearchMatch = getIsSearchMatch(searchValue, tokenName, tokenData); + if (!isSearchMatch) { + return null; + } - return ( - - - {/* Expandable row icon */} - - {/* Token values for each theme */} - + + {/* Expandable row icon */} + + {/* Token values for each theme */} + + {isSemanticLayer && } + + + {/* Expandable token chain */} + {hasReferences && isTokenExpanded(tokenName) && ( + + - - - {/* Expandable token chain */} - {hasReferences && isTokenExpanded(tokenName) && ( - - - - )} - - ); - } - }); - })} -
NameValueDescription
setExpanded(tokenName, !isTokenExpanded(tokenName)), - expandId: `${tokenName}-expandable-toggle` - } - : undefined - } - /> - - {tokenName} - - {themeKeys.map((theme) => { - const val = - layerName === 'palette' || layerName === 'chart' - ? tokensByTheme[theme][layerName][tokenName]?.value - : tokensByTheme[theme][layerName][categoryName][tokenName]?.value; - const hasValue = val !== undefined; - const isColor = isColorRegex.test(val); - return ( - - {formatThemeText(theme)}: - {isColor ? ( - hasValue && ( - - - - ) - ) : ( -
- {hasValue ? val : '--'} -
- )} -
- ); - })} + const tokenThemesArr = Object.entries(tokenData); + const hasReferences = tokenThemesArr.some(([_themeName, themeToken]) => + themeToken.hasOwnProperty('references') + ); + const tokenDescription = tokenThemesArr[0][1].description; + + return ( +
setExpanded(tokenName, !isTokenExpanded(tokenName)), + expandId: `${tokenName}-expandable-toggle` + } + : undefined + } + /> + + {tokenName} + + {tokenThemesArr.map(([themeName, themeToken]) => { + const isColor = isColorRegex.test(themeToken.value); + return ( + + {formatThemeText(themeName)}: + {isColor ? ( + + + + ) : ( +
+ {themeToken.value} +
+ )} +
+ ); + })} +
{tokenDescription}
+ + + + {tokenThemesArr.map(([themeName, themeToken]) => ( + <> + {formatThemeText(themeName)}: + {showTokenChain(themeToken)} + + ))} + + {description}
- - - - {themeKeys.map( - (theme) => - themesDataObj.hasOwnProperty(theme) && ( - <> - {formatThemeText(theme)}: - {showTokenChain(themesDataObj[theme])} - - ) - )} - - -
- - ); - })} + )} + + ); + })} + + + ); + }) + }
diff --git a/packages/module/patternfly-docs/content/tokensToolbar.js b/packages/module/patternfly-docs/content/tokensToolbar.js new file mode 100644 index 0000000..ca4a322 --- /dev/null +++ b/packages/module/patternfly-docs/content/tokensToolbar.js @@ -0,0 +1,77 @@ +import React from 'react'; +import { + MenuToggle, + SearchInput, + Select, + SelectList, + SelectOption, + Toolbar, + ToolbarItem, + ToolbarContent +} from '@patternfly/react-core'; +import FilterIcon from '@patternfly/react-icons/dist/esm/icons/filter-icon'; + +export const TokensToolbar = ({ selectedCategories, setSelectedCategories, searchValue, setSearchValue }) => { + const [isSelectOpen, setIsSelectOpen] = React.useState(false); + + return ( + + + + setSearchValue(value)} + onClear={() => setSearchValue('')} + /> + + + + + + + ); +}; diff --git a/packages/module/patternfly-docs/scssAsJson.json b/packages/module/patternfly-docs/scssAsJson.json deleted file mode 100644 index 9cd6f14..0000000 --- a/packages/module/patternfly-docs/scssAsJson.json +++ /dev/null @@ -1 +0,0 @@ -{"--pf-t--color--black":"#000000","--pf-t--color--blue--10":"#e0f0ff","--pf-t--color--blue--20":"#b9dafc","--pf-t--color--blue--30":"#92c5f9","--pf-t--color--blue--40":"#4394e5","--pf-t--color--blue--50":"#0066cc","--pf-t--color--blue--60":"#004d99","--pf-t--color--blue--70":"#003366","--pf-t--color--gray--10":"#f2f2f2","--pf-t--color--gray--20":"#e0e0e0","--pf-t--color--gray--30":"#c7c7c7","--pf-t--color--gray--40":"#a3a3a3","--pf-t--color--gray--50":"#707070","--pf-t--color--gray--60":"#4d4d4d","--pf-t--color--gray--70":"#383838","--pf-t--color--gray--80":"#292929","--pf-t--color--gray--90":"#1f1f1f","--pf-t--color--gray--95":"#151515","--pf-t--color--green--10":"#e9f7df","--pf-t--color--green--20":"#d1f1bb","--pf-t--color--green--30":"#afdc8f","--pf-t--color--green--40":"#87bb62","--pf-t--color--green--50":"#63993d","--pf-t--color--green--60":"#3d7317","--pf-t--color--green--70":"#204d00","--pf-t--color--orange--10":"#ffe8cc","--pf-t--color--orange--20":"#fccb8f","--pf-t--color--orange--30":"#f8ae54","--pf-t--color--orange--40":"#f5921b","--pf-t--color--orange--50":"#ca6c0f","--pf-t--color--orange--60":"#9e4a06","--pf-t--color--orange--70":"#732e00","--pf-t--color--purple--10":"#ece6ff","--pf-t--color--purple--20":"#d0c5f4","--pf-t--color--purple--30":"#b6a6e9","--pf-t--color--purple--40":"#876fd4","--pf-t--color--purple--50":"#5e40be","--pf-t--color--purple--60":"#3d2785","--pf-t--color--purple--70":"#21134d","--pf-t--color--red--10":"#fce3e3","--pf-t--color--red--20":"#fbc5c5","--pf-t--color--red--30":"#f9a8a8","--pf-t--color--red--40":"#f56e6e","--pf-t--color--red--50":"#ee0000","--pf-t--color--red--60":"#a60000","--pf-t--color--red--70":"#5f0000","--pf-t--color--red-orange--10":"#ffe3d9","--pf-t--color--red-orange--20":"#fbbea8","--pf-t--color--red-orange--30":"#f89b78","--pf-t--color--red-orange--40":"#f4784a","--pf-t--color--red-orange--50":"#f0561d","--pf-t--color--red-orange--60":"#b1380b","--pf-t--color--red-orange--70":"#731f00","--pf-t--color--teal--10":"#daf2f2","--pf-t--color--teal--20":"#b9e5e5","--pf-t--color--teal--30":"#9ad8d8","--pf-t--color--teal--40":"#63bdbd","--pf-t--color--teal--50":"#37a3a3","--pf-t--color--teal--60":"#147878","--pf-t--color--teal--70":"#004d4d","--pf-t--color--white":"#ffffff","--pf-t--color--yellow--10":"#fff4cc","--pf-t--color--yellow--20":"#ffe072","--pf-t--color--yellow--30":"#ffcc17","--pf-t--color--yellow--40":"#dca614","--pf-t--color--yellow--50":"#b98412","--pf-t--color--yellow--60":"#96640f","--pf-t--color--yellow--70":"#73480b","--pf-t--global--background--color--500":"rgba(21, 21, 21, 0.2000)","--pf-t--global--background--color--600":"rgba(199, 199, 199, 0.2500)","--pf-t--global--background--color--action--plain--default":"rgba(0, 0, 0, 0.0000)","--pf-t--global--border--radius--0":"0px","--pf-t--global--border--radius--100":"4px","--pf-t--global--border--radius--200":"6px","--pf-t--global--border--radius--300":"16px","--pf-t--global--border--radius--400":"24px","--pf-t--global--border--radius--500":"999px","--pf-t--global--border--width--100":"1px","--pf-t--global--border--width--200":"2px","--pf-t--global--border--width--300":"3px","--pf-t--global--box-shadow--X--100":"-8px","--pf-t--global--box-shadow--X--200":"-4px","--pf-t--global--box-shadow--X--300":"-1px","--pf-t--global--box-shadow--X--400":"0px","--pf-t--global--box-shadow--X--500":"1px","--pf-t--global--box-shadow--X--600":"4px","--pf-t--global--box-shadow--X--700":"8px","--pf-t--global--box-shadow--Y--100":"-8px","--pf-t--global--box-shadow--Y--200":"-4px","--pf-t--global--box-shadow--Y--300":"-1px","--pf-t--global--box-shadow--Y--400":"0px","--pf-t--global--box-shadow--Y--500":"1px","--pf-t--global--box-shadow--Y--600":"4px","--pf-t--global--box-shadow--Y--700":"8px","--pf-t--global--box-shadow--blur--100":"4px","--pf-t--global--box-shadow--blur--200":"8px","--pf-t--global--box-shadow--blur--300":"24px","--pf-t--global--box-shadow--color--100":"rgba(0, 0, 0, 0.1600)","--pf-t--global--box-shadow--color--200":"rgba(0, 0, 0, 0.1200)","--pf-t--global--box-shadow--spread--100":"0px","--pf-t--global--breakpoint--100":"0rem","--pf-t--global--breakpoint--200":"36rem","--pf-t--global--breakpoint--250":"40rem","--pf-t--global--breakpoint--300":"48rem","--pf-t--global--breakpoint--350":"60rem","--pf-t--global--breakpoint--400":"62rem","--pf-t--global--breakpoint--500":"75rem","--pf-t--global--breakpoint--550":"80rem","--pf-t--global--breakpoint--600":"90.625rem","--pf-t--global--delay--100":"0ms","--pf-t--global--delay--200":"50ms","--pf-t--global--delay--300":"100ms","--pf-t--global--delay--400":"7000ms","--pf-t--global--duration--100":"100ms","--pf-t--global--duration--200":"200ms","--pf-t--global--duration--300":"300ms","--pf-t--global--duration--400":"400ms","--pf-t--global--duration--50":"50ms","--pf-t--global--duration--500":"500ms","--pf-t--global--duration--600":"600ms","--pf-t--global--font--family--100":"Red Hat Text VF","--pf-t--global--font--family--200":"Red Hat Display VF","--pf-t--global--font--family--300":"Red Hat Mono VF","--pf-t--global--font--line-height--100":"1.2999999523162842","--pf-t--global--font--line-height--200":"1.5","--pf-t--global--font--size--100":"0.75rem","--pf-t--global--font--size--200":"0.875rem","--pf-t--global--font--size--300":"1rem","--pf-t--global--font--size--400":"1.125rem","--pf-t--global--font--size--500":"1.25rem","--pf-t--global--font--size--600":"1.375rem","--pf-t--global--font--size--700":"1.75rem","--pf-t--global--font--size--800":"2.25rem","--pf-t--global--font--weight--100":"400","--pf-t--global--font--weight--200":"500","--pf-t--global--font--weight--300":"700","--pf-t--global--font--weight--400":"700","--pf-t--global--icon--size--100":"0.75rem","--pf-t--global--icon--size--200":"0.875rem","--pf-t--global--icon--size--250":"1rem","--pf-t--global--icon--size--300":"1.375rem","--pf-t--global--icon--size--400":"3.5rem","--pf-t--global--icon--size--500":"6rem","--pf-t--global--spacer--100":"0.25rem","--pf-t--global--spacer--200":"0.5rem","--pf-t--global--spacer--300":"1rem","--pf-t--global--spacer--400":"1.5rem","--pf-t--global--spacer--500":"2rem","--pf-t--global--spacer--600":"3rem","--pf-t--global--spacer--700":"4rem","--pf-t--global--spacer--800":"5rem","--pf-t--global--timing-function--100":"cubic-bezier(.4, 0, .7, .2)","--pf-t--global--timing-function--200":"cubic-bezier(.4, 0, .2, 1)","--pf-t--global--timing-function--300":"cubic-bezier(0, 0, .2, 1)","--pf-t--global--z-index--100":"100","--pf-t--global--z-index--200":"200","--pf-t--global--z-index--300":"300","--pf-t--global--z-index--400":"400","--pf-t--global--z-index--500":"500","--pf-t--global--z-index--600":"600","--pf-t--global--background--color--100":"--pf-t--color--white","--pf-t--global--background--color--200":"--pf-t--color--gray--10","--pf-t--global--background--color--300":"--pf-t--color--gray--20","--pf-t--global--background--color--400":"--pf-t--color--gray--80","--pf-t--global--background--color--action--plain--clicked":"--pf-t--global--dark--background--color--600","--pf-t--global--background--color--action--plain--hover":"--pf-t--global--dark--background--color--600","--pf-t--global--background--color--backdrop--default":"--pf-t--global--dark--background--color--500","--pf-t--global--background--color--highlight--100":"--pf-t--color--yellow--30","--pf-t--global--background--color--highlight--200":"--pf-t--color--yellow--40","--pf-t--global--border--color--100":"--pf-t--color--gray--30","--pf-t--global--border--color--200":"--pf-t--color--gray--40","--pf-t--global--border--color--300":"--pf-t--color--gray--50","--pf-t--global--border--radius--large":"--pf-t--global--border--radius--400","--pf-t--global--border--radius--medium":"--pf-t--global--border--radius--300","--pf-t--global--border--radius--pill":"--pf-t--global--border--radius--500","--pf-t--global--border--radius--sharp":"--pf-t--global--border--radius--0","--pf-t--global--border--radius--small":"--pf-t--global--border--radius--200","--pf-t--global--border--radius--tiny":"--pf-t--global--border--radius--100","--pf-t--global--border--width--action--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--action--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--action--hover":"--pf-t--global--border--width--200","--pf-t--global--border--width--box--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--box--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--box--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--box--status--default":"--pf-t--global--border--width--200","--pf-t--global--border--width--box--status--read":"--pf-t--global--border--width--100","--pf-t--global--border--width--control--clicked":"--pf-t--global--border--width--200","--pf-t--global--border--width--control--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--control--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--divider--clicked":"--pf-t--global--border--width--100","--pf-t--global--border--width--divider--default":"--pf-t--global--border--width--100","--pf-t--global--border--width--divider--hover":"--pf-t--global--border--width--100","--pf-t--global--border--width--extra-strong":"--pf-t--global--border--width--300","--pf-t--global--border--width--regular":"--pf-t--global--border--width--100","--pf-t--global--border--width--strong":"--pf-t--global--border--width--200","--pf-t--global--box-shadow--X--lg--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--lg--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--lg--left":"--pf-t--global--box-shadow--X--100","--pf-t--global--box-shadow--X--lg--right":"--pf-t--global--box-shadow--X--700","--pf-t--global--box-shadow--X--lg--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--md--left":"--pf-t--global--box-shadow--X--200","--pf-t--global--box-shadow--X--md--right":"--pf-t--global--box-shadow--X--600","--pf-t--global--box-shadow--X--md--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--bottom":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--default":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--X--sm--left":"--pf-t--global--box-shadow--X--300","--pf-t--global--box-shadow--X--sm--right":"--pf-t--global--box-shadow--X--500","--pf-t--global--box-shadow--X--sm--top":"--pf-t--global--box-shadow--X--400","--pf-t--global--box-shadow--Y--lg--bottom":"--pf-t--global--box-shadow--Y--700","--pf-t--global--box-shadow--Y--lg--default":"--pf-t--global--box-shadow--Y--700","--pf-t--global--box-shadow--Y--lg--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--lg--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--lg--top":"--pf-t--global--box-shadow--Y--100","--pf-t--global--box-shadow--Y--md--bottom":"--pf-t--global--box-shadow--Y--600","--pf-t--global--box-shadow--Y--md--default":"--pf-t--global--box-shadow--Y--600","--pf-t--global--box-shadow--Y--md--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--md--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--md--top":"--pf-t--global--box-shadow--Y--200","--pf-t--global--box-shadow--Y--sm--bottom":"--pf-t--global--box-shadow--Y--500","--pf-t--global--box-shadow--Y--sm--default":"--pf-t--global--box-shadow--Y--500","--pf-t--global--box-shadow--Y--sm--left":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--sm--right":"--pf-t--global--box-shadow--Y--400","--pf-t--global--box-shadow--Y--sm--top":"--pf-t--global--box-shadow--Y--300","--pf-t--global--box-shadow--blur--lg":"--pf-t--global--box-shadow--blur--300","--pf-t--global--box-shadow--blur--md":"--pf-t--global--box-shadow--blur--200","--pf-t--global--box-shadow--blur--sm":"--pf-t--global--box-shadow--blur--100","--pf-t--global--box-shadow--color--lg":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--color--md":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--color--sm":"--pf-t--global--dark--box-shadow--color--100","--pf-t--global--box-shadow--spread--lg":"--pf-t--global--box-shadow--spread--100","--pf-t--global--box-shadow--spread--md":"--pf-t--global--box-shadow--spread--100","--pf-t--global--box-shadow--spread--sm":"--pf-t--global--box-shadow--spread--100","--pf-t--global--breakpoint--2xl":"--pf-t--global--breakpoint--600","--pf-t--global--breakpoint--height--2xl":"--pf-t--global--breakpoint--550","--pf-t--global--breakpoint--height--lg":"--pf-t--global--breakpoint--300","--pf-t--global--breakpoint--height--md":"--pf-t--global--breakpoint--250","--pf-t--global--breakpoint--height--sm":"--pf-t--global--breakpoint--100","--pf-t--global--breakpoint--height--xl":"--pf-t--global--breakpoint--350","--pf-t--global--breakpoint--lg":"--pf-t--global--breakpoint--400","--pf-t--global--breakpoint--md":"--pf-t--global--breakpoint--300","--pf-t--global--breakpoint--sm":"--pf-t--global--breakpoint--200","--pf-t--global--breakpoint--xl":"--pf-t--global--breakpoint--500","--pf-t--global--breakpoint--xs":"--pf-t--global--breakpoint--100","--pf-t--global--color--brand--100":"--pf-t--color--blue--40","--pf-t--global--color--brand--200":"--pf-t--color--blue--50","--pf-t--global--color--brand--300":"--pf-t--color--blue--60","--pf-t--global--color--disabled--100":"--pf-t--color--gray--30","--pf-t--global--color--disabled--200":"--pf-t--color--gray--40","--pf-t--global--color--disabled--300":"--pf-t--color--gray--60","--pf-t--global--color--favorite--100":"--pf-t--color--yellow--30","--pf-t--global--color--favorite--200":"--pf-t--color--yellow--40","--pf-t--global--color--nonstatus--blue--100":"--pf-t--color--blue--20","--pf-t--global--color--nonstatus--blue--200":"--pf-t--color--blue--30","--pf-t--global--color--nonstatus--blue--300":"--pf-t--color--blue--40","--pf-t--global--color--nonstatus--gray--100":"--pf-t--color--gray--20","--pf-t--global--color--nonstatus--gray--200":"--pf-t--color--gray--30","--pf-t--global--color--nonstatus--gray--300":"--pf-t--color--gray--40","--pf-t--global--color--nonstatus--green--100":"--pf-t--color--green--20","--pf-t--global--color--nonstatus--green--200":"--pf-t--color--green--30","--pf-t--global--color--nonstatus--green--300":"--pf-t--color--green--40","--pf-t--global--color--nonstatus--orange--100":"--pf-t--color--orange--20","--pf-t--global--color--nonstatus--orange--200":"--pf-t--color--orange--30","--pf-t--global--color--nonstatus--orange--300":"--pf-t--color--orange--40","--pf-t--global--color--nonstatus--orangered--100":"--pf-t--color--red-orange--20","--pf-t--global--color--nonstatus--orangered--200":"--pf-t--color--red-orange--30","--pf-t--global--color--nonstatus--orangered--300":"--pf-t--color--red-orange--40","--pf-t--global--color--nonstatus--purple--100":"--pf-t--color--purple--20","--pf-t--global--color--nonstatus--purple--200":"--pf-t--color--purple--30","--pf-t--global--color--nonstatus--purple--300":"--pf-t--color--purple--40","--pf-t--global--color--nonstatus--red--100":"--pf-t--color--red--20","--pf-t--global--color--nonstatus--red--200":"--pf-t--color--red--30","--pf-t--global--color--nonstatus--red--300":"--pf-t--color--red--40","--pf-t--global--color--nonstatus--teal--100":"--pf-t--color--teal--20","--pf-t--global--color--nonstatus--teal--200":"--pf-t--color--teal--30","--pf-t--global--color--nonstatus--teal--300":"--pf-t--color--teal--40","--pf-t--global--color--nonstatus--yellow--100":"--pf-t--color--yellow--20","--pf-t--global--color--nonstatus--yellow--200":"--pf-t--color--yellow--30","--pf-t--global--color--nonstatus--yellow--300":"--pf-t--color--yellow--40","--pf-t--global--color--severity--critical--100":"--pf-t--color--red-orange--60","--pf-t--global--color--severity--important--100":"--pf-t--color--orange--50","--pf-t--global--color--severity--minor--100":"--pf-t--color--gray--50","--pf-t--global--color--severity--moderate--100":"--pf-t--color--yellow--40","--pf-t--global--color--severity--none--100":"--pf-t--color--blue--40","--pf-t--global--color--severity--undefined--100":"--pf-t--color--gray--30","--pf-t--global--color--status--custom--100":"--pf-t--color--teal--60","--pf-t--global--color--status--custom--200":"--pf-t--color--teal--70","--pf-t--global--color--status--danger--100":"--pf-t--color--red-orange--60","--pf-t--global--color--status--danger--200":"--pf-t--color--red-orange--70","--pf-t--global--color--status--danger--300":"--pf-t--color--red-orange--70","--pf-t--global--color--status--info--100":"--pf-t--color--purple--50","--pf-t--global--color--status--info--200":"--pf-t--color--purple--60","--pf-t--global--color--status--success--100":"--pf-t--color--green--60","--pf-t--global--color--status--success--200":"--pf-t--color--green--70","--pf-t--global--color--status--warning--100":"--pf-t--color--yellow--30","--pf-t--global--color--status--warning--200":"--pf-t--color--yellow--40","--pf-t--global--color--status--warning--300":"--pf-t--color--yellow--50","--pf-t--global--font--family--body":"--pf-t--global--font--family--100","--pf-t--global--font--family--heading":"--pf-t--global--font--family--200","--pf-t--global--font--family--mono":"--pf-t--global--font--family--300","--pf-t--global--font--line-height--body":"--pf-t--global--font--line-height--100","--pf-t--global--font--line-height--heading":"--pf-t--global--font--line-height--200","--pf-t--global--font--size--2xl":"--pf-t--global--font--size--600","--pf-t--global--font--size--3xl":"--pf-t--global--font--size--700","--pf-t--global--font--size--4xl":"--pf-t--global--font--size--800","--pf-t--global--font--size--lg":"--pf-t--global--font--size--400","--pf-t--global--font--size--md":"--pf-t--global--font--size--300","--pf-t--global--font--size--sm":"--pf-t--global--font--size--200","--pf-t--global--font--size--xl":"--pf-t--global--font--size--500","--pf-t--global--font--size--xs":"--pf-t--global--font--size--100","--pf-t--global--font--weight--body":"--pf-t--global--font--weight--100","--pf-t--global--font--weight--heading":"--pf-t--global--font--weight--300","--pf-t--global--icon--color--100":"--pf-t--color--gray--90","--pf-t--global--icon--color--200":"--pf-t--color--gray--50","--pf-t--global--icon--color--300":"--pf-t--color--white","--pf-t--global--icon--size--2xl":"--pf-t--global--icon--size--400","--pf-t--global--icon--size--3xl":"--pf-t--global--icon--size--500","--pf-t--global--icon--size--lg":"--pf-t--global--icon--size--250","--pf-t--global--icon--size--md":"--pf-t--global--icon--size--200","--pf-t--global--icon--size--sm":"--pf-t--global--icon--size--100","--pf-t--global--icon--size--xl":"--pf-t--global--icon--size--300","--pf-t--global--motion--delay--default":"--pf-t--global--delay--300","--pf-t--global--motion--delay--long":"--pf-t--global--delay--400","--pf-t--global--motion--delay--none":"--pf-t--global--delay--100","--pf-t--global--motion--delay--short":"--pf-t--global--delay--200","--pf-t--global--motion--duration--2xl":"--pf-t--global--duration--500","--pf-t--global--motion--duration--3xl":"--pf-t--global--duration--600","--pf-t--global--motion--duration--lg":"--pf-t--global--duration--300","--pf-t--global--motion--duration--md":"--pf-t--global--duration--200","--pf-t--global--motion--duration--sm":"--pf-t--global--duration--100","--pf-t--global--motion--duration--xl":"--pf-t--global--duration--400","--pf-t--global--motion--duration--xs":"--pf-t--global--duration--50","--pf-t--global--motion--timing-function--accelerate":"--pf-t--global--timing-function--100","--pf-t--global--motion--timing-function--decelerate":"--pf-t--global--timing-function--300","--pf-t--global--motion--timing-function--default":"--pf-t--global--timing-function--200","--pf-t--global--spacer--2xl":"--pf-t--global--spacer--600","--pf-t--global--spacer--3xl":"--pf-t--global--spacer--700","--pf-t--global--spacer--4xl":"--pf-t--global--spacer--800","--pf-t--global--spacer--lg":"--pf-t--global--spacer--400","--pf-t--global--spacer--md":"--pf-t--global--spacer--300","--pf-t--global--spacer--sm":"--pf-t--global--spacer--200","--pf-t--global--spacer--xl":"--pf-t--global--spacer--500","--pf-t--global--spacer--xs":"--pf-t--global--spacer--100","--pf-t--global--text--color--100":"--pf-t--color--gray--95","--pf-t--global--text--color--200":"--pf-t--color--gray--60","--pf-t--global--text--color--300":"--pf-t--color--white","--pf-t--global--text--color--400":"--pf-t--color--red-orange--40","--pf-t--global--text--color--link--100":"--pf-t--color--blue--50","--pf-t--global--text--color--link--200":"--pf-t--color--blue--60","--pf-t--global--text--color--link--300":"--pf-t--color--purple--50","--pf-t--global--z-index--2xl":"--pf-t--global--z-index--600","--pf-t--global--z-index--lg":"--pf-t--global--z-index--400","--pf-t--global--z-index--md":"--pf-t--global--z-index--300","--pf-t--global--z-index--sm":"--pf-t--global--z-index--200","--pf-t--global--z-index--xl":"--pf-t--global--z-index--500","--pf-t--global--z-index--xs":"--pf-t--global--z-index--100","--pf-t--global--background--color--action--plain--alt--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--action--plain--alt--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--disabled--default":"--pf-t--global--dark--color--disabled--100","--pf-t--global--background--color--floating--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--floating--default":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--floating--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--highlight--clicked":"--pf-t--global--dark--background--color--highlight--200","--pf-t--global--background--color--highlight--default":"--pf-t--global--dark--background--color--highlight--100","--pf-t--global--background--color--inverse--default":"--pf-t--global--dark--background--color--400","--pf-t--global--background--color--primary--clicked":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--primary--default":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--primary--hover":"--pf-t--global--dark--background--color--300","--pf-t--global--background--color--secondary--clicked":"--pf-t--global--dark--background--color--200","--pf-t--global--background--color--secondary--default":"--pf-t--global--dark--background--color--100","--pf-t--global--background--color--secondary--hover":"--pf-t--global--dark--background--color--200","--pf-t--global--border--color--clicked":"--pf-t--global--dark--color--brand--200","--pf-t--global--border--color--default":"--pf-t--global--dark--border--color--200","--pf-t--global--border--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--border--color--hover":"--pf-t--global--dark--color--brand--100","--pf-t--global--border--color--nonstatus--blue--clicked":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--border--color--nonstatus--blue--default":"--pf-t--global--dark--color--nonstatus--blue--100","--pf-t--global--border--color--nonstatus--blue--hover":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--border--color--nonstatus--gray--clicked":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--border--color--nonstatus--gray--default":"--pf-t--global--dark--color--nonstatus--gray--100","--pf-t--global--border--color--nonstatus--gray--hover":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--border--color--nonstatus--green--clicked":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--border--color--nonstatus--green--default":"--pf-t--global--dark--color--nonstatus--green--100","--pf-t--global--border--color--nonstatus--green--hover":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--border--color--nonstatus--orange--clicked":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--border--color--nonstatus--orange--default":"--pf-t--global--dark--color--nonstatus--orange--100","--pf-t--global--border--color--nonstatus--orange--hover":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--border--color--nonstatus--orangered--clicked":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--border--color--nonstatus--orangered--default":"--pf-t--global--dark--color--nonstatus--orangered--100","--pf-t--global--border--color--nonstatus--orangered--hover":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--border--color--nonstatus--purple--clicked":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--border--color--nonstatus--purple--default":"--pf-t--global--dark--color--nonstatus--purple--100","--pf-t--global--border--color--nonstatus--purple--hover":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--border--color--nonstatus--red--clicked":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--border--color--nonstatus--red--default":"--pf-t--global--dark--color--nonstatus--red--100","--pf-t--global--border--color--nonstatus--red--hover":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--border--color--nonstatus--teal--clicked":"--pf-t--global--dark--color--nonstatus--teal--200","--pf-t--global--border--color--nonstatus--teal--default":"--pf-t--global--dark--color--nonstatus--teal--100","--pf-t--global--border--color--nonstatus--teal--hover":"--pf-t--global--dark--color--nonstatus--teal--200","--pf-t--global--border--color--nonstatus--yellow--clicked":"--pf-t--global--dark--color--nonstatus--yellow--200","--pf-t--global--border--color--nonstatus--yellow--default":"--pf-t--global--dark--color--nonstatus--yellow--100","--pf-t--global--border--color--nonstatus--yellow--hover":"--pf-t--global--dark--color--nonstatus--yellow--200","--pf-t--global--border--color--on-secondary":"--pf-t--global--dark--border--color--200","--pf-t--global--border--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--border--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--border--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--color--brand--clicked":"--pf-t--global--dark--color--brand--200","--pf-t--global--color--brand--default":"--pf-t--global--dark--color--brand--100","--pf-t--global--color--brand--hover":"--pf-t--global--dark--color--brand--200","--pf-t--global--color--favorite--clicked":"--pf-t--global--dark--color--favorite--200","--pf-t--global--color--favorite--default":"--pf-t--global--dark--color--favorite--100","--pf-t--global--color--favorite--hover":"--pf-t--global--dark--color--favorite--200","--pf-t--global--color--nonstatus--blue--clicked":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--color--nonstatus--blue--default":"--pf-t--global--dark--color--nonstatus--blue--100","--pf-t--global--color--nonstatus--blue--hover":"--pf-t--global--dark--color--nonstatus--blue--200","--pf-t--global--color--nonstatus--gray--clicked":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--color--nonstatus--gray--default":"--pf-t--global--dark--color--nonstatus--gray--100","--pf-t--global--color--nonstatus--gray--hover":"--pf-t--global--dark--color--nonstatus--gray--200","--pf-t--global--color--nonstatus--green--clicked":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--color--nonstatus--green--default":"--pf-t--global--dark--color--nonstatus--green--100","--pf-t--global--color--nonstatus--green--hover":"--pf-t--global--dark--color--nonstatus--green--200","--pf-t--global--color--nonstatus--orange--clicked":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--color--nonstatus--orange--default":"--pf-t--global--dark--color--nonstatus--orange--100","--pf-t--global--color--nonstatus--orange--hover":"--pf-t--global--dark--color--nonstatus--orange--200","--pf-t--global--color--nonstatus--orangered--clicked":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--color--nonstatus--orangered--default":"--pf-t--global--dark--color--nonstatus--orangered--100","--pf-t--global--color--nonstatus--orangered--hover":"--pf-t--global--dark--color--nonstatus--orangered--200","--pf-t--global--color--nonstatus--purple--clicked":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--color--nonstatus--purple--default":"--pf-t--global--dark--color--nonstatus--purple--100","--pf-t--global--color--nonstatus--purple--hover":"--pf-t--global--dark--color--nonstatus--purple--200","--pf-t--global--color--nonstatus--red--clicked":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--color--nonstatus--red--default":"--pf-t--global--dark--color--nonstatus--red--100","--pf-t--global--color--nonstatus--red--hover":"--pf-t--global--dark--color--nonstatus--red--200","--pf-t--global--color--nonstatus--teal--clicked":"--pf-t--global--dark--color--nonstatus--teal--200","--pf-t--global--color--nonstatus--teal--default":"--pf-t--global--dark--color--nonstatus--teal--100","--pf-t--global--color--nonstatus--teal--hover":"--pf-t--global--dark--color--nonstatus--teal--200","--pf-t--global--color--nonstatus--yellow--clicked":"--pf-t--global--dark--color--nonstatus--yellow--200","--pf-t--global--color--nonstatus--yellow--default":"--pf-t--global--dark--color--nonstatus--yellow--100","--pf-t--global--color--nonstatus--yellow--hover":"--pf-t--global--dark--color--nonstatus--yellow--200","--pf-t--global--color--status--custom--clicked":"--pf-t--global--dark--color--status--custom--200","--pf-t--global--color--status--custom--default":"--pf-t--global--dark--color--status--custom--100","--pf-t--global--color--status--custom--hover":"--pf-t--global--dark--color--status--custom--200","--pf-t--global--color--status--danger--clicked":"--pf-t--global--dark--color--status--danger--200","--pf-t--global--color--status--danger--default":"--pf-t--global--dark--color--status--danger--100","--pf-t--global--color--status--danger--hover":"--pf-t--global--dark--color--status--danger--200","--pf-t--global--color--status--info--clicked":"--pf-t--global--dark--color--status--info--200","--pf-t--global--color--status--info--default":"--pf-t--global--dark--color--status--info--100","--pf-t--global--color--status--info--hover":"--pf-t--global--dark--color--status--info--200","--pf-t--global--color--status--success--clicked":"--pf-t--global--dark--color--status--success--200","--pf-t--global--color--status--success--default":"--pf-t--global--dark--color--status--success--100","--pf-t--global--color--status--success--hover":"--pf-t--global--dark--color--status--success--200","--pf-t--global--color--status--warning--clicked":"--pf-t--global--dark--color--status--warning--200","--pf-t--global--color--status--warning--default":"--pf-t--global--dark--color--status--warning--100","--pf-t--global--color--status--warning--hover":"--pf-t--global--dark--color--status--warning--200","--pf-t--global--font--size--body--default":"--pf-t--global--font--size--sm","--pf-t--global--font--size--body--lg":"--pf-t--global--font--size--md","--pf-t--global--font--size--body--sm":"--pf-t--global--font--size--xs","--pf-t--global--font--size--heading--h1":"--pf-t--global--font--size--2xl","--pf-t--global--font--size--heading--h2":"--pf-t--global--font--size--xl","--pf-t--global--font--size--heading--h3":"--pf-t--global--font--size--lg","--pf-t--global--font--size--heading--h4":"--pf-t--global--font--size--md","--pf-t--global--font--size--heading--h5":"--pf-t--global--font--size--md","--pf-t--global--font--size--heading--h6":"--pf-t--global--font--size--md","--pf-t--global--icon--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--icon--color--inverse":"--pf-t--global--dark--icon--color--300","--pf-t--global--icon--color--on-disabled":"--pf-t--global--dark--color--disabled--300","--pf-t--global--icon--color--regular":"--pf-t--global--dark--icon--color--100","--pf-t--global--icon--color--severity--critical--default":"--pf-t--global--dark--color--severity--critical--100","--pf-t--global--icon--color--severity--important--default":"--pf-t--global--dark--color--severity--important--100","--pf-t--global--icon--color--severity--minor--default":"--pf-t--global--dark--color--severity--minor--100","--pf-t--global--icon--color--severity--moderate--default":"--pf-t--global--dark--color--severity--moderate--100","--pf-t--global--icon--color--severity--none--default":"--pf-t--global--dark--color--severity--none--100","--pf-t--global--icon--color--severity--undefined--default":"--pf-t--global--dark--color--severity--undefined--100","--pf-t--global--icon--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--icon--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--icon--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--icon--color--subtle":"--pf-t--global--dark--icon--color--200","--pf-t--global--icon--size--font--2xl":"--pf-t--global--font--size--2xl","--pf-t--global--icon--size--font--3xl":"--pf-t--global--font--size--3xl","--pf-t--global--icon--size--font--4xl":"--pf-t--global--font--size--4xl","--pf-t--global--icon--size--font--lg":"--pf-t--global--font--size--lg","--pf-t--global--icon--size--font--md":"--pf-t--global--font--size--md","--pf-t--global--icon--size--font--sm":"--pf-t--global--font--size--sm","--pf-t--global--icon--size--font--xl":"--pf-t--global--font--size--xl","--pf-t--global--icon--size--font--xs":"--pf-t--global--font--size--xs","--pf-t--global--motion--duration--fade--default":"--pf-t--global--motion--duration--md","--pf-t--global--motion--duration--fade--long":"--pf-t--global--motion--duration--lg","--pf-t--global--motion--duration--fade--short":"--pf-t--global--motion--duration--sm","--pf-t--global--motion--duration--icon--default":"--pf-t--global--motion--duration--sm","--pf-t--global--motion--duration--icon--long":"--pf-t--global--motion--duration--md","--pf-t--global--motion--duration--icon--short":"--pf-t--global--motion--duration--xs","--pf-t--global--motion--duration--slide-in--default":"--pf-t--global--motion--duration--xl","--pf-t--global--motion--duration--slide-in--long":"--pf-t--global--motion--duration--2xl","--pf-t--global--motion--duration--slide-in--short":"--pf-t--global--motion--duration--lg","--pf-t--global--motion--duration--slide-out--default":"--pf-t--global--motion--duration--xl","--pf-t--global--motion--duration--slide-out--long":"--pf-t--global--motion--duration--2xl","--pf-t--global--motion--duration--slide-out--short":"--pf-t--global--motion--duration--lg","--pf-t--global--spacer--action--horizontal--compact":"--pf-t--global--spacer--md","--pf-t--global--spacer--action--horizontal--default":"--pf-t--global--spacer--lg","--pf-t--global--spacer--action--horizontal--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--action--horizontal--spacious":"--pf-t--global--spacer--xl","--pf-t--global--spacer--action--vertical--compact":"--pf-t--global--spacer--xs","--pf-t--global--spacer--action--vertical--spacious":"--pf-t--global--spacer--md","--pf-t--global--spacer--control--horizontal--compact":"--pf-t--global--spacer--sm","--pf-t--global--spacer--control--horizontal--default":"--pf-t--global--spacer--md","--pf-t--global--spacer--control--horizontal--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--control--horizontal--spacious":"--pf-t--global--spacer--lg","--pf-t--global--spacer--control--vertical--compact":"--pf-t--global--spacer--xs","--pf-t--global--spacer--control--vertical--default":"--pf-t--global--spacer--sm","--pf-t--global--spacer--control--vertical--plain":"--pf-t--global--spacer--sm","--pf-t--global--spacer--gap--action-to-action--default":"--pf-t--global--spacer--md","--pf-t--global--spacer--gap--action-to-action--plain":"--pf-t--global--spacer--xs","--pf-t--global--spacer--gap--control-to-control--default":"--pf-t--global--spacer--xs","--pf-t--global--spacer--gap--group--horizontal":"--pf-t--global--spacer--md","--pf-t--global--spacer--gap--group--vertical":"--pf-t--global--spacer--sm","--pf-t--global--spacer--gap--group-to-group--horizontal":"--pf-t--global--spacer--2xl","--pf-t--global--spacer--gap--group-to-group--vertical":"--pf-t--global--spacer--lg","--pf-t--global--spacer--gap--text-to-element--default":"--pf-t--global--spacer--sm","--pf-t--global--text--color--disabled":"--pf-t--global--dark--color--disabled--200","--pf-t--global--text--color--inverse":"--pf-t--global--dark--text--color--300","--pf-t--global--text--color--link--default":"--pf-t--global--dark--text--color--link--100","--pf-t--global--text--color--link--hover":"--pf-t--global--dark--text--color--link--200","--pf-t--global--text--color--link--visited":"--pf-t--global--dark--text--color--link--300","--pf-t--global--text--color--on-disabled":"--pf-t--global--dark--color--disabled--300","--pf-t--global--text--color--on-highlight":"--pf-t--global--dark--text--color--300","--pf-t--global--text--color--regular":"--pf-t--global--dark--text--color--100","--pf-t--global--text--color--required":"--pf-t--global--dark--text--color--400","--pf-t--global--text--color--status--warning--clicked":"--pf-t--global--color--status--warning--clicked","--pf-t--global--text--color--status--warning--default":"--pf-t--global--color--status--warning--default","--pf-t--global--text--color--status--warning--hover":"--pf-t--global--color--status--warning--hover","--pf-t--global--text--color--subtle":"--pf-t--global--dark--text--color--200","--pf-t--global--background--color--control--default":"--pf-t--global--dark--background--color--300","--pf-t--global--border--color--alt":"--pf-t--global--background--color--primary--default","--pf-t--global--border--color--brand--clicked":"--pf-t--global--color--brand--clicked","--pf-t--global--border--color--brand--default":"--pf-t--global--color--brand--default","--pf-t--global--border--color--brand--hover":"--pf-t--global--color--brand--hover","--pf-t--global--border--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--border--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--border--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--border--color--status--danger--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--border--color--status--danger--default":"--pf-t--global--color--status--danger--default","--pf-t--global--border--color--status--danger--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--border--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--border--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--border--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--border--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--border--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--border--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--color--status--read--on-primary":"--pf-t--global--background--color--secondary--default","--pf-t--global--color--status--unread--attention--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--color--status--unread--attention--default":"--pf-t--global--color--status--danger--default","--pf-t--global--color--status--unread--attention--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--color--status--unread--clicked":"--pf-t--global--color--brand--clicked","--pf-t--global--color--status--unread--default":"--pf-t--global--color--brand--default","--pf-t--global--color--status--unread--hover":"--pf-t--global--color--brand--hover","--pf-t--global--icon--color--brand--clicked":"--pf-t--global--dark--color--brand--300","--pf-t--global--icon--color--brand--default":"--pf-t--global--dark--color--brand--200","--pf-t--global--icon--color--brand--hover":"--pf-t--global--dark--color--brand--300","--pf-t--global--icon--color--favorite--clicked":"--pf-t--global--color--favorite--clicked","--pf-t--global--icon--color--favorite--default":"--pf-t--global--color--favorite--default","--pf-t--global--icon--color--favorite--hover":"--pf-t--global--color--favorite--hover","--pf-t--global--icon--color--nonstatus--on-blue--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-blue--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-blue--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gray--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gray--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-gray--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-green--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orange--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-orangered--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-purple--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-red--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-teal--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-teal--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-teal--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-yellow--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-yellow--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--nonstatus--on-yellow--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--on-brand--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--on-brand--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--on-brand--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--icon--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--icon--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--icon--color--status--danger--clicked":"--pf-t--global--color--status--danger--clicked","--pf-t--global--icon--color--status--danger--default":"--pf-t--global--color--status--danger--default","--pf-t--global--icon--color--status--danger--hover":"--pf-t--global--color--status--danger--hover","--pf-t--global--icon--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--icon--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--icon--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--icon--color--status--on-custom--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-custom--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-custom--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-danger--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-danger--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-danger--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-info--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-info--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-info--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-success--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-warning--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-warning--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--on-warning--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--icon--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--icon--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--icon--color--status--unread--on-attention--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-attention--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-attention--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--clicked":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--default":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--color--status--unread--on-default--hover":"--pf-t--global--icon--color--inverse","--pf-t--global--icon--size--font--body--default":"--pf-t--global--font--size--body--default","--pf-t--global--icon--size--font--body--lg":"--pf-t--global--font--size--body--lg","--pf-t--global--icon--size--font--body--sm":"--pf-t--global--font--size--body--sm","--pf-t--global--icon--size--font--heading--h1":"--pf-t--global--font--size--heading--h1","--pf-t--global--icon--size--font--heading--h2":"--pf-t--global--font--size--heading--h2","--pf-t--global--icon--size--font--heading--h3":"--pf-t--global--font--size--heading--h3","--pf-t--global--icon--size--font--heading--h4":"--pf-t--global--font--size--heading--h4","--pf-t--global--icon--size--font--heading--h5":"--pf-t--global--font--size--heading--h5","--pf-t--global--icon--size--font--heading--h6":"--pf-t--global--font--size--heading--h6","--pf-t--global--text--color--brand--clicked":"--pf-t--global--dark--color--brand--300","--pf-t--global--text--color--brand--default":"--pf-t--global--dark--color--brand--200","--pf-t--global--text--color--brand--hover":"--pf-t--global--dark--color--brand--300","--pf-t--global--text--color--nonstatus--on-blue--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-blue--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-blue--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gray--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gray--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-gray--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-green--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orange--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-orangered--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-purple--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-red--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-teal--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-teal--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-teal--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-yellow--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-yellow--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--nonstatus--on-yellow--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--on-brand--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--on-brand--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--on-brand--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--placeholder":"--pf-t--global--text--color--subtle","--pf-t--global--text--color--status--custom--clicked":"--pf-t--global--color--status--custom--clicked","--pf-t--global--text--color--status--custom--default":"--pf-t--global--color--status--custom--default","--pf-t--global--text--color--status--custom--hover":"--pf-t--global--color--status--custom--hover","--pf-t--global--text--color--status--danger--clicked":"--pf-t--global--dark--color--status--danger--300","--pf-t--global--text--color--status--danger--default":"--pf-t--global--dark--color--status--danger--250","--pf-t--global--text--color--status--danger--hover":"--pf-t--global--dark--color--status--danger--300","--pf-t--global--text--color--status--info--clicked":"--pf-t--global--color--status--info--clicked","--pf-t--global--text--color--status--info--default":"--pf-t--global--color--status--info--default","--pf-t--global--text--color--status--info--hover":"--pf-t--global--color--status--info--hover","--pf-t--global--text--color--status--on-custom--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-custom--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-custom--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-danger--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-danger--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-danger--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-info--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-info--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-info--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-success--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-warning--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-warning--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--on-warning--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--success--clicked":"--pf-t--global--color--status--success--clicked","--pf-t--global--text--color--status--success--default":"--pf-t--global--color--status--success--default","--pf-t--global--text--color--status--success--hover":"--pf-t--global--color--status--success--hover","--pf-t--global--text--color--status--unread--on-attention--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-attention--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-attention--hover":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--clicked":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--default":"--pf-t--global--text--color--inverse","--pf-t--global--text--color--status--unread--on-default--hover":"--pf-t--global--text--color--inverse","--pf-t--global--color--status--read--on-secondary":"--pf-t--global--background--color--control--default","--pf-t--global--dark--background--color--500":"rgba(21, 21, 21, 0.8000)","--pf-t--global--dark--background--color--600":"rgba(199, 199, 199, 0.1500)","--pf-t--global--dark--box-shadow--color--100":"rgba(0, 0, 0, 0.5000)","--pf-t--global--dark--background--color--100":"--pf-t--color--gray--95","--pf-t--global--dark--background--color--200":"--pf-t--color--gray--80","--pf-t--global--dark--background--color--300":"--pf-t--color--gray--70","--pf-t--global--dark--background--color--400":"--pf-t--color--gray--10","--pf-t--global--dark--background--color--highlight--100":"--pf-t--color--yellow--20","--pf-t--global--dark--background--color--highlight--200":"--pf-t--color--yellow--30","--pf-t--global--dark--border--color--100":"--pf-t--color--gray--50","--pf-t--global--dark--border--color--200":"--pf-t--color--gray--40","--pf-t--global--dark--color--brand--100":"--pf-t--color--blue--30","--pf-t--global--dark--color--brand--200":"--pf-t--color--blue--20","--pf-t--global--dark--color--brand--300":"--pf-t--color--blue--10","--pf-t--global--dark--color--disabled--100":"--pf-t--color--gray--40","--pf-t--global--dark--color--disabled--200":"--pf-t--color--gray--50","--pf-t--global--dark--color--disabled--300":"--pf-t--color--gray--70","--pf-t--global--dark--color--favorite--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--favorite--200":"--pf-t--color--yellow--20","--pf-t--global--dark--color--nonstatus--blue--100":"--pf-t--color--blue--30","--pf-t--global--dark--color--nonstatus--blue--200":"--pf-t--color--blue--20","--pf-t--global--dark--color--nonstatus--blue--300":"--pf-t--color--blue--10","--pf-t--global--dark--color--nonstatus--gray--100":"--pf-t--color--gray--30","--pf-t--global--dark--color--nonstatus--gray--200":"--pf-t--color--gray--20","--pf-t--global--dark--color--nonstatus--gray--300":"--pf-t--color--gray--10","--pf-t--global--dark--color--nonstatus--green--100":"--pf-t--color--green--30","--pf-t--global--dark--color--nonstatus--green--200":"--pf-t--color--green--20","--pf-t--global--dark--color--nonstatus--green--300":"--pf-t--color--green--10","--pf-t--global--dark--color--nonstatus--orange--100":"--pf-t--color--orange--30","--pf-t--global--dark--color--nonstatus--orange--200":"--pf-t--color--orange--20","--pf-t--global--dark--color--nonstatus--orange--300":"--pf-t--color--orange--10","--pf-t--global--dark--color--nonstatus--orangered--100":"--pf-t--color--red-orange--30","--pf-t--global--dark--color--nonstatus--orangered--200":"--pf-t--color--red-orange--20","--pf-t--global--dark--color--nonstatus--orangered--300":"--pf-t--color--red-orange--10","--pf-t--global--dark--color--nonstatus--purple--100":"--pf-t--color--purple--30","--pf-t--global--dark--color--nonstatus--purple--200":"--pf-t--color--purple--20","--pf-t--global--dark--color--nonstatus--purple--300":"--pf-t--color--purple--10","--pf-t--global--dark--color--nonstatus--red--100":"--pf-t--color--red--30","--pf-t--global--dark--color--nonstatus--red--200":"--pf-t--color--red--20","--pf-t--global--dark--color--nonstatus--red--300":"--pf-t--color--red--10","--pf-t--global--dark--color--nonstatus--teal--100":"--pf-t--color--teal--30","--pf-t--global--dark--color--nonstatus--teal--200":"--pf-t--color--teal--20","--pf-t--global--dark--color--nonstatus--teal--300":"--pf-t--color--teal--10","--pf-t--global--dark--color--nonstatus--yellow--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--nonstatus--yellow--200":"--pf-t--color--yellow--20","--pf-t--global--dark--color--nonstatus--yellow--300":"--pf-t--color--yellow--10","--pf-t--global--dark--color--severity--critical--100":"--pf-t--color--red-orange--50","--pf-t--global--dark--color--severity--important--100":"--pf-t--color--orange--40","--pf-t--global--dark--color--severity--minor--100":"--pf-t--color--gray--30","--pf-t--global--dark--color--severity--moderate--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--severity--none--100":"--pf-t--color--blue--30","--pf-t--global--dark--color--severity--undefined--100":"--pf-t--color--gray--40","--pf-t--global--dark--color--status--custom--100":"--pf-t--color--teal--40","--pf-t--global--dark--color--status--custom--200":"--pf-t--color--teal--30","--pf-t--global--dark--color--status--danger--100":"--pf-t--color--red-orange--50","--pf-t--global--dark--color--status--danger--200":"--pf-t--color--red-orange--40","--pf-t--global--dark--color--status--danger--250":"--pf-t--color--red-orange--30","--pf-t--global--dark--color--status--danger--300":"--pf-t--color--red-orange--20","--pf-t--global--dark--color--status--info--100":"--pf-t--color--purple--30","--pf-t--global--dark--color--status--info--200":"--pf-t--color--purple--20","--pf-t--global--dark--color--status--success--100":"--pf-t--color--green--40","--pf-t--global--dark--color--status--success--200":"--pf-t--color--green--30","--pf-t--global--dark--color--status--warning--100":"--pf-t--color--yellow--30","--pf-t--global--dark--color--status--warning--200":"--pf-t--color--yellow--20","--pf-t--global--dark--icon--color--100":"--pf-t--color--gray--10","--pf-t--global--dark--icon--color--200":"--pf-t--color--gray--40","--pf-t--global--dark--icon--color--300":"--pf-t--color--gray--90","--pf-t--global--dark--text--color--100":"--pf-t--color--gray--10","--pf-t--global--dark--text--color--200":"--pf-t--color--gray--30","--pf-t--global--dark--text--color--300":"--pf-t--color--gray--90","--pf-t--global--dark--text--color--400":"--pf-t--color--red-orange--30","--pf-t--global--dark--text--color--link--100":"--pf-t--color--blue--20","--pf-t--global--dark--text--color--link--200":"--pf-t--color--blue--10","--pf-t--global--dark--text--color--link--300":"--pf-t--color--purple--30","--pf-t--chart--global--BorderWidth--lg":"8","--pf-t--chart--global--BorderWidth--sm":"2","--pf-t--chart--global--BorderWidth--xs":"1","--pf-t--chart--global--FontSize--2xl":"22","--pf-t--chart--global--FontSize--lg":"18","--pf-t--chart--global--FontSize--sm":"14","--pf-t--chart--global--FontSize--xs":"12","--pf-t--chart--global--label--margin":"8","--pf-t--chart--global--label--padding":"10","--pf-t--chart--global--label--stroke":"transparent","--pf-t--chart--global--label--text-anchor":"middle","--pf-t--chart--global--layout--height":"300","--pf-t--chart--global--layout--padding":"50","--pf-t--chart--global--layout--width":"450","--pf-t--chart--global--letter-spacing":"normal","--pf-t--chart--global--stroke--width--sm":"2","--pf-t--chart--global--stroke--width--xs":"1","--pf-t--chart--global--stroke-line-cap":"round","--pf-t--chart--global--stroke-line-join":"round","--pf-t--chart--color--black--100":"--pf-t--color--gray--50","--pf-t--chart--color--black--200":"--pf-t--color--gray--40","--pf-t--chart--color--black--300":"--pf-t--color--gray--30","--pf-t--chart--color--black--400":"--pf-t--color--gray--20","--pf-t--chart--color--black--500":"--pf-t--color--gray--10","--pf-t--chart--color--blue--100":"--pf-t--color--blue--50","--pf-t--chart--color--blue--200":"--pf-t--color--blue--40","--pf-t--chart--color--blue--300":"--pf-t--color--blue--30","--pf-t--chart--color--blue--400":"--pf-t--color--blue--20","--pf-t--chart--color--blue--500":"--pf-t--color--blue--10","--pf-t--chart--color--green--100":"--pf-t--color--green--50","--pf-t--chart--color--green--200":"--pf-t--color--green--40","--pf-t--chart--color--green--300":"--pf-t--color--green--30","--pf-t--chart--color--green--400":"--pf-t--color--green--20","--pf-t--chart--color--green--500":"--pf-t--color--green--10","--pf-t--chart--color--orange--100":"--pf-t--color--orange--50","--pf-t--chart--color--orange--200":"--pf-t--color--orange--40","--pf-t--chart--color--orange--300":"--pf-t--color--orange--30","--pf-t--chart--color--orange--400":"--pf-t--color--orange--20","--pf-t--chart--color--orange--500":"--pf-t--color--orange--10","--pf-t--chart--color--purple--100":"--pf-t--color--purple--60","--pf-t--chart--color--purple--200":"--pf-t--color--purple--50","--pf-t--chart--color--purple--300":"--pf-t--color--purple--40","--pf-t--chart--color--purple--400":"--pf-t--color--purple--30","--pf-t--chart--color--purple--500":"--pf-t--color--purple--20","--pf-t--chart--color--red-orange--100":"--pf-t--color--red-orange--50","--pf-t--chart--color--red-orange--200":"--pf-t--color--red-orange--40","--pf-t--chart--color--red-orange--300":"--pf-t--color--red-orange--30","--pf-t--chart--color--red-orange--400":"--pf-t--color--red-orange--20","--pf-t--chart--color--red-orange--500":"--pf-t--color--red-orange--10","--pf-t--chart--color--teal--100":"--pf-t--color--teal--50","--pf-t--chart--color--teal--200":"--pf-t--color--teal--40","--pf-t--chart--color--teal--300":"--pf-t--color--teal--30","--pf-t--chart--color--teal--400":"--pf-t--color--teal--20","--pf-t--chart--color--teal--500":"--pf-t--color--teal--10","--pf-t--chart--color--yellow--100":"--pf-t--color--yellow--50","--pf-t--chart--color--yellow--200":"--pf-t--color--yellow--40","--pf-t--chart--color--yellow--300":"--pf-t--color--yellow--30","--pf-t--chart--color--yellow--400":"--pf-t--color--yellow--20","--pf-t--chart--color--yellow--500":"--pf-t--color--yellow--10","--pf-t--chart--global--danger--color--100":"--pf-t--color--red-orange--50","--pf-t--chart--global--fill--color--100":"--pf-t--color--gray--60","--pf-t--chart--global--fill--color--200":"--pf-t--color--gray--50","--pf-t--chart--global--fill--color--300":"--pf-t--color--gray--40","--pf-t--chart--global--fill--color--400":"--pf-t--color--gray--30","--pf-t--chart--global--fill--color--500":"--pf-t--color--gray--20","--pf-t--chart--global--fill--color--700":"--pf-t--color--gray--10","--pf-t--chart--global--fill--color--900":"--pf-t--color--white","--pf-t--chart--global--fill--color--white":"--pf-t--color--white","--pf-t--chart--global--label--fill":"--pf-t--color--white","--pf-t--chart--global--success--color--100":"--pf-t--color--blue--30","--pf-t--chart--global--warning--color--100":"--pf-t--color--orange--30","--pf-t--chart--global--warning--color--200":"--pf-t--color--yellow--30","--pf-t--chart--theme--colorscales--blue--colorscale--100":"--pf-t--chart--color--blue--300","--pf-t--chart--theme--colorscales--blue--colorscale--200":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--blue--colorscale--300":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--blue--colorscale--400":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--blue--colorscale--500":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--gray--colorscale--100":"--pf-t--chart--color--black--300","--pf-t--chart--theme--colorscales--gray--colorscale--200":"--pf-t--chart--color--black--100","--pf-t--chart--theme--colorscales--gray--colorscale--300":"--pf-t--chart--color--black--500","--pf-t--chart--theme--colorscales--gray--colorscale--400":"--pf-t--chart--color--black--200","--pf-t--chart--theme--colorscales--gray--colorscale--500":"--pf-t--chart--color--black--400","--pf-t--chart--theme--colorscales--green--colorscale--100":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--green--colorscale--200":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--green--colorscale--300":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--green--colorscale--400":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--green--colorscale--500":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--100":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1000":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1100":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1200":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1300":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1400":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1500":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1600":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1700":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1800":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--1900":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--200":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2000":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2100":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2200":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2300":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2400":"--pf-t--chart--color--yellow--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--2500":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--300":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--400":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--500":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--600":"--pf-t--chart--color--blue--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--700":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--800":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--multi-colored-ordered--colorscale--900":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--100":"--pf-t--chart--color--blue--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1000":"--pf-t--chart--color--green--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1100":"--pf-t--chart--color--purple--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1200":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1300":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1400":"--pf-t--chart--color--black--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1500":"--pf-t--chart--color--blue--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1600":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1700":"--pf-t--chart--color--green--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1800":"--pf-t--chart--color--purple--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--1900":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--200":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2000":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2100":"--pf-t--chart--color--black--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2200":"--pf-t--chart--color--blue--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2300":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2400":"--pf-t--chart--color--green--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2500":"--pf-t--chart--color--purple--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2600":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2700":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2800":"--pf-t--chart--color--black--500","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--2900":"--pf-t--chart--color--blue--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--300":"--pf-t--chart--color--green--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3000":"--pf-t--chart--color--yellow--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3100":"--pf-t--chart--color--green--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3200":"--pf-t--chart--color--purple--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3300":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3400":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--3500":"--pf-t--chart--color--black--400","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--400":"--pf-t--chart--color--purple--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--500":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--600":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--700":"--pf-t--chart--color--black--200","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--800":"--pf-t--chart--color--blue--300","--pf-t--chart--theme--colorscales--multi-colored-unordered--colorscale--900":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--orange--colorscale--100":"--pf-t--chart--color--orange--300","--pf-t--chart--theme--colorscales--orange--colorscale--200":"--pf-t--chart--color--orange--100","--pf-t--chart--theme--colorscales--orange--colorscale--300":"--pf-t--chart--color--orange--500","--pf-t--chart--theme--colorscales--orange--colorscale--400":"--pf-t--chart--color--orange--200","--pf-t--chart--theme--colorscales--orange--colorscale--500":"--pf-t--chart--color--orange--400","--pf-t--chart--theme--colorscales--purple--colorscale--100":"--pf-t--chart--color--purple--300","--pf-t--chart--theme--colorscales--purple--colorscale--200":"--pf-t--chart--color--purple--100","--pf-t--chart--theme--colorscales--purple--colorscale--300":"--pf-t--chart--color--purple--500","--pf-t--chart--theme--colorscales--purple--colorscale--400":"--pf-t--chart--color--purple--200","--pf-t--chart--theme--colorscales--purple--colorscale--500":"--pf-t--chart--color--purple--400","--pf-t--chart--theme--colorscales--teal--colorscale--100":"--pf-t--chart--color--teal--300","--pf-t--chart--theme--colorscales--teal--colorscale--200":"--pf-t--chart--color--teal--100","--pf-t--chart--theme--colorscales--teal--colorscale--300":"--pf-t--chart--color--teal--500","--pf-t--chart--theme--colorscales--teal--colorscale--400":"--pf-t--chart--color--teal--200","--pf-t--chart--theme--colorscales--teal--colorscale--500":"--pf-t--chart--color--teal--400","--pf-t--chart--theme--colorscales--yellow--colorscale--100":"--pf-t--chart--color--yellow--300","--pf-t--chart--theme--colorscales--yellow--colorscale--200":"--pf-t--chart--color--yellow--100","--pf-t--chart--theme--colorscales--yellow--colorscale--300":"--pf-t--chart--color--yellow--500","--pf-t--chart--theme--colorscales--yellow--colorscale--400":"--pf-t--chart--color--yellow--200","--pf-t--chart--theme--colorscales--yellow--colorscale--500":"--pf-t--chart--color--yellow--400"} From ea09c5123c635c1dd0bc09504d94023a219c84db Mon Sep 17 00:00:00 2001 From: Evan Date: Thu, 8 Aug 2024 23:17:07 -0400 Subject: [PATCH 15/23] chore(docs): fixed search and categories select --- .../patternfly-docs/content/tokensTable.js | 59 ++++++++++--------- 1 file changed, 30 insertions(+), 29 deletions(-) diff --git a/packages/module/patternfly-docs/content/tokensTable.js b/packages/module/patternfly-docs/content/tokensTable.js index 70c21c1..6d475f5 100644 --- a/packages/module/patternfly-docs/content/tokensTable.js +++ b/packages/module/patternfly-docs/content/tokensTable.js @@ -18,8 +18,6 @@ import './tokensTable.css'; import global_spacer_md from '@patternfly/react-tokens/dist/esm/global_spacer_md'; import LevelUpAltIcon from '@patternfly/react-icons/dist/esm/icons/level-up-alt-icon'; -const isColorRegex = /^(#|rgb)/; - // Used to combine data grouped by theme under each token name const deepMerge = (target, source) => { for (const key in source) { @@ -64,6 +62,23 @@ const showTokenChain = (themeTokenData) => { ); }; +const isSearchMatch = (searchValue, tokenName, tokenData) => { + // match all tokens if no search term + if (searchValue === '') { + return true; + } + // match search term to token name, value, and description + searchValue = searchValue.toLowerCase(); + return ( + tokenName.toLowerCase().includes(searchValue) || + Object.entries(tokenData).some( + ([_themeName, themeData]) => + themeData?.value?.toString().toLowerCase().includes(searchValue) || + themeData?.description?.toLowerCase().includes(searchValue) + ) + ); +}; + export const TokensTable = ({ tokenJson, formatThemeText = capitalize }) => { // parse tokens from json, convert from modules, merge into single allTokens obj const themesArr = Object.keys(tokenJson); @@ -82,27 +97,13 @@ export const TokensTable = ({ tokenJson, formatThemeText = capitalize }) => { // helper funcs const isTokenExpanded = (tokenName) => expandedTokens.includes(tokenName); + const isSelectedCategory = (categoryName) => + selectedCategories.length === 0 || selectedCategories.includes(categoryName); const setExpanded = (tokenName, isExpanding = true) => setExpandedTokens((prevExpanded) => { const otherExpandedTokens = prevExpanded.filter((n) => n !== tokenName); return isExpanding ? [...otherExpandedTokens, tokenName] : otherExpandedTokens; }); - const getIsSearchMatch = (searchValue, tokenName, tokenData) => { - // match all tokens if no search term - if (searchValue === '') { - return true; - } - // match search term to token name, value, and description - searchValue = searchValue.toLowerCase(); - return ( - tokenName.toLowerCase().includes(searchValue) || - Object.entries(tokenData).some( - ([_themeName, themeData]) => - themeData?.value?.toString().toLowerCase().includes(searchValue) || - themeData?.description?.toLowerCase().includes(searchValue) - ) - ); - }; return ( @@ -119,16 +120,21 @@ export const TokensTable = ({ tokenJson, formatThemeText = capitalize }) => { Object.entries(allTokens).map(([layerName, layerDataObj], _rowIndex) => { // save if semantic layer - used for custom styling due to description field const isSemanticLayer = layerName === 'semantic'; - // Create array of all tokens (& nested tokens) in layer [base, chart, palette, semantic] + + // Create array of all tokens/nested tokens in layer, filtered by selectedCategories let layerTokens = []; - if (!['base', 'semantic'].includes(layerName)) { + if (!['base', 'semantic'].includes(layerName) && isSelectedCategory(layerName)) { layerTokens = Object.entries(layerDataObj); } else { // base/semantic combine subcategory tokens into flattened arr for (var subLayer in layerDataObj) { - layerTokens.push(...Object.entries(layerDataObj[subLayer])); + isSelectedCategory(subLayer) && layerTokens.push(...Object.entries(layerDataObj[subLayer])); } } + // finally filter all tokens based on search term + const filteredTokens = layerTokens.filter(([tokenName, tokenData]) => + isSearchMatch(searchValue, tokenName, tokenData) + ); return ( <> @@ -145,13 +151,7 @@ export const TokensTable = ({ tokenJson, formatThemeText = capitalize }) => { {/* Loop through row for each token in current layer */} - {layerTokens.map(([tokenName, tokenData], rowIndex) => { - // Skip token if it doesn't match search - const isSearchMatch = getIsSearchMatch(searchValue, tokenName, tokenData); - if (!isSearchMatch) { - return null; - } - + {filteredTokens.map(([tokenName, tokenData], rowIndex) => { const tokenThemesArr = Object.entries(tokenData); const hasReferences = tokenThemesArr.some(([_themeName, themeToken]) => themeToken.hasOwnProperty('references') @@ -180,7 +180,7 @@ export const TokensTable = ({ tokenJson, formatThemeText = capitalize }) => { {/* Token values for each theme */} {tokenThemesArr.map(([themeName, themeToken]) => { - const isColor = isColorRegex.test(themeToken.value); + const isColor = /^(#|rgb)/.test(themeToken.value); return ( { ); })} + {/* Description - only for semantic tokens */} {isSemanticLayer && {tokenDescription}} From c60c1b8ed00e50031949b5c13160d7a3f3050357 Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 9 Aug 2024 10:01:57 -0400 Subject: [PATCH 16/23] chore(docs): remove unused config files --- packages/module/config.all.dark.json | 20 -------------------- packages/module/config.all.default.json | 19 ------------------- 2 files changed, 39 deletions(-) delete mode 100644 packages/module/config.all.dark.json delete mode 100644 packages/module/config.all.default.json diff --git a/packages/module/config.all.dark.json b/packages/module/config.all.dark.json deleted file mode 100644 index da3d70e..0000000 --- a/packages/module/config.all.dark.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "include": ["tokens/default/*.json"], - "source": ["tokens/dark/*.json"], - "platforms": { - "json/dark": { - "transformGroup": "patternfly/css", - "buildPath": "patternfly-docs/content/", - "prefix": "pf-t", - "files": [ - { - "destination": "all-tokens-dark.json", - "format": "json/flat", - "options": { - "outputReferences": false - } - } - ] - } - } -} diff --git a/packages/module/config.all.default.json b/packages/module/config.all.default.json deleted file mode 100644 index 35ae9d3..0000000 --- a/packages/module/config.all.default.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "source": ["tokens/default/*.json"], - "platforms": { - "json/default": { - "transformGroup": "patternfly/css", - "buildPath": "patternfly-docs/content/", - "prefix": "pf-t", - "files": [ - { - "destination": "all-tokens-default.json", - "format": "json/flat", - "options": { - "outputReferences": false - } - } - ] - } - } -} From 82b2515fd8f40f344f51d6aca4d5ab04d862a293 Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 9 Aug 2024 15:40:02 -0400 Subject: [PATCH 17/23] add toc jumplinks --- packages/module/package.json | 10 +- .../patternfly-docs/content/tokensTable.css | 12 + .../patternfly-docs/content/tokensTable.js | 20 +- .../tokens/all-patternfly-tokens/tokens.js | 1 + yarn.lock | 1604 +++++++++++++---- 5 files changed, 1283 insertions(+), 364 deletions(-) diff --git a/packages/module/package.json b/packages/module/package.json index d033fe4..cbabc2a 100644 --- a/packages/module/package.json +++ b/packages/module/package.json @@ -31,7 +31,7 @@ "access": "public" }, "dependencies": { - "@patternfly/react-core": "^6.0.0-alpha.36", + "@patternfly/react-core": "6.0.0-alpha.94", "commander": "^12.0.0" }, "peerDependencies": { @@ -40,11 +40,11 @@ }, "devDependencies": { "@figma/plugin-typings": "^1.95.0", - "@patternfly/documentation-framework": "6.0.0-alpha.12", - "@patternfly/patternfly": "6.0.0-alpha.91", + "@patternfly/documentation-framework": "^6.0.0-alpha.66", + "@patternfly/patternfly": "6.0.0-alpha.205", "@patternfly/patternfly-a11y": "^4.3.1", - "@patternfly/react-code-editor": "6.0.0-alpha.36", - "@patternfly/react-table": "6.0.0-alpha.36", + "@patternfly/react-code-editor": "6.0.0-alpha.94", + "@patternfly/react-table": "6.0.0-alpha.95", "css-loader": "^7.1.2", "html-inline-script-webpack-plugin": "^3.2.1", "html-webpack-plugin": "^5.6.0", diff --git a/packages/module/patternfly-docs/content/tokensTable.css b/packages/module/patternfly-docs/content/tokensTable.css index d23bde9..ca21d31 100644 --- a/packages/module/patternfly-docs/content/tokensTable.css +++ b/packages/module/patternfly-docs/content/tokensTable.css @@ -6,3 +6,15 @@ border: var(--pf-t--global--border--width--regular) solid var(--pf-t--global--background--color--inverse--default); box-shadow: var(--pf-t--global--box-shadow--sm); } + +.tokens-toc-wrapper { + position: sticky; + z-index: var(--pf-t--global--z-index--sm); + top: 0; +} +.tokens-toc-wrapper .pf-v6-c-jump-links__main { + overflow-x: visible; +} +.tokens-toc-wrapper .pf-v6-c-jump-links__toggle { + padding-inline-start: var(--pf-t--global--spacer--md); +} diff --git a/packages/module/patternfly-docs/content/tokensTable.js b/packages/module/patternfly-docs/content/tokensTable.js index 6d475f5..03d7a8a 100644 --- a/packages/module/patternfly-docs/content/tokensTable.js +++ b/packages/module/patternfly-docs/content/tokensTable.js @@ -1,5 +1,5 @@ -import React, { useMemo } from 'react'; -import { Flex, FlexItem, Grid, GridItem, Title, capitalize } from '@patternfly/react-core'; +import React from 'react'; +import { Flex, FlexItem, Grid, GridItem, JumpLinks, JumpLinksItem, Title, capitalize } from '@patternfly/react-core'; import { Table, Thead, @@ -12,6 +12,7 @@ import { InnerScrollContainer } from '@patternfly/react-table'; import { TokensToolbar } from './tokensToolbar'; +import { TableOfContents } from '@patternfly/documentation-framework/components/tableOfContents/tableOfContents'; import './tokensTable.css'; // eslint-disable-next-line camelcase @@ -104,9 +105,20 @@ export const TokensTable = ({ tokenJson, formatThemeText = capitalize }) => { const otherExpandedTokens = prevExpanded.filter((n) => n !== tokenName); return isExpanding ? [...otherExpandedTokens, tokenName] : otherExpandedTokens; }); + const tocItems = Object.keys(allTokens).reduce((acc, cur) => { + console.log({ acc, cur }); + acc.push({ + id: `${cur}-table`, + text: `${formatThemeText(cur)} tokens` + }); + return acc; + }, []); return ( + + + { return ( <> - {formatThemeText(layerName)} tokens + + {formatThemeText(layerName)} tokens + diff --git a/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js b/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js index bf7d347..47f393d 100644 --- a/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js +++ b/packages/module/patternfly-docs/generated/tokens/all-patternfly-tokens/tokens.js @@ -8,6 +8,7 @@ const pageData = { "section": "tokens", "subsection": "", "deprecated": false, + "template": false, "beta": false, "demo": false, "newImplementationLink": false, diff --git a/yarn.lock b/yarn.lock index 4a78337..b0c5c30 100644 --- a/yarn.lock +++ b/yarn.lock @@ -10,18 +10,39 @@ "@jridgewell/gen-mapping" "^0.1.0" "@jridgewell/trace-mapping" "^0.3.9" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.16.7", "@babel/code-frame@^7.18.6": +"@ampproject/remapping@^2.2.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4" + integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.24" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== dependencies: "@babel/highlight" "^7.18.6" -"@babel/compat-data@^7.17.10", "@babel/compat-data@^7.17.7", "@babel/compat-data@^7.19.4", "@babel/compat-data@^7.20.0": +"@babel/code-frame@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.7.tgz#882fd9e09e8ee324e496bd040401c6f046ef4465" + integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA== + dependencies: + "@babel/highlight" "^7.24.7" + picocolors "^1.0.0" + +"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.19.4", "@babel/compat-data@^7.20.0": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.0.tgz#9b61938c5f688212c7b9ae363a819df7d29d4093" integrity sha512-Gt9jszFJYq7qzXVK4slhc6NzJXnOVmRECWcVjF/T23rNXD9NtWQ0W3qxdg+p9wWIB+VQw3GYV/U2Ha9bRTfs4w== +"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.2": + version "7.25.2" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.25.2.tgz#e41928bd33475305c586f6acbbb7e3ade7a6f7f5" + integrity sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ== + "@babel/core@7.10.5": version "7.10.5" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.5.tgz#1f15e2cca8ad9a1d78a38ddba612f5e7cdbbd330" @@ -44,27 +65,6 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/core@7.18.2": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.2.tgz#87b2fcd7cce9becaa7f5acebdc4f09f3dd19d876" - integrity sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ== - dependencies: - "@ampproject/remapping" "^2.1.0" - "@babel/code-frame" "^7.16.7" - "@babel/generator" "^7.18.2" - "@babel/helper-compilation-targets" "^7.18.2" - "@babel/helper-module-transforms" "^7.18.0" - "@babel/helpers" "^7.18.2" - "@babel/parser" "^7.18.0" - "@babel/template" "^7.16.7" - "@babel/traverse" "^7.18.2" - "@babel/types" "^7.18.2" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.1" - semver "^6.3.0" - "@babel/core@^7.19.6", "@babel/core@^7.7.5": version "7.19.6" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.19.6.tgz#7122ae4f5c5a37c0946c066149abd8e75f81540f" @@ -86,7 +86,28 @@ json5 "^2.2.1" semver "^6.3.0" -"@babel/generator@^7.10.5", "@babel/generator@^7.18.2", "@babel/generator@^7.19.6", "@babel/generator@^7.20.0": +"@babel/core@^7.24.3": + version "7.25.2" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.25.2.tgz#ed8eec275118d7613e77a352894cd12ded8eba77" + integrity sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.24.7" + "@babel/generator" "^7.25.0" + "@babel/helper-compilation-targets" "^7.25.2" + "@babel/helper-module-transforms" "^7.25.2" + "@babel/helpers" "^7.25.0" + "@babel/parser" "^7.25.0" + "@babel/template" "^7.25.0" + "@babel/traverse" "^7.25.2" + "@babel/types" "^7.25.2" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/generator@^7.10.5", "@babel/generator@^7.19.6", "@babel/generator@^7.20.0": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.0.tgz#0bfc5379e0efb05ca6092091261fcdf7ec36249d" integrity sha512-GUPcXxWibClgmYJuIwC2Bc2Lg+8b9VjaJ+HlNdACEVt+Wlr1eoU1OPZjZRm7Hzl0gaTsUZNQfeihvZJhG7oc3w== @@ -95,13 +116,30 @@ "@jridgewell/gen-mapping" "^0.3.2" jsesc "^2.5.1" -"@babel/helper-annotate-as-pure@^7.16.7", "@babel/helper-annotate-as-pure@^7.18.6": +"@babel/generator@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.0.tgz#f858ddfa984350bc3d3b7f125073c9af6988f18e" + integrity sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw== + dependencies: + "@babel/types" "^7.25.0" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + jsesc "^2.5.1" + +"@babel/helper-annotate-as-pure@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== dependencies: "@babel/types" "^7.18.6" +"@babel/helper-annotate-as-pure@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz#5373c7bc8366b12a033b4be1ac13a206c6656aab" + integrity sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg== + dependencies: + "@babel/types" "^7.24.7" + "@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz#acd4edfd7a566d1d51ea975dff38fd52906981bb" @@ -110,7 +148,15 @@ "@babel/helper-explode-assignable-expression" "^7.18.6" "@babel/types" "^7.18.9" -"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.2", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.19.0", "@babel/helper-compilation-targets@^7.19.3": +"@babel/helper-builder-binary-assignment-operator-visitor@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz#37d66feb012024f2422b762b9b2a7cfe27c7fba3" + integrity sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.19.0", "@babel/helper-compilation-targets@^7.19.3": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a" integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ== @@ -120,7 +166,18 @@ browserslist "^4.21.3" semver "^6.3.0" -"@babel/helper-create-class-features-plugin@^7.17.12", "@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.19.0": +"@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.24.7", "@babel/helper-compilation-targets@^7.24.8", "@babel/helper-compilation-targets@^7.25.2": + version "7.25.2" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz#e1d9410a90974a3a5a66e84ff55ef62e3c02d06c" + integrity sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw== + dependencies: + "@babel/compat-data" "^7.25.2" + "@babel/helper-validator-option" "^7.24.8" + browserslist "^4.23.1" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.19.0": version "7.19.0" resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz#bfd6904620df4e46470bae4850d66be1054c404b" integrity sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw== @@ -133,6 +190,19 @@ "@babel/helper-replace-supers" "^7.18.9" "@babel/helper-split-export-declaration" "^7.18.6" +"@babel/helper-create-class-features-plugin@^7.24.7": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.0.tgz#a109bf9c3d58dfed83aaf42e85633c89f43a6253" + integrity sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-member-expression-to-functions" "^7.24.8" + "@babel/helper-optimise-call-expression" "^7.24.7" + "@babel/helper-replace-supers" "^7.25.0" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + "@babel/traverse" "^7.25.0" + semver "^6.3.1" + "@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.19.0": version "7.19.0" resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz#7976aca61c0984202baca73d84e2337a5424a41b" @@ -141,7 +211,16 @@ "@babel/helper-annotate-as-pure" "^7.18.6" regexpu-core "^5.1.0" -"@babel/helper-define-polyfill-provider@^0.3.1", "@babel/helper-define-polyfill-provider@^0.3.2", "@babel/helper-define-polyfill-provider@^0.3.3": +"@babel/helper-create-regexp-features-plugin@^7.24.7", "@babel/helper-create-regexp-features-plugin@^7.25.0": + version "7.25.2" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.2.tgz#24c75974ed74183797ffd5f134169316cd1808d9" + integrity sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + regexpu-core "^5.3.1" + semver "^6.3.1" + +"@babel/helper-define-polyfill-provider@^0.3.3": version "0.3.3" resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz#8612e55be5d51f0cd1f36b4a5a83924e89884b7a" integrity sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww== @@ -153,6 +232,17 @@ resolve "^1.14.2" semver "^6.1.2" +"@babel/helper-define-polyfill-provider@^0.6.2": + version "0.6.2" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz#18594f789c3594acb24cfdb4a7f7b7d2e8bd912d" + integrity sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ== + dependencies: + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-plugin-utils" "^7.22.5" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + "@babel/helper-environment-visitor@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" @@ -187,14 +277,30 @@ dependencies: "@babel/types" "^7.18.9" -"@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.18.6": +"@babel/helper-member-expression-to-functions@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz#6155e079c913357d24a4c20480db7c712a5c3fb6" + integrity sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA== + dependencies: + "@babel/traverse" "^7.24.8" + "@babel/types" "^7.24.8" + +"@babel/helper-module-imports@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== dependencies: "@babel/types" "^7.18.6" -"@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.18.0", "@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.6": +"@babel/helper-module-imports@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz#f2f980392de5b84c3328fc71d38bd81bbb83042b" + integrity sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.6": version "7.19.6" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz#6c52cc3ac63b70952d33ee987cbee1c9368b533f" integrity sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw== @@ -208,6 +314,16 @@ "@babel/traverse" "^7.19.6" "@babel/types" "^7.19.4" +"@babel/helper-module-transforms@^7.24.7", "@babel/helper-module-transforms@^7.24.8", "@babel/helper-module-transforms@^7.25.0", "@babel/helper-module-transforms@^7.25.2": + version "7.25.2" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz#ee713c29768100f2776edf04d4eb23b8d27a66e6" + integrity sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ== + dependencies: + "@babel/helper-module-imports" "^7.24.7" + "@babel/helper-simple-access" "^7.24.7" + "@babel/helper-validator-identifier" "^7.24.7" + "@babel/traverse" "^7.25.2" + "@babel/helper-optimise-call-expression@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe" @@ -215,16 +331,28 @@ dependencies: "@babel/types" "^7.18.6" +"@babel/helper-optimise-call-expression@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz#8b0a0456c92f6b323d27cfd00d1d664e76692a0f" + integrity sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A== + dependencies: + "@babel/types" "^7.24.7" + "@babel/helper-plugin-utils@7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.17.12", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": version "7.19.0" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz#4796bb14961521f0f8715990bee2fb6e51ce21bf" integrity sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw== +"@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.7", "@babel/helper-plugin-utils@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz#94ee67e8ec0e5d44ea7baeb51e571bd26af07878" + integrity sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg== + "@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519" @@ -235,6 +363,15 @@ "@babel/helper-wrap-function" "^7.18.9" "@babel/types" "^7.18.9" +"@babel/helper-remap-async-to-generator@^7.24.7", "@babel/helper-remap-async-to-generator@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.0.tgz#d2f0fbba059a42d68e5e378feaf181ef6055365e" + integrity sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-wrap-function" "^7.25.0" + "@babel/traverse" "^7.25.0" + "@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.18.9": version "7.19.1" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz#e1592a9b4b368aa6bdb8784a711e0bcbf0612b78" @@ -246,6 +383,15 @@ "@babel/traverse" "^7.19.1" "@babel/types" "^7.19.0" +"@babel/helper-replace-supers@^7.24.7", "@babel/helper-replace-supers@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz#ff44deac1c9f619523fe2ca1fd650773792000a9" + integrity sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.24.8" + "@babel/helper-optimise-call-expression" "^7.24.7" + "@babel/traverse" "^7.25.0" + "@babel/helper-simple-access@^7.19.4": version "7.19.4" resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7" @@ -253,6 +399,14 @@ dependencies: "@babel/types" "^7.19.4" +"@babel/helper-simple-access@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz#bcade8da3aec8ed16b9c4953b74e506b51b5edb3" + integrity sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers@^7.18.9": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684" @@ -260,6 +414,14 @@ dependencies: "@babel/types" "^7.20.0" +"@babel/helper-skip-transparent-expression-wrappers@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz#5f8fa83b69ed5c27adc56044f8be2b3ea96669d9" + integrity sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + "@babel/helper-split-export-declaration@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" @@ -272,16 +434,31 @@ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== +"@babel/helper-string-parser@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz#5b3329c9a58803d5df425e5785865881a81ca48d" + integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ== + "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": version "7.19.1" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== -"@babel/helper-validator-option@^7.16.7", "@babel/helper-validator-option@^7.18.6": +"@babel/helper-validator-identifier@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db" + integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w== + +"@babel/helper-validator-option@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== +"@babel/helper-validator-option@^7.24.7", "@babel/helper-validator-option@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz#3725cdeea8b480e86d34df15304806a06975e33d" + integrity sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q== + "@babel/helper-wrap-function@^7.18.9": version "7.19.0" resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz#89f18335cff1152373222f76a4b37799636ae8b1" @@ -292,7 +469,16 @@ "@babel/traverse" "^7.19.0" "@babel/types" "^7.19.0" -"@babel/helpers@^7.10.4", "@babel/helpers@^7.18.2", "@babel/helpers@^7.19.4": +"@babel/helper-wrap-function@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.25.0.tgz#dab12f0f593d6ca48c0062c28bcfb14ebe812f81" + integrity sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ== + dependencies: + "@babel/template" "^7.25.0" + "@babel/traverse" "^7.25.0" + "@babel/types" "^7.25.0" + +"@babel/helpers@^7.10.4", "@babel/helpers@^7.19.4": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.0.tgz#27c8ffa8cc32a2ed3762fba48886e7654dbcf77f" integrity sha512-aGMjYraN0zosCEthoGLdqot1oRsmxVTQRHadsUPz5QM44Zej2PYRz7XiDE7GqnkZnNtLbOuxqoZw42vkU7+XEQ== @@ -301,6 +487,14 @@ "@babel/traverse" "^7.20.0" "@babel/types" "^7.20.0" +"@babel/helpers@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.25.0.tgz#e69beb7841cb93a6505531ede34f34e6a073650a" + integrity sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw== + dependencies: + "@babel/template" "^7.25.0" + "@babel/types" "^7.25.0" + "@babel/highlight@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" @@ -310,19 +504,58 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.10.5", "@babel/parser@^7.18.0", "@babel/parser@^7.18.10", "@babel/parser@^7.19.6", "@babel/parser@^7.20.0": +"@babel/highlight@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d" + integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw== + dependencies: + "@babel/helper-validator-identifier" "^7.24.7" + chalk "^2.4.2" + js-tokens "^4.0.0" + picocolors "^1.0.0" + +"@babel/parser@^7.10.5", "@babel/parser@^7.18.10", "@babel/parser@^7.19.6", "@babel/parser@^7.20.0": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.0.tgz#b26133c888da4d79b0d3edcf42677bcadc783046" integrity sha512-G9VgAhEaICnz8iiJeGJQyVl6J2nTjbW0xeisva0PK6XcKsga7BIaqm4ZF8Rg1Wbaqmy6znspNqhPaPkyukujzg== -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.17.12", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": +"@babel/parser@^7.25.0", "@babel/parser@^7.25.3": + version "7.25.3" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.3.tgz#91fb126768d944966263f0657ab222a642b82065" + integrity sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw== + dependencies: + "@babel/types" "^7.25.2" + +"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.3": + version "7.25.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.3.tgz#dca427b45a6c0f5c095a1c639dfe2476a3daba7f" + integrity sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/traverse" "^7.25.3" + +"@babel/plugin-bugfix-safari-class-field-initializer-scope@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.0.tgz#cd0c583e01369ef51676bdb3d7b603e17d2b3f73" + integrity sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.8" + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2" integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ== dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.17.12", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9": +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.0.tgz#749bde80356b295390954643de7635e0dffabe73" + integrity sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.8" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz#a11af19aa373d68d561f08e0a57242350ed0ec50" integrity sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg== @@ -331,15 +564,22 @@ "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" "@babel/plugin-proposal-optional-chaining" "^7.18.9" -"@babel/plugin-proposal-async-generator-functions@^7.17.12": - version "7.19.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.1.tgz#34f6f5174b688529342288cd264f80c9ea9fb4a7" - integrity sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q== +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz#e4eabdd5109acc399b38d7999b2ef66fc2022f89" + integrity sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ== dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-plugin-utils" "^7.19.0" - "@babel/helper-remap-async-to-generator" "^7.18.9" - "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + "@babel/plugin-transform-optional-chaining" "^7.24.7" + +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.0.tgz#3a82a70e7cb7294ad2559465ebcb871dfbf078fb" + integrity sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/traverse" "^7.25.0" "@babel/plugin-proposal-async-generator-functions@^7.19.1": version "7.20.1" @@ -351,15 +591,7 @@ "@babel/helper-remap-async-to-generator" "^7.18.9" "@babel/plugin-syntax-async-generators" "^7.8.4" -"@babel/plugin-proposal-class-properties@7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.17.12.tgz#84f65c0cc247d46f40a6da99aadd6438315d80a4" - integrity sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.17.12" - "@babel/helper-plugin-utils" "^7.17.12" - -"@babel/plugin-proposal-class-properties@^7.17.12", "@babel/plugin-proposal-class-properties@^7.18.6": +"@babel/plugin-proposal-class-properties@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== @@ -367,7 +599,7 @@ "@babel/helper-create-class-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-proposal-class-static-block@^7.18.0", "@babel/plugin-proposal-class-static-block@^7.18.6": +"@babel/plugin-proposal-class-static-block@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz#8aa81d403ab72d3962fc06c26e222dacfc9b9020" integrity sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw== @@ -376,7 +608,7 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-class-static-block" "^7.14.5" -"@babel/plugin-proposal-dynamic-import@^7.16.7", "@babel/plugin-proposal-dynamic-import@^7.18.6": +"@babel/plugin-proposal-dynamic-import@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz#72bcf8d408799f547d759298c3c27c7e7faa4d94" integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw== @@ -384,7 +616,7 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-dynamic-import" "^7.8.3" -"@babel/plugin-proposal-export-namespace-from@^7.17.12", "@babel/plugin-proposal-export-namespace-from@^7.18.9": +"@babel/plugin-proposal-export-namespace-from@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203" integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA== @@ -392,7 +624,7 @@ "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" -"@babel/plugin-proposal-json-strings@^7.17.12", "@babel/plugin-proposal-json-strings@^7.18.6": +"@babel/plugin-proposal-json-strings@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz#7e8788c1811c393aff762817e7dbf1ebd0c05f0b" integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ== @@ -400,7 +632,7 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-json-strings" "^7.8.3" -"@babel/plugin-proposal-logical-assignment-operators@^7.17.12", "@babel/plugin-proposal-logical-assignment-operators@^7.18.9": +"@babel/plugin-proposal-logical-assignment-operators@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz#8148cbb350483bf6220af06fa6db3690e14b2e23" integrity sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q== @@ -408,7 +640,7 @@ "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" -"@babel/plugin-proposal-nullish-coalescing-operator@^7.17.12", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6": +"@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== @@ -416,7 +648,7 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@babel/plugin-proposal-numeric-separator@^7.16.7", "@babel/plugin-proposal-numeric-separator@^7.18.6": +"@babel/plugin-proposal-numeric-separator@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75" integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== @@ -433,7 +665,7 @@ "@babel/plugin-syntax-object-rest-spread" "^7.8.0" "@babel/plugin-transform-parameters" "^7.10.4" -"@babel/plugin-proposal-object-rest-spread@^7.18.0", "@babel/plugin-proposal-object-rest-spread@^7.19.4": +"@babel/plugin-proposal-object-rest-spread@^7.19.4": version "7.19.4" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.19.4.tgz#a8fc86e8180ff57290c91a75d83fe658189b642d" integrity sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q== @@ -444,7 +676,7 @@ "@babel/plugin-syntax-object-rest-spread" "^7.8.3" "@babel/plugin-transform-parameters" "^7.18.8" -"@babel/plugin-proposal-optional-catch-binding@^7.16.7", "@babel/plugin-proposal-optional-catch-binding@^7.18.6": +"@babel/plugin-proposal-optional-catch-binding@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb" integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== @@ -452,7 +684,7 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-proposal-optional-chaining@^7.17.12", "@babel/plugin-proposal-optional-chaining@^7.18.9": +"@babel/plugin-proposal-optional-chaining@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz#e8e8fe0723f2563960e4bf5e9690933691915993" integrity sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w== @@ -461,15 +693,7 @@ "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" "@babel/plugin-syntax-optional-chaining" "^7.8.3" -"@babel/plugin-proposal-private-methods@7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.17.12.tgz#c2ca3a80beb7539289938da005ad525a038a819c" - integrity sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.17.12" - "@babel/helper-plugin-utils" "^7.17.12" - -"@babel/plugin-proposal-private-methods@^7.17.12", "@babel/plugin-proposal-private-methods@^7.18.6": +"@babel/plugin-proposal-private-methods@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea" integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== @@ -477,17 +701,12 @@ "@babel/helper-create-class-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-proposal-private-property-in-object@7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.17.12.tgz#b02efb7f106d544667d91ae97405a9fd8c93952d" - integrity sha512-/6BtVi57CJfrtDNKfK5b66ydK2J5pXUKBKSPD2G1whamMuEnZWgoOIfO8Vf9F/DoD4izBLD/Au4NMQfruzzykg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - "@babel/helper-create-class-features-plugin" "^7.17.12" - "@babel/helper-plugin-utils" "^7.17.12" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" +"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": + version "7.21.0-placeholder-for-preset-env.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" + integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== -"@babel/plugin-proposal-private-property-in-object@^7.17.12", "@babel/plugin-proposal-private-property-in-object@^7.18.6": +"@babel/plugin-proposal-private-property-in-object@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz#a64137b232f0aca3733a67eb1a144c192389c503" integrity sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw== @@ -497,7 +716,7 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" -"@babel/plugin-proposal-unicode-property-regex@^7.17.12", "@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": +"@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e" integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== @@ -547,13 +766,34 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-syntax-import-assertions@^7.17.12", "@babel/plugin-syntax-import-assertions@^7.18.6": +"@babel/plugin-syntax-import-assertions@^7.18.6": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz#bb50e0d4bea0957235390641209394e87bdb9cc4" integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ== dependencies: "@babel/helper-plugin-utils" "^7.19.0" +"@babel/plugin-syntax-import-assertions@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz#2a0b406b5871a20a841240586b1300ce2088a778" + integrity sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-syntax-import-attributes@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz#b4f9ea95a79e6912480c4b626739f86a076624ca" + integrity sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-syntax-import-meta@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-json-strings@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" @@ -568,13 +808,20 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-jsx@^7.17.12", "@babel/plugin-syntax-jsx@^7.18.6": +"@babel/plugin-syntax-jsx@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0" integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q== dependencies: "@babel/helper-plugin-utils" "^7.18.6" +"@babel/plugin-syntax-jsx@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz#39a1fa4a7e3d3d7f34e2acc6be585b718d30e02d" + integrity sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" @@ -638,14 +885,39 @@ dependencies: "@babel/helper-plugin-utils" "^7.19.0" -"@babel/plugin-transform-arrow-functions@^7.17.12", "@babel/plugin-transform-arrow-functions@^7.18.6": +"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" + integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-arrow-functions@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz#19063fcf8771ec7b31d742339dac62433d0611fe" integrity sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ== dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-async-to-generator@^7.17.12", "@babel/plugin-transform-async-to-generator@^7.18.6": +"@babel/plugin-transform-arrow-functions@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz#4f6886c11e423bd69f3ce51dbf42424a5f275514" + integrity sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-async-generator-functions@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.0.tgz#b785cf35d73437f6276b1e30439a57a50747bddf" + integrity sha512-uaIi2FdqzjpAMvVqvB51S42oC2JEVgh0LDsGfZVDysWE8LrJtQC2jvKmOqEYThKyB7bDEb7BP1GYWDm7tABA0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-remap-async-to-generator" "^7.25.0" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/traverse" "^7.25.0" + +"@babel/plugin-transform-async-to-generator@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz#ccda3d1ab9d5ced5265fdb13f1882d5476c71615" integrity sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag== @@ -654,21 +926,61 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/helper-remap-async-to-generator" "^7.18.6" -"@babel/plugin-transform-block-scoped-functions@^7.16.7", "@babel/plugin-transform-block-scoped-functions@^7.18.6": +"@babel/plugin-transform-async-to-generator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz#72a3af6c451d575842a7e9b5a02863414355bdcc" + integrity sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA== + dependencies: + "@babel/helper-module-imports" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-remap-async-to-generator" "^7.24.7" + +"@babel/plugin-transform-block-scoped-functions@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8" integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ== dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-block-scoping@^7.17.12", "@babel/plugin-transform-block-scoping@^7.19.4": +"@babel/plugin-transform-block-scoped-functions@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz#a4251d98ea0c0f399dafe1a35801eaba455bbf1f" + integrity sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-block-scoping@^7.19.4": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.0.tgz#91fe5e6ffc9ba13cb6c95ed7f0b1204f68c988c5" integrity sha512-sXOohbpHZSk7GjxK9b3dKB7CfqUD5DwOH+DggKzOQ7TXYP+RCSbRykfjQmn/zq+rBjycVRtLf9pYhAaEJA786w== dependencies: "@babel/helper-plugin-utils" "^7.19.0" -"@babel/plugin-transform-classes@^7.17.12", "@babel/plugin-transform-classes@^7.19.0": +"@babel/plugin-transform-block-scoping@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.0.tgz#23a6ed92e6b006d26b1869b1c91d1b917c2ea2ac" + integrity sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.8" + +"@babel/plugin-transform-class-properties@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz#256879467b57b0b68c7ddfc5b76584f398cd6834" + integrity sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-class-static-block@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz#c82027ebb7010bc33c116d4b5044fbbf8c05484d" + integrity sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-transform-classes@^7.19.0": version "7.19.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz#0e61ec257fba409c41372175e7c1e606dc79bb20" integrity sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A== @@ -683,21 +995,48 @@ "@babel/helper-split-export-declaration" "^7.18.6" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.17.12", "@babel/plugin-transform-computed-properties@^7.18.9": +"@babel/plugin-transform-classes@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.0.tgz#63122366527d88e0ef61b612554fe3f8c793991e" + integrity sha512-xyi6qjr/fYU304fiRwFbekzkqVJZ6A7hOjWZd+89FVcBqPV3S9Wuozz82xdpLspckeaafntbzglaW4pqpzvtSw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-compilation-targets" "^7.24.8" + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-replace-supers" "^7.25.0" + "@babel/traverse" "^7.25.0" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz#2357a8224d402dad623caf6259b611e56aec746e" integrity sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw== dependencies: "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-destructuring@^7.18.0", "@babel/plugin-transform-destructuring@^7.19.4": +"@babel/plugin-transform-computed-properties@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz#4cab3214e80bc71fae3853238d13d097b004c707" + integrity sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/template" "^7.24.7" + +"@babel/plugin-transform-destructuring@^7.19.4": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.0.tgz#712829ef4825d9cc04bb379de316f981e9a6f648" integrity sha512-1dIhvZfkDVx/zn2S1aFwlruspTt4189j7fEkH0Y0VyuDM6bQt7bD6kLcz3l4IlLG+e5OReaBz9ROAbttRtUHqA== dependencies: "@babel/helper-plugin-utils" "^7.19.0" -"@babel/plugin-transform-dotall-regex@^7.16.7", "@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": +"@babel/plugin-transform-destructuring@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz#c828e814dbe42a2718a838c2a2e16a408e055550" + integrity sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.8" + +"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz#b286b3e7aae6c7b861e45bed0a2fafd6b1a4fef8" integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== @@ -705,14 +1044,45 @@ "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-duplicate-keys@^7.17.12", "@babel/plugin-transform-duplicate-keys@^7.18.9": +"@babel/plugin-transform-dotall-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz#5f8bf8a680f2116a7207e16288a5f974ad47a7a0" + integrity sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-duplicate-keys@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz#687f15ee3cdad6d85191eb2a372c4528eaa0ae0e" integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw== dependencies: "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-exponentiation-operator@^7.16.7", "@babel/plugin-transform-exponentiation-operator@^7.18.6": +"@babel/plugin-transform-duplicate-keys@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz#dd20102897c9a2324e5adfffb67ff3610359a8ee" + integrity sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.0.tgz#809af7e3339466b49c034c683964ee8afb3e2604" + integrity sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.25.0" + "@babel/helper-plugin-utils" "^7.24.8" + +"@babel/plugin-transform-dynamic-import@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz#4d8b95e3bae2b037673091aa09cd33fecd6419f4" + integrity sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-transform-exponentiation-operator@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd" integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw== @@ -720,6 +1090,22 @@ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" +"@babel/plugin-transform-exponentiation-operator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz#b629ee22645f412024297d5245bce425c31f9b0d" + integrity sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-export-namespace-from@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz#176d52d8d8ed516aeae7013ee9556d540c53f197" + integrity sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-transform-flow-strip-types@^7.18.6": version "7.19.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz#e9e8606633287488216028719638cbbb2f2dde8f" @@ -728,14 +1114,22 @@ "@babel/helper-plugin-utils" "^7.19.0" "@babel/plugin-syntax-flow" "^7.18.6" -"@babel/plugin-transform-for-of@^7.18.1", "@babel/plugin-transform-for-of@^7.18.8": +"@babel/plugin-transform-for-of@^7.18.8": version "7.18.8" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz#6ef8a50b244eb6a0bdbad0c7c61877e4e30097c1" integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ== dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-function-name@^7.16.7", "@babel/plugin-transform-function-name@^7.18.9": +"@babel/plugin-transform-for-of@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz#f25b33f72df1d8be76399e1b8f3f9d366eb5bc70" + integrity sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + +"@babel/plugin-transform-function-name@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0" integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ== @@ -744,21 +1138,60 @@ "@babel/helper-function-name" "^7.18.9" "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-literals@^7.17.12", "@babel/plugin-transform-literals@^7.18.9": +"@babel/plugin-transform-function-name@^7.25.1": + version "7.25.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.1.tgz#b85e773097526c1a4fc4ba27322748643f26fc37" + integrity sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA== + dependencies: + "@babel/helper-compilation-targets" "^7.24.8" + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/traverse" "^7.25.1" + +"@babel/plugin-transform-json-strings@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz#f3e9c37c0a373fee86e36880d45b3664cedaf73a" + integrity sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-transform-literals@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc" integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg== dependencies: "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-member-expression-literals@^7.16.7", "@babel/plugin-transform-member-expression-literals@^7.18.6": +"@babel/plugin-transform-literals@^7.25.2": + version "7.25.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.2.tgz#deb1ad14fc5490b9a65ed830e025bca849d8b5f3" + integrity sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.8" + +"@babel/plugin-transform-logical-assignment-operators@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz#a58fb6eda16c9dc8f9ff1c7b1ba6deb7f4694cb0" + integrity sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-transform-member-expression-literals@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e" integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA== dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-modules-amd@^7.18.0", "@babel/plugin-transform-modules-amd@^7.18.6": +"@babel/plugin-transform-member-expression-literals@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz#3b4454fb0e302e18ba4945ba3246acb1248315df" + integrity sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-modules-amd@^7.18.6": version "7.19.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz#aca391801ae55d19c4d8d2ebfeaa33df5f2a2cbd" integrity sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg== @@ -766,7 +1199,15 @@ "@babel/helper-module-transforms" "^7.19.6" "@babel/helper-plugin-utils" "^7.19.0" -"@babel/plugin-transform-modules-commonjs@^7.18.2", "@babel/plugin-transform-modules-commonjs@^7.18.6": +"@babel/plugin-transform-modules-amd@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz#65090ed493c4a834976a3ca1cde776e6ccff32d7" + integrity sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg== + dependencies: + "@babel/helper-module-transforms" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-modules-commonjs@^7.18.6": version "7.19.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz#25b32feef24df8038fc1ec56038917eacb0b730c" integrity sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ== @@ -775,7 +1216,16 @@ "@babel/helper-plugin-utils" "^7.19.0" "@babel/helper-simple-access" "^7.19.4" -"@babel/plugin-transform-modules-systemjs@^7.18.0", "@babel/plugin-transform-modules-systemjs@^7.19.0": +"@babel/plugin-transform-modules-commonjs@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz#ab6421e564b717cb475d6fff70ae7f103536ea3c" + integrity sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA== + dependencies: + "@babel/helper-module-transforms" "^7.24.8" + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-simple-access" "^7.24.7" + +"@babel/plugin-transform-modules-systemjs@^7.19.0": version "7.19.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz#59e2a84064b5736a4471b1aa7b13d4431d327e0d" integrity sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ== @@ -785,7 +1235,17 @@ "@babel/helper-plugin-utils" "^7.19.0" "@babel/helper-validator-identifier" "^7.19.1" -"@babel/plugin-transform-modules-umd@^7.18.0", "@babel/plugin-transform-modules-umd@^7.18.6": +"@babel/plugin-transform-modules-systemjs@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.0.tgz#8f46cdc5f9e5af74f3bd019485a6cbe59685ea33" + integrity sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw== + dependencies: + "@babel/helper-module-transforms" "^7.25.0" + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-validator-identifier" "^7.24.7" + "@babel/traverse" "^7.25.0" + +"@babel/plugin-transform-modules-umd@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz#81d3832d6034b75b54e62821ba58f28ed0aab4b9" integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ== @@ -793,7 +1253,15 @@ "@babel/helper-module-transforms" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-named-capturing-groups-regex@^7.17.12", "@babel/plugin-transform-named-capturing-groups-regex@^7.19.1": +"@babel/plugin-transform-modules-umd@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz#edd9f43ec549099620df7df24e7ba13b5c76efc8" + integrity sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A== + dependencies: + "@babel/helper-module-transforms" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.19.1": version "7.19.1" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz#ec7455bab6cd8fb05c525a94876f435a48128888" integrity sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw== @@ -801,14 +1269,55 @@ "@babel/helper-create-regexp-features-plugin" "^7.19.0" "@babel/helper-plugin-utils" "^7.19.0" -"@babel/plugin-transform-new-target@^7.17.12", "@babel/plugin-transform-new-target@^7.18.6": +"@babel/plugin-transform-named-capturing-groups-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz#9042e9b856bc6b3688c0c2e4060e9e10b1460923" + integrity sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-new-target@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz#d128f376ae200477f37c4ddfcc722a8a1b3246a8" integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw== dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-object-super@^7.16.7", "@babel/plugin-transform-object-super@^7.18.6": +"@babel/plugin-transform-new-target@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz#31ff54c4e0555cc549d5816e4ab39241dfb6ab00" + integrity sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-nullish-coalescing-operator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz#1de4534c590af9596f53d67f52a92f12db984120" + integrity sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-transform-numeric-separator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz#bea62b538c80605d8a0fac9b40f48e97efa7de63" + integrity sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-transform-object-rest-spread@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz#d13a2b93435aeb8a197e115221cab266ba6e55d6" + integrity sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q== + dependencies: + "@babel/helper-compilation-targets" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.24.7" + +"@babel/plugin-transform-object-super@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c" integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA== @@ -816,20 +1325,77 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/helper-replace-supers" "^7.18.6" -"@babel/plugin-transform-parameters@^7.10.4", "@babel/plugin-transform-parameters@^7.17.12", "@babel/plugin-transform-parameters@^7.18.8": +"@babel/plugin-transform-object-super@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz#66eeaff7830bba945dd8989b632a40c04ed625be" + integrity sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-replace-supers" "^7.24.7" + +"@babel/plugin-transform-optional-catch-binding@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz#00eabd883d0dd6a60c1c557548785919b6e717b4" + integrity sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-transform-optional-chaining@^7.24.7", "@babel/plugin-transform-optional-chaining@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz#bb02a67b60ff0406085c13d104c99a835cdf365d" + integrity sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-transform-parameters@^7.10.4", "@babel/plugin-transform-parameters@^7.18.8": version "7.18.8" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz#ee9f1a0ce6d78af58d0956a9378ea3427cccb48a" integrity sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg== dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-property-literals@^7.16.7", "@babel/plugin-transform-property-literals@^7.18.6": +"@babel/plugin-transform-parameters@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz#5881f0ae21018400e320fc7eb817e529d1254b68" + integrity sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-private-methods@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz#e6318746b2ae70a59d023d5cc1344a2ba7a75f5e" + integrity sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-private-property-in-object@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz#4eec6bc701288c1fab5f72e6a4bbc9d67faca061" + integrity sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-create-class-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-transform-property-literals@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3" integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg== dependencies: "@babel/helper-plugin-utils" "^7.18.6" +"@babel/plugin-transform-property-literals@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz#f0d2ed8380dfbed949c42d4d790266525d63bbdc" + integrity sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-transform-react-display-name@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz#8b1125f919ef36ebdfff061d664e266c666b9415" @@ -837,6 +1403,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.6" +"@babel/plugin-transform-react-display-name@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.7.tgz#9caff79836803bc666bcfe210aeb6626230c293b" + integrity sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-transform-react-jsx-development@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz#dbe5c972811e49c7405b630e4d0d2e1380c0ddc5" @@ -844,16 +1417,12 @@ dependencies: "@babel/plugin-transform-react-jsx" "^7.18.6" -"@babel/plugin-transform-react-jsx@7.17.12": - version "7.17.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.17.12.tgz#2aa20022709cd6a3f40b45d60603d5f269586dba" - integrity sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ== +"@babel/plugin-transform-react-jsx-development@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.24.7.tgz#eaee12f15a93f6496d852509a850085e6361470b" + integrity sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ== dependencies: - "@babel/helper-annotate-as-pure" "^7.16.7" - "@babel/helper-module-imports" "^7.16.7" - "@babel/helper-plugin-utils" "^7.17.12" - "@babel/plugin-syntax-jsx" "^7.17.12" - "@babel/types" "^7.17.12" + "@babel/plugin-transform-react-jsx" "^7.24.7" "@babel/plugin-transform-react-jsx@^7.18.6": version "7.19.0" @@ -866,6 +1435,17 @@ "@babel/plugin-syntax-jsx" "^7.18.6" "@babel/types" "^7.19.0" +"@babel/plugin-transform-react-jsx@^7.24.7": + version "7.25.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.2.tgz#e37e8ebfa77e9f0b16ba07fadcb6adb47412227a" + integrity sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-module-imports" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/plugin-syntax-jsx" "^7.24.7" + "@babel/types" "^7.25.2" + "@babel/plugin-transform-react-pure-annotations@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz#561af267f19f3e5d59291f9950fd7b9663d0d844" @@ -874,7 +1454,15 @@ "@babel/helper-annotate-as-pure" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-regenerator@^7.18.0", "@babel/plugin-transform-regenerator@^7.18.6": +"@babel/plugin-transform-react-pure-annotations@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.7.tgz#bdd9d140d1c318b4f28b29a00fb94f97ecab1595" + integrity sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-regenerator@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz#585c66cb84d4b4bf72519a34cfce761b8676ca73" integrity sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ== @@ -882,21 +1470,43 @@ "@babel/helper-plugin-utils" "^7.18.6" regenerator-transform "^0.15.0" -"@babel/plugin-transform-reserved-words@^7.17.12", "@babel/plugin-transform-reserved-words@^7.18.6": +"@babel/plugin-transform-regenerator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz#021562de4534d8b4b1851759fd7af4e05d2c47f8" + integrity sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + regenerator-transform "^0.15.2" + +"@babel/plugin-transform-reserved-words@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz#b1abd8ebf8edaa5f7fe6bbb8d2133d23b6a6f76a" integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA== dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-shorthand-properties@^7.16.7", "@babel/plugin-transform-shorthand-properties@^7.18.6": +"@babel/plugin-transform-reserved-words@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz#80037fe4fbf031fc1125022178ff3938bb3743a4" + integrity sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-shorthand-properties@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9" integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw== dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-spread@^7.17.12", "@babel/plugin-transform-spread@^7.19.0": +"@babel/plugin-transform-shorthand-properties@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz#85448c6b996e122fa9e289746140aaa99da64e73" + integrity sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-spread@^7.19.0": version "7.19.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz#dd60b4620c2fec806d60cfaae364ec2188d593b6" integrity sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w== @@ -904,27 +1514,56 @@ "@babel/helper-plugin-utils" "^7.19.0" "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" -"@babel/plugin-transform-sticky-regex@^7.16.7", "@babel/plugin-transform-sticky-regex@^7.18.6": +"@babel/plugin-transform-spread@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz#e8a38c0fde7882e0fb8f160378f74bd885cc7bb3" + integrity sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + +"@babel/plugin-transform-sticky-regex@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz#c6706eb2b1524028e317720339583ad0f444adcc" integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q== dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-template-literals@^7.18.2", "@babel/plugin-transform-template-literals@^7.18.9": +"@babel/plugin-transform-sticky-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz#96ae80d7a7e5251f657b5cf18f1ea6bf926f5feb" + integrity sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-template-literals@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e" integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA== dependencies: "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-typeof-symbol@^7.17.12", "@babel/plugin-transform-typeof-symbol@^7.18.9": +"@babel/plugin-transform-template-literals@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz#a05debb4a9072ae8f985bcf77f3f215434c8f8c8" + integrity sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-typeof-symbol@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz#c8cea68263e45addcd6afc9091429f80925762c0" integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw== dependencies: "@babel/helper-plugin-utils" "^7.18.9" +"@babel/plugin-transform-typeof-symbol@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz#383dab37fb073f5bfe6e60c654caac309f92ba1c" + integrity sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/plugin-transform-typescript@^7.18.6": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.0.tgz#2c7ec62b8bfc21482f3748789ba294a46a375169" @@ -934,14 +1573,29 @@ "@babel/helper-plugin-utils" "^7.19.0" "@babel/plugin-syntax-typescript" "^7.20.0" -"@babel/plugin-transform-unicode-escapes@^7.16.7", "@babel/plugin-transform-unicode-escapes@^7.18.10": +"@babel/plugin-transform-unicode-escapes@^7.18.10": version "7.18.10" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz#1ecfb0eda83d09bbcb77c09970c2dd55832aa246" integrity sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ== dependencies: "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-unicode-regex@^7.16.7", "@babel/plugin-transform-unicode-regex@^7.18.6": +"@babel/plugin-transform-unicode-escapes@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz#2023a82ced1fb4971630a2e079764502c4148e0e" + integrity sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-unicode-property-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz#9073a4cd13b86ea71c3264659590ac086605bbcd" + integrity sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-unicode-regex@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz#194317225d8c201bbae103364ffe9e2cea36cdca" integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA== @@ -949,86 +1603,21 @@ "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/preset-env@7.18.2": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.18.2.tgz#f47d3000a098617926e674c945d95a28cb90977a" - integrity sha512-PfpdxotV6afmXMU47S08F9ZKIm2bJIQ0YbAAtDfIENX7G1NUAXigLREh69CWDjtgUy7dYn7bsMzkgdtAlmS68Q== - dependencies: - "@babel/compat-data" "^7.17.10" - "@babel/helper-compilation-targets" "^7.18.2" - "@babel/helper-plugin-utils" "^7.17.12" - "@babel/helper-validator-option" "^7.16.7" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.17.12" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.17.12" - "@babel/plugin-proposal-async-generator-functions" "^7.17.12" - "@babel/plugin-proposal-class-properties" "^7.17.12" - "@babel/plugin-proposal-class-static-block" "^7.18.0" - "@babel/plugin-proposal-dynamic-import" "^7.16.7" - "@babel/plugin-proposal-export-namespace-from" "^7.17.12" - "@babel/plugin-proposal-json-strings" "^7.17.12" - "@babel/plugin-proposal-logical-assignment-operators" "^7.17.12" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.17.12" - "@babel/plugin-proposal-numeric-separator" "^7.16.7" - "@babel/plugin-proposal-object-rest-spread" "^7.18.0" - "@babel/plugin-proposal-optional-catch-binding" "^7.16.7" - "@babel/plugin-proposal-optional-chaining" "^7.17.12" - "@babel/plugin-proposal-private-methods" "^7.17.12" - "@babel/plugin-proposal-private-property-in-object" "^7.17.12" - "@babel/plugin-proposal-unicode-property-regex" "^7.17.12" - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-class-properties" "^7.12.13" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.17.12" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - "@babel/plugin-syntax-top-level-await" "^7.14.5" - "@babel/plugin-transform-arrow-functions" "^7.17.12" - "@babel/plugin-transform-async-to-generator" "^7.17.12" - "@babel/plugin-transform-block-scoped-functions" "^7.16.7" - "@babel/plugin-transform-block-scoping" "^7.17.12" - "@babel/plugin-transform-classes" "^7.17.12" - "@babel/plugin-transform-computed-properties" "^7.17.12" - "@babel/plugin-transform-destructuring" "^7.18.0" - "@babel/plugin-transform-dotall-regex" "^7.16.7" - "@babel/plugin-transform-duplicate-keys" "^7.17.12" - "@babel/plugin-transform-exponentiation-operator" "^7.16.7" - "@babel/plugin-transform-for-of" "^7.18.1" - "@babel/plugin-transform-function-name" "^7.16.7" - "@babel/plugin-transform-literals" "^7.17.12" - "@babel/plugin-transform-member-expression-literals" "^7.16.7" - "@babel/plugin-transform-modules-amd" "^7.18.0" - "@babel/plugin-transform-modules-commonjs" "^7.18.2" - "@babel/plugin-transform-modules-systemjs" "^7.18.0" - "@babel/plugin-transform-modules-umd" "^7.18.0" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.17.12" - "@babel/plugin-transform-new-target" "^7.17.12" - "@babel/plugin-transform-object-super" "^7.16.7" - "@babel/plugin-transform-parameters" "^7.17.12" - "@babel/plugin-transform-property-literals" "^7.16.7" - "@babel/plugin-transform-regenerator" "^7.18.0" - "@babel/plugin-transform-reserved-words" "^7.17.12" - "@babel/plugin-transform-shorthand-properties" "^7.16.7" - "@babel/plugin-transform-spread" "^7.17.12" - "@babel/plugin-transform-sticky-regex" "^7.16.7" - "@babel/plugin-transform-template-literals" "^7.18.2" - "@babel/plugin-transform-typeof-symbol" "^7.17.12" - "@babel/plugin-transform-unicode-escapes" "^7.16.7" - "@babel/plugin-transform-unicode-regex" "^7.16.7" - "@babel/preset-modules" "^0.1.5" - "@babel/types" "^7.18.2" - babel-plugin-polyfill-corejs2 "^0.3.0" - babel-plugin-polyfill-corejs3 "^0.5.0" - babel-plugin-polyfill-regenerator "^0.3.0" - core-js-compat "^3.22.1" - semver "^6.3.0" +"@babel/plugin-transform-unicode-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz#dfc3d4a51127108099b19817c0963be6a2adf19f" + integrity sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-unicode-sets-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz#d40705d67523803a576e29c63cef6e516b858ed9" + integrity sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" "@babel/preset-env@^7.19.4": version "7.19.4" @@ -1111,6 +1700,95 @@ core-js-compat "^3.25.1" semver "^6.3.0" +"@babel/preset-env@^7.24.3": + version "7.25.3" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.25.3.tgz#0bf4769d84ac51d1073ab4a86f00f30a3a83c67c" + integrity sha512-QsYW7UeAaXvLPX9tdVliMJE7MD7M6MLYVTovRTIwhoYQVFHR1rM4wO8wqAezYi3/BpSD+NzVCZ69R6smWiIi8g== + dependencies: + "@babel/compat-data" "^7.25.2" + "@babel/helper-compilation-targets" "^7.25.2" + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-validator-option" "^7.24.8" + "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.25.3" + "@babel/plugin-bugfix-safari-class-field-initializer-scope" "^7.25.0" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.25.0" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.24.7" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.25.0" + "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.24.7" + "@babel/plugin-syntax-import-attributes" "^7.24.7" + "@babel/plugin-syntax-import-meta" "^7.10.4" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" + "@babel/plugin-transform-arrow-functions" "^7.24.7" + "@babel/plugin-transform-async-generator-functions" "^7.25.0" + "@babel/plugin-transform-async-to-generator" "^7.24.7" + "@babel/plugin-transform-block-scoped-functions" "^7.24.7" + "@babel/plugin-transform-block-scoping" "^7.25.0" + "@babel/plugin-transform-class-properties" "^7.24.7" + "@babel/plugin-transform-class-static-block" "^7.24.7" + "@babel/plugin-transform-classes" "^7.25.0" + "@babel/plugin-transform-computed-properties" "^7.24.7" + "@babel/plugin-transform-destructuring" "^7.24.8" + "@babel/plugin-transform-dotall-regex" "^7.24.7" + "@babel/plugin-transform-duplicate-keys" "^7.24.7" + "@babel/plugin-transform-duplicate-named-capturing-groups-regex" "^7.25.0" + "@babel/plugin-transform-dynamic-import" "^7.24.7" + "@babel/plugin-transform-exponentiation-operator" "^7.24.7" + "@babel/plugin-transform-export-namespace-from" "^7.24.7" + "@babel/plugin-transform-for-of" "^7.24.7" + "@babel/plugin-transform-function-name" "^7.25.1" + "@babel/plugin-transform-json-strings" "^7.24.7" + "@babel/plugin-transform-literals" "^7.25.2" + "@babel/plugin-transform-logical-assignment-operators" "^7.24.7" + "@babel/plugin-transform-member-expression-literals" "^7.24.7" + "@babel/plugin-transform-modules-amd" "^7.24.7" + "@babel/plugin-transform-modules-commonjs" "^7.24.8" + "@babel/plugin-transform-modules-systemjs" "^7.25.0" + "@babel/plugin-transform-modules-umd" "^7.24.7" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.24.7" + "@babel/plugin-transform-new-target" "^7.24.7" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.24.7" + "@babel/plugin-transform-numeric-separator" "^7.24.7" + "@babel/plugin-transform-object-rest-spread" "^7.24.7" + "@babel/plugin-transform-object-super" "^7.24.7" + "@babel/plugin-transform-optional-catch-binding" "^7.24.7" + "@babel/plugin-transform-optional-chaining" "^7.24.8" + "@babel/plugin-transform-parameters" "^7.24.7" + "@babel/plugin-transform-private-methods" "^7.24.7" + "@babel/plugin-transform-private-property-in-object" "^7.24.7" + "@babel/plugin-transform-property-literals" "^7.24.7" + "@babel/plugin-transform-regenerator" "^7.24.7" + "@babel/plugin-transform-reserved-words" "^7.24.7" + "@babel/plugin-transform-shorthand-properties" "^7.24.7" + "@babel/plugin-transform-spread" "^7.24.7" + "@babel/plugin-transform-sticky-regex" "^7.24.7" + "@babel/plugin-transform-template-literals" "^7.24.7" + "@babel/plugin-transform-typeof-symbol" "^7.24.8" + "@babel/plugin-transform-unicode-escapes" "^7.24.7" + "@babel/plugin-transform-unicode-property-regex" "^7.24.7" + "@babel/plugin-transform-unicode-regex" "^7.24.7" + "@babel/plugin-transform-unicode-sets-regex" "^7.24.7" + "@babel/preset-modules" "0.1.6-no-external-plugins" + babel-plugin-polyfill-corejs2 "^0.4.10" + babel-plugin-polyfill-corejs3 "^0.10.4" + babel-plugin-polyfill-regenerator "^0.6.1" + core-js-compat "^3.37.1" + semver "^6.3.1" + "@babel/preset-flow@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.18.6.tgz#83f7602ba566e72a9918beefafef8ef16d2810cb" @@ -1120,6 +1798,15 @@ "@babel/helper-validator-option" "^7.18.6" "@babel/plugin-transform-flow-strip-types" "^7.18.6" +"@babel/preset-modules@0.1.6-no-external-plugins": + version "0.1.6-no-external-plugins" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" + integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + "@babel/preset-modules@^0.1.5": version "0.1.5" resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9" @@ -1143,6 +1830,18 @@ "@babel/plugin-transform-react-jsx-development" "^7.18.6" "@babel/plugin-transform-react-pure-annotations" "^7.18.6" +"@babel/preset-react@^7.24.1": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.24.7.tgz#480aeb389b2a798880bf1f889199e3641cbb22dc" + integrity sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-validator-option" "^7.24.7" + "@babel/plugin-transform-react-display-name" "^7.24.7" + "@babel/plugin-transform-react-jsx" "^7.24.7" + "@babel/plugin-transform-react-jsx-development" "^7.24.7" + "@babel/plugin-transform-react-pure-annotations" "^7.24.7" + "@babel/preset-typescript@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz#ce64be3e63eddc44240c6358daefac17b3186399" @@ -1152,6 +1851,11 @@ "@babel/helper-validator-option" "^7.18.6" "@babel/plugin-transform-typescript" "^7.18.6" +"@babel/regjsgen@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" + integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== + "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.0.tgz#824a9ef325ffde6f78056059db3168c08785e24a" @@ -1159,7 +1863,7 @@ dependencies: regenerator-runtime "^0.13.10" -"@babel/template@^7.10.4", "@babel/template@^7.16.7", "@babel/template@^7.18.10": +"@babel/template@^7.10.4", "@babel/template@^7.18.10": version "7.18.10" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71" integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA== @@ -1168,7 +1872,16 @@ "@babel/parser" "^7.18.10" "@babel/types" "^7.18.10" -"@babel/traverse@^7.10.5", "@babel/traverse@^7.18.2", "@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.19.6", "@babel/traverse@^7.20.0": +"@babel/template@^7.24.7", "@babel/template@^7.25.0": + version "7.25.0" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.0.tgz#e733dc3134b4fede528c15bc95e89cb98c52592a" + integrity sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q== + dependencies: + "@babel/code-frame" "^7.24.7" + "@babel/parser" "^7.25.0" + "@babel/types" "^7.25.0" + +"@babel/traverse@^7.10.5", "@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.19.6", "@babel/traverse@^7.20.0": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.0.tgz#538c4c6ce6255f5666eba02252a7b59fc2d5ed98" integrity sha512-5+cAXQNARgjRUK0JWu2UBwja4JLSO/rBMPJzpsKb+oBF5xlUuCfljQepS4XypBQoiigL0VQjTZy6WiONtUdScQ== @@ -1184,7 +1897,20 @@ debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.10.5", "@babel/types@^7.17.12", "@babel/types@^7.18.10", "@babel/types@^7.18.2", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.19.4", "@babel/types@^7.20.0", "@babel/types@^7.4.4": +"@babel/traverse@^7.24.7", "@babel/traverse@^7.24.8", "@babel/traverse@^7.25.0", "@babel/traverse@^7.25.1", "@babel/traverse@^7.25.2", "@babel/traverse@^7.25.3": + version "7.25.3" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.3.tgz#f1b901951c83eda2f3e29450ce92743783373490" + integrity sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ== + dependencies: + "@babel/code-frame" "^7.24.7" + "@babel/generator" "^7.25.0" + "@babel/parser" "^7.25.3" + "@babel/template" "^7.25.0" + "@babel/types" "^7.25.2" + debug "^4.3.1" + globals "^11.1.0" + +"@babel/types@^7.10.5", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.19.4", "@babel/types@^7.20.0", "@babel/types@^7.4.4": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.0.tgz#52c94cf8a7e24e89d2a194c25c35b17a64871479" integrity sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg== @@ -1193,6 +1919,15 @@ "@babel/helper-validator-identifier" "^7.19.1" to-fast-properties "^2.0.0" +"@babel/types@^7.24.7", "@babel/types@^7.24.8", "@babel/types@^7.25.0", "@babel/types@^7.25.2": + version "7.25.2" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.2.tgz#55fb231f7dc958cd69ea141a4c2997e819646125" + integrity sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q== + dependencies: + "@babel/helper-string-parser" "^7.24.8" + "@babel/helper-validator-identifier" "^7.24.7" + to-fast-properties "^2.0.0" + "@discoveryjs/json-ext@0.5.7", "@discoveryjs/json-ext@^0.5.0": version "0.5.7" resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" @@ -1275,6 +2010,15 @@ "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping" "^0.3.9" +"@jridgewell/gen-mapping@^0.3.5": + version "0.3.5" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" + integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== + dependencies: + "@jridgewell/set-array" "^1.2.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.24" + "@jridgewell/resolve-uri@3.1.0": version "3.1.0" resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" @@ -1290,6 +2034,11 @@ resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== +"@jridgewell/set-array@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" + integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== + "@jridgewell/source-map@^0.3.3": version "0.3.5" resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.5.tgz#a3bb4d5c6825aab0d281268f47f6ad5853431e91" @@ -1316,6 +2065,14 @@ "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" +"@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": + version "0.3.25" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" + integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + "@jridgewell/trace-mapping@^0.3.9": version "0.3.17" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" @@ -1374,10 +2131,10 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@patternfly/ast-helpers@^1.4.0-alpha.1": - version "1.4.0-alpha.1" - resolved "https://registry.yarnpkg.com/@patternfly/ast-helpers/-/ast-helpers-1.4.0-alpha.1.tgz#01bda3231563bd89b0bc3b9286e1256dd88c7dd0" - integrity sha512-F6opz7O0sdPGuE8Z/K5IuOuMiEdUDB8SyVD36pNkK+GiUD+4ey5YkJeZ3iey8vek5U86yApkImoEymNRcoRJ2g== +"@patternfly/ast-helpers@^1.4.0-alpha.63": + version "1.4.0-alpha.63" + resolved "https://registry.yarnpkg.com/@patternfly/ast-helpers/-/ast-helpers-1.4.0-alpha.63.tgz#2dd151cbfd2a3eb6da0e2029d69e5d60d2ee7f37" + integrity sha512-ZHxl+EN8D8Ds0umq2LQIlCR0fUvaMjZYm8mDeJ9MPzXnQW1M1lAuWjXaq8a7k2auNijRyaw5x8IxgXO/u51ptQ== dependencies: acorn "^8.4.1" acorn-class-fields "^1.0.0" @@ -1385,23 +2142,19 @@ acorn-static-class-features "^1.0.0" astring "^1.7.5" -"@patternfly/documentation-framework@6.0.0-alpha.12": - version "6.0.0-alpha.12" - resolved "https://registry.yarnpkg.com/@patternfly/documentation-framework/-/documentation-framework-6.0.0-alpha.12.tgz#672b6d99b7d93823cd49e71fd101c3a02a49df3e" - integrity sha512-9K84mJK0kFs+0Xjnp3tuc5Gi6mtdjBDvLojvSrexLFsD3acKtZK48gnUPr2RMdeSC3d2y1DEEdObYxM7BEHHgA== +"@patternfly/documentation-framework@^6.0.0-alpha.66": + version "6.0.0-alpha.74" + resolved "https://registry.yarnpkg.com/@patternfly/documentation-framework/-/documentation-framework-6.0.0-alpha.74.tgz#62acaa5855bfb0180bb26c64cd6cc6ac46fc517f" + integrity sha512-55lcu3hFJo1NW9fUd6bTxv/kJ6WUKOQTkBQS695bf36Z2MSlI32b8eSsgGCEO1pL74NYUmxbiFHVXeF/3Hf6Nw== dependencies: - "@babel/core" "7.18.2" - "@babel/plugin-proposal-class-properties" "7.17.12" - "@babel/plugin-proposal-optional-chaining" "^7.18.9" - "@babel/plugin-proposal-private-methods" "7.17.12" - "@babel/plugin-proposal-private-property-in-object" "7.17.12" - "@babel/plugin-transform-react-jsx" "7.17.12" - "@babel/preset-env" "7.18.2" + "@babel/core" "^7.24.3" + "@babel/preset-env" "^7.24.3" + "@babel/preset-react" "^7.24.1" "@mdx-js/util" "1.6.16" - "@patternfly/ast-helpers" "^1.4.0-alpha.1" + "@patternfly/ast-helpers" "^1.4.0-alpha.63" "@reach/router" "npm:@gatsbyjs/reach-router@1.3.9" autoprefixer "9.8.6" - babel-loader "9.1.2" + babel-loader "^9.1.3" camelcase-css "2.0.1" chokidar "3.5.3" clean-webpack-plugin "4.0.0" @@ -1424,8 +2177,6 @@ mdast-util-to-hast "9.1.1" mdurl "1.0.1" mini-css-extract-plugin "2.7.5" - monaco-editor "0.34.1" - monaco-editor-webpack-plugin "7.0.1" null-loader "4.0.1" parse-entities "2.0.0" path-browserify "1.0.1" @@ -1435,7 +2186,6 @@ puppeteer "19.11.1" puppeteer-cluster "0.23.0" react-docgen "5.3.1" - react-monaco-editor "^0.51.0" react-ssr-prepass "1.5.0" remark-footnotes "1.0.0" remark-frontmatter "2.0.0" @@ -1448,7 +2198,7 @@ style-to-object "0.3.0" to-vfile "6.1.0" typedoc "0.23.0" - typescript "4.3.5" + typescript "4.7.4" unified "9.1.0" unist-util-remove "2.0.0" unist-util-visit "2.0.3" @@ -1474,61 +2224,73 @@ puppeteer-cluster "^0.23.0" xmldoc "^1.1.2" -"@patternfly/patternfly@6.0.0-alpha.91": - version "6.0.0-alpha.91" - resolved "https://registry.yarnpkg.com/@patternfly/patternfly/-/patternfly-6.0.0-alpha.91.tgz#ec4ea221abc40f11d1a86b3be4f6fd62eec71935" - integrity sha512-9VMMZfLZAWrVBBFWN+8uFd/X06wGCRxUj/Fm/ATWDaNK9qMFVmUb9tJmU3HteK5mlTOV8mzGPAxVBabsJmvdsw== +"@patternfly/patternfly@6.0.0-alpha.205": + version "6.0.0-alpha.205" + resolved "https://registry.yarnpkg.com/@patternfly/patternfly/-/patternfly-6.0.0-alpha.205.tgz#9974f712ee69b28ec6851c6240e52c2d99969f9c" + integrity sha512-rzatApP3YpiYOHamDm+RhQpnep2AAhVodVRr3lyg6X5naiSSbPXXGWm7ShhUfftzwW4G1le1Uy0ZlM05rtQHWg== -"@patternfly/react-code-editor@6.0.0-alpha.36": - version "6.0.0-alpha.36" - resolved "https://registry.yarnpkg.com/@patternfly/react-code-editor/-/react-code-editor-6.0.0-alpha.36.tgz#d4ff1c14d2090986e8176876ea9b52ce4d1a8e1a" - integrity sha512-QgLPQ778zvN2x+aJOcmaSvmrXlEeC7xsnAwQP8iChAsCv5hoHAcWNS+WTPzbop32A5GVu6e5PgXE2QhH5du/1g== +"@patternfly/react-code-editor@6.0.0-alpha.94": + version "6.0.0-alpha.94" + resolved "https://registry.yarnpkg.com/@patternfly/react-code-editor/-/react-code-editor-6.0.0-alpha.94.tgz#a462ab4194f1434aa291dc2d32c802cd06cac29e" + integrity sha512-df0re3F6nscVDbq8gQF9+7pxJSQzMDfPHfmuz6lHi6oQbsyvOXn2YTgv8nMQXFtyt2XmrK5nf3Zfj4ctCv6ZeA== dependencies: "@monaco-editor/react" "^4.6.0" - "@patternfly/react-core" "^6.0.0-alpha.36" - "@patternfly/react-icons" "^6.0.0-alpha.14" - "@patternfly/react-styles" "^6.0.0-alpha.14" + "@patternfly/react-core" "^6.0.0-alpha.94" + "@patternfly/react-icons" "^6.0.0-alpha.34" + "@patternfly/react-styles" "^6.0.0-alpha.33" react-dropzone "14.2.3" - tslib "^2.5.0" + tslib "^2.6.2" -"@patternfly/react-core@^6.0.0-alpha.36": - version "6.0.0-alpha.36" - resolved "https://registry.yarnpkg.com/@patternfly/react-core/-/react-core-6.0.0-alpha.36.tgz#3bd7fdf4e63270046f9a6ef33c8ac93d75e36a3d" - integrity sha512-kyyyEYRgRPGQfMPklGopg5gnta/+WDV6KtZg/t+vf0ElcK9S+FZhz0GpEooMjzRG1Zm83PORSk8CISAFynzOpA== +"@patternfly/react-core@6.0.0-alpha.94": + version "6.0.0-alpha.94" + resolved "https://registry.yarnpkg.com/@patternfly/react-core/-/react-core-6.0.0-alpha.94.tgz#60f8811ca5ac084ae6aff87d5fe0c6e47135a7b9" + integrity sha512-E2/ulZKhMB8QHUXbonnm5Mqtbw7TW2AyfsMHHeV4RW0nn7HccZ6G+YEjo7i4ThTCdmBqU26e57tS0VUHVmYdww== dependencies: - "@patternfly/react-icons" "^6.0.0-alpha.14" - "@patternfly/react-styles" "^6.0.0-alpha.14" - "@patternfly/react-tokens" "^6.0.0-alpha.14" - focus-trap "7.5.2" + "@patternfly/react-icons" "^6.0.0-alpha.34" + "@patternfly/react-styles" "^6.0.0-alpha.33" + "@patternfly/react-tokens" "^6.0.0-alpha.33" + focus-trap "7.5.4" react-dropzone "^14.2.3" - tslib "^2.5.0" - -"@patternfly/react-icons@^6.0.0-alpha.14": - version "6.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@patternfly/react-icons/-/react-icons-6.0.0-alpha.14.tgz#fcf64b91ac4f1aac0f5aa4ce23e4fb098c4949d7" - integrity sha512-euBay6CYr2NZwnbEKeLDz8pu5Xn8yt0v9Bak/N65Vxa3Y5mYgg6HJ99+D07Pqbt5H9WnHQp5FeG7YeFrBGAj5A== - -"@patternfly/react-styles@^6.0.0-alpha.14": - version "6.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@patternfly/react-styles/-/react-styles-6.0.0-alpha.14.tgz#ab82e63b211fe0610b76fac29af6fb49bdf94ff5" - integrity sha512-TtZHBtjyhNn03igrru8YYU++tRxjgOMn5z8dv7Q5DKu9OaUnLz+3xLDy+Dz5LgI2u0QIKrjv6YIEWPp9BA2/mA== - -"@patternfly/react-table@6.0.0-alpha.36": - version "6.0.0-alpha.36" - resolved "https://registry.yarnpkg.com/@patternfly/react-table/-/react-table-6.0.0-alpha.36.tgz#375f1b662df2f3bcf29c57131cb9b79c8c8e0200" - integrity sha512-CDW7hf0MTNspvPWKzn0XVbdjo6sS1E+AEusK67J0z0vQovqz9ccC9EyBhlUa7LHn9pl6nBwRnpCJZlKVxx9Zgg== - dependencies: - "@patternfly/react-core" "^6.0.0-alpha.36" - "@patternfly/react-icons" "^6.0.0-alpha.14" - "@patternfly/react-styles" "^6.0.0-alpha.14" - "@patternfly/react-tokens" "^6.0.0-alpha.14" - lodash "^4.17.19" - tslib "^2.5.0" + tslib "^2.6.2" -"@patternfly/react-tokens@^6.0.0-alpha.14": - version "6.0.0-alpha.14" - resolved "https://registry.yarnpkg.com/@patternfly/react-tokens/-/react-tokens-6.0.0-alpha.14.tgz#af1ea4acfbc08cf53210b8720bb93b3d417992ef" - integrity sha512-U91zQ50NBYa/74edzjrAM/lQMKmZtIJhiUJiV6lYsyA0xbdG1MnhPckoT7zkEHBa9HMlbJX9i+d2+ovs9dp5gA== +"@patternfly/react-core@^6.0.0-alpha.94": + version "6.0.0-alpha.96" + resolved "https://registry.yarnpkg.com/@patternfly/react-core/-/react-core-6.0.0-alpha.96.tgz#85600ad1608740d96236e59ce3c077a0c92485b7" + integrity sha512-01c0bZrkRjRZ/rAXkPh4ymR9FZSuXJiJT+hngF5tThwJJK5yAgtTb2FevJRghXGYu4wojnA0k7cdRaf3fjUJZg== + dependencies: + "@patternfly/react-icons" "^6.0.0-alpha.35" + "@patternfly/react-styles" "^6.0.0-alpha.34" + "@patternfly/react-tokens" "^6.0.0-alpha.34" + focus-trap "7.5.4" + react-dropzone "^14.2.3" + tslib "^2.6.2" + +"@patternfly/react-icons@^6.0.0-alpha.34", "@patternfly/react-icons@^6.0.0-alpha.35": + version "6.0.0-alpha.35" + resolved "https://registry.yarnpkg.com/@patternfly/react-icons/-/react-icons-6.0.0-alpha.35.tgz#03caf5362d6f08cb4dd18e618aaeaa44212af478" + integrity sha512-3gdFXGME/BVUW647W6wt3w+P95/l5zrK/EtLQ59Gx11faOlClwGniqloxRC5Cv+yo8kPpIFezjiZiia4vGGO7w== + +"@patternfly/react-styles@^6.0.0-alpha.33", "@patternfly/react-styles@^6.0.0-alpha.34": + version "6.0.0-alpha.34" + resolved "https://registry.yarnpkg.com/@patternfly/react-styles/-/react-styles-6.0.0-alpha.34.tgz#b3125f97670e746a79f69e22e26363851ae45eb6" + integrity sha512-mJSpYrgI/Sgu+gwSv5h8ZP+prvzNUbfEkWP+LV6hZuw70N0UnarJacTsMD0zouCWUwIVt1NOJfawLOVmzAsxbA== + +"@patternfly/react-table@6.0.0-alpha.95": + version "6.0.0-alpha.95" + resolved "https://registry.yarnpkg.com/@patternfly/react-table/-/react-table-6.0.0-alpha.95.tgz#f49568c69aafb89adb1e0fb6513e7eceebceb29d" + integrity sha512-fVq4iNojcrB4G212LNeLfCwYXWTotLPbD60+s85HkIsuaFLHM2mEToAebUm1RpYgVjO1mFq95wt/8WvSmVPzgQ== + dependencies: + "@patternfly/react-core" "^6.0.0-alpha.94" + "@patternfly/react-icons" "^6.0.0-alpha.34" + "@patternfly/react-styles" "^6.0.0-alpha.33" + "@patternfly/react-tokens" "^6.0.0-alpha.33" + lodash "^4.17.21" + tslib "^2.6.3" + +"@patternfly/react-tokens@^6.0.0-alpha.33", "@patternfly/react-tokens@^6.0.0-alpha.34": + version "6.0.0-alpha.34" + resolved "https://registry.yarnpkg.com/@patternfly/react-tokens/-/react-tokens-6.0.0-alpha.34.tgz#63e4df39f8fb3fc0a753c6b1ee9ba81109d6670c" + integrity sha512-h+FhZOrHd31nmoEyzbiWUg7vdUqR9JSUHU0cu8xWyw6ebk3G5U17kKC2yVVK/Y7MU9K9bZ4Qyjypmvezxj3W1Q== "@pkgjs/parseargs@^0.11.0": version "0.11.0" @@ -2473,15 +3235,15 @@ b4a@^1.6.4: resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.6.tgz#a4cc349a3851987c3c4ac2d7785c18744f6da9ba" integrity sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg== -babel-loader@9.1.2: - version "9.1.2" - resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.2.tgz#a16a080de52d08854ee14570469905a5fc00d39c" - integrity sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA== +babel-loader@^9.1.3: + version "9.1.3" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.3.tgz#3d0e01b4e69760cc694ee306fe16d358aa1c6f9a" + integrity sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw== dependencies: - find-cache-dir "^3.3.2" + find-cache-dir "^4.0.0" schema-utils "^4.0.0" -babel-plugin-polyfill-corejs2@^0.3.0, babel-plugin-polyfill-corejs2@^0.3.3: +babel-plugin-polyfill-corejs2@^0.3.3: version "0.3.3" resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz#5d1bd3836d0a19e1b84bbf2d9640ccb6f951c122" integrity sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q== @@ -2490,13 +3252,22 @@ babel-plugin-polyfill-corejs2@^0.3.0, babel-plugin-polyfill-corejs2@^0.3.3: "@babel/helper-define-polyfill-provider" "^0.3.3" semver "^6.1.1" -babel-plugin-polyfill-corejs3@^0.5.0: - version "0.5.3" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.3.tgz#d7e09c9a899079d71a8b670c6181af56ec19c5c7" - integrity sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw== +babel-plugin-polyfill-corejs2@^0.4.10: + version "0.4.11" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz#30320dfe3ffe1a336c15afdcdafd6fd615b25e33" + integrity sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q== dependencies: - "@babel/helper-define-polyfill-provider" "^0.3.2" - core-js-compat "^3.21.0" + "@babel/compat-data" "^7.22.6" + "@babel/helper-define-polyfill-provider" "^0.6.2" + semver "^6.3.1" + +babel-plugin-polyfill-corejs3@^0.10.4: + version "0.10.6" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz#2deda57caef50f59c525aeb4964d3b2f867710c7" + integrity sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.6.2" + core-js-compat "^3.38.0" babel-plugin-polyfill-corejs3@^0.6.0: version "0.6.0" @@ -2506,13 +3277,6 @@ babel-plugin-polyfill-corejs3@^0.6.0: "@babel/helper-define-polyfill-provider" "^0.3.3" core-js-compat "^3.25.1" -babel-plugin-polyfill-regenerator@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz#2c0678ea47c75c8cc2fbb1852278d8fb68233990" - integrity sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.3.1" - babel-plugin-polyfill-regenerator@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz#390f91c38d90473592ed43351e801a9d3e0fd747" @@ -2520,6 +3284,13 @@ babel-plugin-polyfill-regenerator@^0.4.1: dependencies: "@babel/helper-define-polyfill-provider" "^0.3.3" +babel-plugin-polyfill-regenerator@^0.6.1: + version "0.6.2" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz#addc47e240edd1da1058ebda03021f382bba785e" + integrity sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.6.2" + bail@^1.0.0: version "1.0.5" resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776" @@ -2739,6 +3510,16 @@ browserslist@^4.21.10: node-releases "^2.0.14" update-browserslist-db "^1.0.13" +browserslist@^4.23.1, browserslist@^4.23.3: + version "4.23.3" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.3.tgz#debb029d3c93ebc97ffbc8d9cbb03403e227c800" + integrity sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA== + dependencies: + caniuse-lite "^1.0.30001646" + electron-to-chromium "^1.5.4" + node-releases "^2.0.18" + update-browserslist-db "^1.1.0" + buffer-alloc-unsafe@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" @@ -2891,6 +3672,11 @@ caniuse-lite@^1.0.30001587: resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001629.tgz#907a36f4669031bd8a1a8dbc2fa08b29e0db297e" integrity sha512-c3dl911slnQhmxUIT4HhYzT7wnBK/XYpGnYLOj4nJBaRiw52Ibe7YxlDaAeRECvA786zCuExhxIUJ2K7nHMrBw== +caniuse-lite@^1.0.30001646: + version "1.0.30001651" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001651.tgz#52de59529e8b02b1aedcaaf5c05d9e23c0c28138" + integrity sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg== + capital-case@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/capital-case/-/capital-case-1.0.4.tgz#9d130292353c9249f6b00fa5852bee38a717e669" @@ -3275,6 +4061,11 @@ commander@^9.4.1: resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30" integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ== +common-path-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-3.0.0.tgz#7d007a7e07c58c4b4d5f433131a19141b29f11e0" + integrity sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w== + commondir@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" @@ -3378,6 +4169,11 @@ convert-source-map@^1.7.0: resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + cookie-signature@1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" @@ -3412,13 +4208,20 @@ copy-webpack-plugin@11.0.0: schema-utils "^4.0.0" serialize-javascript "^6.0.0" -core-js-compat@^3.21.0, core-js-compat@^3.22.1, core-js-compat@^3.25.1: +core-js-compat@^3.25.1: version "3.26.0" resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.26.0.tgz#94e2cf8ba3e63800c4956ea298a6473bc9d62b44" integrity sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A== dependencies: browserslist "^4.21.4" +core-js-compat@^3.37.1, core-js-compat@^3.38.0: + version "3.38.0" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.38.0.tgz#d93393b1aa346b6ee683377b0c31172ccfe607aa" + integrity sha512-75LAicdLa4OJVwFxFbQR3NdnZjNgX6ILpVcVzcC4T2smerB5lELMrJQQQoWV6TiuC/vlaFqgU2tKQx9w5s0e0A== + dependencies: + browserslist "^4.23.3" + core-util-is@~1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" @@ -3596,6 +4399,13 @@ debug@^3.1.0, debug@^3.2.7: dependencies: ms "^2.1.1" +debug@^4.3.1: + version "4.3.6" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b" + integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg== + dependencies: + ms "2.1.2" + decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" @@ -3845,6 +4655,11 @@ electron-to-chromium@^1.4.668: resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.795.tgz#25d05961c529bc32435e5e4abdd8f9dabcbc9dc5" integrity sha512-hHo4lK/8wb4NUa+NJYSFyJ0xedNHiR6ylilDtb8NUW9d4dmBFmGiecYEKCEbti1wTNzbKXLfl4hPWEkAFbHYlw== +electron-to-chromium@^1.5.4: + version "1.5.5" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.5.tgz#03bfdf422bdd2c05ee2657efedde21264a1a566b" + integrity sha512-QR7/A7ZkMS8tZuoftC/jfqNkZLQO779SSW3YuZHP4eXpj3EffGLFcB/Xu9AAZQzLccTiCV+EmUo3ha4mQ9wnlA== + emoji-regex@^7.0.1: version "7.0.3" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" @@ -4000,6 +4815,11 @@ escalade@^3.1.1: resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== +escalade@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" + integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== + escape-html@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" @@ -4596,6 +5416,14 @@ find-cache-dir@^3.3.2: make-dir "^3.0.2" pkg-dir "^4.1.0" +find-cache-dir@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-4.0.0.tgz#a30ee0448f81a3990708f6453633c733e2f6eec2" + integrity sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg== + dependencies: + common-path-prefix "^3.0.0" + pkg-dir "^7.0.0" + find-file-up@^0.1.2: version "0.1.3" resolved "https://registry.yarnpkg.com/find-file-up/-/find-file-up-0.1.3.tgz#cf68091bcf9f300a40da411b37da5cce5a2fbea0" @@ -4634,6 +5462,14 @@ find-up@^5.0.0: locate-path "^6.0.0" path-exists "^4.0.0" +find-up@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-6.3.0.tgz#2abab3d3280b2dc7ac10199ef324c4e002c8c790" + integrity sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw== + dependencies: + locate-path "^7.1.0" + path-exists "^5.0.0" + flat-cache@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" @@ -4660,10 +5496,10 @@ flush-write-stream@^1.0.0: inherits "^2.0.3" readable-stream "^2.3.6" -focus-trap@7.5.2: - version "7.5.2" - resolved "https://registry.yarnpkg.com/focus-trap/-/focus-trap-7.5.2.tgz#e5ee678d10a18651f2591ffb66c949fb098d57cf" - integrity sha512-p6vGNNWLDGwJCiEjkSK6oERj/hEyI9ITsSwIUICBoKLlWiTWXJRfQibCwcoi50rTZdbi87qDtUlMCmQwsGSgPw== +focus-trap@7.5.4: + version "7.5.4" + resolved "https://registry.yarnpkg.com/focus-trap/-/focus-trap-7.5.4.tgz#6c4e342fe1dae6add9c2aa332a6e7a0bbd495ba2" + integrity sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w== dependencies: tabbable "^6.2.0" @@ -5917,7 +6753,7 @@ json5@^2.1.2, json5@^2.2.1: resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== -json5@^2.2.2: +json5@^2.2.2, json5@^2.2.3: version "2.2.3" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== @@ -6032,15 +6868,6 @@ loader-utils@^2.0.0: emojis-list "^3.0.0" json5 "^2.1.2" -loader-utils@^2.0.2: - version "2.0.4" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" - integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^2.1.2" - loader-utils@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.2.1.tgz#4fb104b599daafd82ef3e1a41fb9265f87e1f576" @@ -6068,6 +6895,13 @@ locate-path@^6.0.0: dependencies: p-locate "^5.0.0" +locate-path@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.2.0.tgz#69cb1779bd90b35ab1e771e1f2f89a202c2a8a8a" + integrity sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA== + dependencies: + p-locate "^6.0.0" + lodash.debounce@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" @@ -6122,6 +6956,13 @@ lru-cache@^4.0.1, lru-cache@^4.1.1: pseudomap "^1.0.2" yallist "^2.1.2" +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + lru-cache@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" @@ -6438,18 +7279,6 @@ mkdirp@^0.5.1: dependencies: minimist "^1.2.6" -monaco-editor-webpack-plugin@7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/monaco-editor-webpack-plugin/-/monaco-editor-webpack-plugin-7.0.1.tgz#ba19c60aba990184e36ad8722b1ed6a564527c7c" - integrity sha512-M8qIqizltrPlIbrb73cZdTWfU9sIsUVFvAZkL3KGjAHmVWEJ0hZKa/uad14JuOckc0GwnCaoGHvMoYtJjVyCzw== - dependencies: - loader-utils "^2.0.2" - -monaco-editor@0.34.1: - version "0.34.1" - resolved "https://registry.yarnpkg.com/monaco-editor/-/monaco-editor-0.34.1.tgz#1b75c4ad6bc4c1f9da656d740d98e0b850a22f87" - integrity sha512-FKc80TyiMaruhJKKPz5SpJPIjL+dflGvz4CpuThaPMc94AyN7SeC9HQ8hrvaxX7EyHdJcUY5i4D0gNyJj1vSZQ== - move-concurrently@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" @@ -6578,6 +7407,11 @@ node-releases@^2.0.14: resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== +node-releases@^2.0.18: + version "2.0.18" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" + integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== + node-releases@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" @@ -6833,6 +7667,13 @@ p-limit@^3.0.2: dependencies: yocto-queue "^0.1.0" +p-limit@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" + integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== + dependencies: + yocto-queue "^1.0.0" + p-locate@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" @@ -6854,6 +7695,13 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" +p-locate@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-6.0.0.tgz#3da9a49d4934b901089dca3302fa65dc5a05c04f" + integrity sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw== + dependencies: + p-limit "^4.0.0" + p-map@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" @@ -7045,6 +7893,11 @@ path-exists@^4.0.0: resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== +path-exists@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-5.0.0.tgz#a6aad9489200b21fab31e49cf09277e5116fb9e7" + integrity sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ== + path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" @@ -7108,6 +7961,11 @@ picocolors@^1.0.0: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== +picocolors@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1" + integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== + picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" @@ -7147,6 +8005,13 @@ pkg-dir@4.2.0, pkg-dir@^4.1.0, pkg-dir@^4.2.0: dependencies: find-up "^4.0.0" +pkg-dir@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-7.0.0.tgz#8f0c08d6df4476756c5ff29b3282d0bab7517d11" + integrity sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA== + dependencies: + find-up "^6.3.0" + postcss-loader@7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-7.1.0.tgz#3ba0dfddff06043f3eac7690a1d8b432264bb866" @@ -7665,6 +8530,13 @@ regenerator-transform@^0.15.0: dependencies: "@babel/runtime" "^7.8.4" +regenerator-transform@^0.15.2: + version "0.15.2" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4" + integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== + dependencies: + "@babel/runtime" "^7.8.4" + regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3: version "1.4.3" resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" @@ -7691,6 +8563,18 @@ regexpu-core@^5.1.0: unicode-match-property-ecmascript "^2.0.0" unicode-match-property-value-ecmascript "^2.0.0" +regexpu-core@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" + integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== + dependencies: + "@babel/regjsgen" "^0.8.0" + regenerate "^1.4.2" + regenerate-unicode-properties "^10.1.0" + regjsparser "^0.9.1" + unicode-match-property-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.1.0" + registry-auth-token@3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" @@ -8111,6 +8995,11 @@ semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== +semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + semver@^7.0.0, semver@^7.3.5, semver@^7.3.7: version "7.3.8" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" @@ -8556,7 +9445,7 @@ streamx@^2.13.0, streamx@^2.15.0: optionalDependencies: bare-events "^2.2.0" -"string-width-cjs@npm:string-width@^4.2.0": +"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -8582,15 +9471,6 @@ string-width@^3.0.0, string-width@^3.1.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" -string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - string-width@^5.0.1, string-width@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" @@ -8655,7 +9535,7 @@ stringify-entities@^3.0.0, stringify-entities@^3.0.1: character-entities-legacy "^1.0.0" xtend "^4.0.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1": +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -8676,13 +9556,6 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - strip-ansi@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2" @@ -9028,11 +9901,16 @@ tslib@^2.0.1, tslib@^2.0.3: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== -tslib@^2.4.0, tslib@^2.5.0: +tslib@^2.4.0: version "2.6.2" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== +tslib@^2.6.2, tslib@^2.6.3: + version "2.6.3" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.3.tgz#0438f810ad7a9edcde7a241c3d80db693c8cbfe0" + integrity sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ== + tsutils@^3.21.0: version "3.21.0" resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" @@ -9087,10 +9965,10 @@ typedoc@0.23.0: minimatch "^5.1.0" shiki "^0.10.1" -typescript@4.3.5: - version "4.3.5" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4" - integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA== +typescript@4.7.4: + version "4.7.4" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.4.tgz#1a88596d1cf47d59507a1bcdfb5b9dfe4d488235" + integrity sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ== typescript@^4.7.4: version "4.8.4" @@ -9151,6 +10029,11 @@ unicode-match-property-value-ecmascript@^2.0.0: resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714" integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw== +unicode-match-property-value-ecmascript@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== + unicode-property-aliases-ecmascript@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" @@ -9345,6 +10228,14 @@ update-browserslist-db@^1.0.9: escalade "^3.1.1" picocolors "^1.0.0" +update-browserslist-db@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz#7ca61c0d8650766090728046e416a8cde682859e" + integrity sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ== + dependencies: + escalade "^3.1.2" + picocolors "^1.0.1" + update-check@1.5.4: version "1.5.4" resolved "https://registry.yarnpkg.com/update-check/-/update-check-1.5.4.tgz#5b508e259558f1ad7dbc8b4b0457d4c9d28c8743" @@ -9820,7 +10711,7 @@ wordwrap@^1.0.0: resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -9838,15 +10729,6 @@ wrap-ansi@^5.1.0: string-width "^3.0.0" strip-ansi "^5.0.0" -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - wrap-ansi@^8.0.1: version "8.0.1" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.0.1.tgz#2101e861777fec527d0ea90c57c6b03aac56a5b3" @@ -9946,6 +10828,11 @@ yallist@^2.1.2: resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A== +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + yallist@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" @@ -10005,3 +10892,8 @@ yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +yocto-queue@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.1.1.tgz#fef65ce3ac9f8a32ceac5a634f74e17e5b232110" + integrity sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g== From 9935966d2497fec058a018f8614a20dc5e833f13 Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 9 Aug 2024 16:19:42 -0400 Subject: [PATCH 18/23] remove jumplinks, increase width at xl breakpoints --- .../patternfly-docs/content/tokensTable.css | 15 +++++---------- .../patternfly-docs/content/tokensTable.js | 16 ++-------------- 2 files changed, 7 insertions(+), 24 deletions(-) diff --git a/packages/module/patternfly-docs/content/tokensTable.css b/packages/module/patternfly-docs/content/tokensTable.css index ca21d31..2483705 100644 --- a/packages/module/patternfly-docs/content/tokensTable.css +++ b/packages/module/patternfly-docs/content/tokensTable.css @@ -7,14 +7,9 @@ box-shadow: var(--pf-t--global--box-shadow--sm); } -.tokens-toc-wrapper { - position: sticky; - z-index: var(--pf-t--global--z-index--sm); - top: 0; -} -.tokens-toc-wrapper .pf-v6-c-jump-links__main { - overflow-x: visible; -} -.tokens-toc-wrapper .pf-v6-c-jump-links__toggle { - padding-inline-start: var(--pf-t--global--spacer--md); +@media (min-width: 1200px) { + .tokens-table-outer-wrapper { + width: calc(92vw - var(--pf-v6-c-page__sidebar--Width)); + max-width: calc(92vw - var(--pf-v6-c-page__sidebar--Width)); + } } diff --git a/packages/module/patternfly-docs/content/tokensTable.js b/packages/module/patternfly-docs/content/tokensTable.js index 03d7a8a..c47822d 100644 --- a/packages/module/patternfly-docs/content/tokensTable.js +++ b/packages/module/patternfly-docs/content/tokensTable.js @@ -1,5 +1,5 @@ import React from 'react'; -import { Flex, FlexItem, Grid, GridItem, JumpLinks, JumpLinksItem, Title, capitalize } from '@patternfly/react-core'; +import { Flex, FlexItem, Grid, GridItem, Title, capitalize } from '@patternfly/react-core'; import { Table, Thead, @@ -12,7 +12,6 @@ import { InnerScrollContainer } from '@patternfly/react-table'; import { TokensToolbar } from './tokensToolbar'; -import { TableOfContents } from '@patternfly/documentation-framework/components/tableOfContents/tableOfContents'; import './tokensTable.css'; // eslint-disable-next-line camelcase @@ -105,27 +104,16 @@ export const TokensTable = ({ tokenJson, formatThemeText = capitalize }) => { const otherExpandedTokens = prevExpanded.filter((n) => n !== tokenName); return isExpanding ? [...otherExpandedTokens, tokenName] : otherExpandedTokens; }); - const tocItems = Object.keys(allTokens).reduce((acc, cur) => { - console.log({ acc, cur }); - acc.push({ - id: `${cur}-table`, - text: `${formatThemeText(cur)} tokens` - }); - return acc; - }, []); return ( - - - - + { // Create new Table for each tokens layer [base, chart, palette, semantic] From b2d0f8341222a512643da69dfd884ffd8a27eb50 Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 9 Aug 2024 16:20:10 -0400 Subject: [PATCH 19/23] Discard changes to packages/module/build/css/tokens-charts-dark.scss --- packages/module/build/css/tokens-charts-dark.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/module/build/css/tokens-charts-dark.scss b/packages/module/build/css/tokens-charts-dark.scss index 95bd13a..b0c3f4b 100644 --- a/packages/module/build/css/tokens-charts-dark.scss +++ b/packages/module/build/css/tokens-charts-dark.scss @@ -1,8 +1,8 @@ // Do not edit directly -// Generated on Mon, 08 Jul 2024 13:59:54 GMT +// Generated on Tue, 02 Jul 2024 18:11:52 GMT -:root { +@mixin pf-v6-tokens { --pf-t--chart--global--BorderWidth--lg: 8; --pf-t--chart--global--BorderWidth--sm: 2; --pf-t--chart--global--BorderWidth--xs: 1; From 2beb3c4c9454ca1f009f55d4e6b8f58407196efb Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 9 Aug 2024 16:20:15 -0400 Subject: [PATCH 20/23] Discard changes to packages/module/build/css/tokens-charts.scss --- packages/module/build/css/tokens-charts.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/module/build/css/tokens-charts.scss b/packages/module/build/css/tokens-charts.scss index feecd5d..f6f1e29 100644 --- a/packages/module/build/css/tokens-charts.scss +++ b/packages/module/build/css/tokens-charts.scss @@ -1,8 +1,8 @@ // Do not edit directly -// Generated on Mon, 08 Jul 2024 13:59:54 GMT +// Generated on Tue, 02 Jul 2024 18:11:52 GMT -:root { +@mixin pf-v6-tokens { --pf-t--chart--global--BorderWidth--lg: 8; --pf-t--chart--global--BorderWidth--sm: 2; --pf-t--chart--global--BorderWidth--xs: 1; From 3b3f622630c6fe4011fe907d98b6fda0e5e066bc Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 9 Aug 2024 16:20:18 -0400 Subject: [PATCH 21/23] Discard changes to packages/module/build/css/tokens-dark.scss --- packages/module/build/css/tokens-dark.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/module/build/css/tokens-dark.scss b/packages/module/build/css/tokens-dark.scss index f950ba3..ae5918d 100644 --- a/packages/module/build/css/tokens-dark.scss +++ b/packages/module/build/css/tokens-dark.scss @@ -1,8 +1,8 @@ // Do not edit directly -// Generated on Mon, 08 Jul 2024 13:59:54 GMT +// Generated on Tue, 02 Jul 2024 18:11:52 GMT -:root { +@mixin pf-v6-tokens { --pf-t--global--background--color--action--plain--default: rgba(0, 0, 0, 0.0000); --pf-t--global--dark--background--color--500: rgba(21, 21, 21, 0.8000); --pf-t--global--dark--background--color--600: rgba(199, 199, 199, 0.1500); From 8e46302dc38f8fbf87eafdaa393a60ddd2219fa0 Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 9 Aug 2024 16:20:20 -0400 Subject: [PATCH 22/23] Discard changes to packages/module/build/css/tokens-default.scss --- packages/module/build/css/tokens-default.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/module/build/css/tokens-default.scss b/packages/module/build/css/tokens-default.scss index 897d2e9..40340e0 100644 --- a/packages/module/build/css/tokens-default.scss +++ b/packages/module/build/css/tokens-default.scss @@ -1,8 +1,8 @@ // Do not edit directly -// Generated on Mon, 08 Jul 2024 13:59:54 GMT +// Generated on Tue, 02 Jul 2024 18:11:52 GMT -:root { +@mixin pf-v6-tokens { --pf-t--global--background--color--500: rgba(21, 21, 21, 0.2000); --pf-t--global--background--color--600: rgba(199, 199, 199, 0.2500); --pf-t--global--background--color--action--plain--default: rgba(255, 255, 255, 0.0000); From f99a914b74fd0c4369ce928542eeca9a2cfd9db3 Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 9 Aug 2024 16:20:23 -0400 Subject: [PATCH 23/23] Discard changes to packages/module/build/css/tokens-palette.scss --- packages/module/build/css/tokens-palette.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/module/build/css/tokens-palette.scss b/packages/module/build/css/tokens-palette.scss index 1c9b808..1a96c99 100644 --- a/packages/module/build/css/tokens-palette.scss +++ b/packages/module/build/css/tokens-palette.scss @@ -1,8 +1,8 @@ // Do not edit directly -// Generated on Mon, 08 Jul 2024 13:59:54 GMT +// Generated on Tue, 02 Jul 2024 18:11:52 GMT -:root { +@mixin pf-v6-tokens { --pf-t--color--black: #000000; --pf-t--color--blue--10: #e0f0ff; --pf-t--color--blue--20: #b9dafc;